mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-22 02:47:26 +08:00
12 lines
133 B
Go
12 lines
133 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
import (
|
|
"crypto/aes"
|
|
)
|
|
|
|
func main(key, data [16]byte) []uint {
|
|
return aes.ExpandEncryptionKey(key)
|
|
}
|