Add linx-genkey

This commit is contained in:
andreimarcu 2015-10-11 21:39:42 -04:00
parent 2b0135697b
commit ae02f537f7
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
package main
import (
"bufio"
"encoding/base64"
"fmt"
"os"
"golang.org/x/crypto/scrypt"
)
const (
authPrefix = "Linx "
scryptSalt = "linx-server"
scryptN = 16384
scryptr = 8
scryptp = 1
scryptKeyLen = 32
)
func main() {
fmt.Printf("Enter key to hash: ")
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
checkKey, err := scrypt.Key([]byte(scanner.Text()), []byte(scryptSalt), scryptN, scryptr, scryptp, scryptKeyLen)
if err != nil {
return
}
fmt.Println(base64.StdEncoding.EncodeToString(checkKey))
}