ceremonyclient/bedlam/apps/garbled/examples/aesblock2.qcl

12 lines
128 B
Go

// -*- go -*-
package main
import (
"crypto/aes"
)
func main(key, data [16]byte) []byte {
return aes.Block128(key, data)
}