Explorar o código

bcrypt: Documentation

If you supply a cost < MinCost this package will use DefaultCost, not MinCost

R=golang-dev, jeff
CC=golang-dev
https://golang.org/cl/6354100
Peter Armitage %!s(int64=13) %!d(string=hai) anos
pai
achega
dd83c0b64f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      bcrypt/bcrypt.go

+ 1 - 1
bcrypt/bcrypt.go

@@ -83,7 +83,7 @@ type hashed struct {
 
 // GenerateFromPassword returns the bcrypt hash of the password at the given
 // cost. If the cost given is less than MinCost, the cost will be set to
-// MinCost, instead. Use CompareHashAndPassword, as defined in this package,
+// DefaultCost, instead. Use CompareHashAndPassword, as defined in this package,
 // to compare the returned hashed password with its cleartext version.
 func GenerateFromPassword(password []byte, cost int) ([]byte, error) {
 	p, err := newFromPassword(password, cost)