コード例 #1
0
 def pbkdf2(val, salt, iterations, dklen, func):
     return _pbkdf2(val, salt, iterations, dklen,
                    ("hmac-" + func).encode("utf-8"))
コード例 #2
0
ファイル: hash.py プロジェクト: Batur24/isso
 def pbkdf2(val, salt, iterations, dklen, func):
     return _pbkdf2(val, salt, iterations, dklen, ("hmac-" + func).encode("utf-8"))