Fixed broken newlines
This commit is contained in:
parent
57128304c7
commit
0db0bb5094
5
main.go
5
main.go
|
@ -90,10 +90,7 @@ func hash(password, salt string) string {
|
||||||
|
|
||||||
derivedKey, _ := scrypt.Key(passwordBytes, saltBytes, 32768, 8, 1, 64)
|
derivedKey, _ := scrypt.Key(passwordBytes, saltBytes, 32768, 8, 1, 64)
|
||||||
|
|
||||||
hashString := fmt.Sprintf("scrypt:32768
|
hashString := fmt.Sprintf("scrypt:32768:8:1$%s$%s", salt, hex.EncodeToString(derivedKey))
|
||||||
|
|
||||||
|
|
||||||
:8:1$%s$%s", salt, hex.EncodeToString(derivedKey))
|
|
||||||
return hashString
|
return hashString
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue