Use default cost for bcrypt

This commit is contained in:
Nicolai Willems
2020-06-05 22:48:33 +02:00
parent 36673ae3f0
commit 076fd65dea

View File

@@ -10,7 +10,7 @@ import (
func main() { func main() {
password := os.Args[1] password := os.Args[1]
hash, err := bcrypt.GenerateFromPassword([]byte(password), 12) hash, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
if err != nil { if err != nil {
fmt.Println("Error generating hash: %s", err) fmt.Println("Error generating hash: %s", err)
} }