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) {

	github.com/jackc/pgx/v5/pgconn
		auth_scram.go#L314: 	sc.saltedPassword, err = pbkdf2.Key(sha256.New, sc.password, sc.salt, sc.iterations, 32)