blob: a362c7ee3694293ec654c33824186b13218fe0b2 [file] [log] [blame]
package main
import "C"
import (
"crypto/rand"
"golang.org/x/crypto/nacl/box"
)
//export GoFn
func GoFn() {
box.GenerateKey(rand.Reader)
return
}
func main() {
}