func crypto/pbkdf2.Key

2 uses

	crypto/pbkdf2 (current package)
		pbkdf2.go#L40: func Key[Hash hash.Hash](h func() Hash, password string, salt []byte, iter, keyLength int) ([]byte, error) {

	golang.org/x/crypto/pbkdf2
		pbkdf2.go#L24: 	out, err := pbkdf2.Key(h, string(password), salt, iter, keyLen)