package main import ( "encoding/hex" "fmt" "scrypt" ) func main() { fmt.Println( hex.EncodeToString(scrypt.Hash(scrypt.Salt(), scrypt.Salt())), ) }