Python hashlib.pbkdf2_hmac用法及代码示例

原文:Python hashlib.pbkdf2_hmac用法及代码示例 - 纯净天空

用法:

hashlib.pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None)

该函数提供PKCS#5基于密码的 key 推导函数2。它使用HMAC作为伪随机函数。

字符串 hash_name 是 HMAC 哈希摘要算法的所需名称,例如‘sha1’ 或 ‘sha256’。 password 和 salt 被解释为字节缓冲区。应用程序和库应将 password 限制为合理的长度(例如 1024)。 salt 应该是来自适当来源的大约 16 个或更多字节,例如os.urandom() 。

iterations的数量应根据哈希算法和计算能力来选择。截至 2022 年,建议使用数十万次 SHA-256 迭代。有关为什么以及如何选择最适合您的应用程序的理由,请阅读 Appendix A.2.2 of NIST-SP-800-132 。 stackexchange pbkdf2 iterations question上的答案详细解释。

dklen 是派生 key 的长度。如果dklen 是None,则使用散列算法hash_name 的摘要大小,例如SHA-512 为 64。

>>> from hashlib import pbkdf2_hmac
>>> our_app_iters = 500_000  # Application specific, read above.
>>> dk = pbkdf2_hmac('sha256', b'password', b'bad salt'*2, our_app_iters)
>>> dk.hex()
'15530bba69924174860db778f2c6f8104d3aaf9d26241840c8c4a641c8d000a9'

3.4 版中的新函数。

注意

OpenSSL 提供了pbkdf2_hmac 的快速实现。 Python 实现使用 hmac 的内联版本。它慢了大约三倍,并且不释放 GIL。

自 3.10 版起已弃用:缓慢的Python实现pbkdf2_hmac已弃用。将来,该函数将仅在使用 OpenSSL 编译 Python 时可用。

相关用法

  • Python hashlib.sha3_256()用法及代码示例
  • Python hashlib.sha3_512()用法及代码示例
  • Python hashlib.blake2s()用法及代码示例
  • Python hashlib.blake2b()用法及代码示例
  • Python hashlib.sha3_224()用法及代码示例
  • Python hashlib.shake_256()用法及代码示例
  • Python hashlib.shake_128()用法及代码示例
  • Python hashlib.sha3_384()用法及代码示例
  • Python hash()用法及代码示例
  • Python hasattr()用法及代码示例
  • Python statistics harmonic_mean()用法及代码示例
  • Python OpenCV haveImageReader()用法及代码示例
  • Python help()用法及代码示例
  • Python http.HTTPStatus用法及代码示例
  • Python html.escape()用法及代码示例
  • Python html.unescape()用法及代码示例
  • Python math hypot()用法及代码示例
  • Python hex()用法及代码示例
  • Python http.client.HTTPConnection.set_tunnel用法及代码示例
  • Python http.client.HTTPConnection用法及代码示例

你可能感兴趣的:(python,python,开发语言)