aboutsummaryrefslogtreecommitdiff
path: root/pbkdf.go
blob: afc86d18eb65eb36e73d1283283e9be5cd926ba1 (plain)
1
2
3
4
5
6
7
8
9
package main

import "hash"

// bcrypt_pbkdf

func Key(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte {
	return nil
}