summaryrefslogtreecommitdiff
path: root/tests/libbuild.go
blob: 724d17a155d47984d7ff68e15a01ccc7322cadbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	"encoding/hex"
	"fmt"

	"scrypt"
)

func main() {
	fmt.Println(
		hex.EncodeToString(scrypt.Hash(scrypt.Salt(), scrypt.Salt())),
	)
}