Home
last modified time | relevance | path

Searched refs:pbkdf2_hmac (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/
Dhashlib.py155 from _hashlib import pbkdf2_hmac
163 def pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None): function
/external/python/cpython3/Lib/
Dhashlib.py171 from _hashlib import pbkdf2_hmac
176 def pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None): function
/external/python/cpython2/Doc/library/
Dhashlib.rst165 .. function:: pbkdf2_hmac(name, password, salt, rounds, dklen=None)
183 >>> dk = hashlib.pbkdf2_hmac('sha256', b'password', b'salt', 100000)
191 A fast implementation of *pbkdf2_hmac* is available with OpenSSL. The
/external/python/cpython2/Modules/
D_hashopenssl.c665 pbkdf2_hmac(PyObject *self, PyObject *args, PyObject *kwdict) in pbkdf2_hmac() function
888 {"pbkdf2_hmac", (PyCFunction)pbkdf2_hmac, METH_VARARGS|METH_KEYWORDS,
/external/python/cpython3/Modules/
D_hashopenssl.c631 pbkdf2_hmac(PyObject *self, PyObject *args, PyObject *kwdict) in pbkdf2_hmac() function
1041 {"pbkdf2_hmac", (PyCFunction)pbkdf2_hmac, METH_VARARGS|METH_KEYWORDS,
/external/python/cpython2/Lib/test/
Dtest_hashlib.py454 out = hashlib.pbkdf2_hmac(
/external/python/cpython3/Lib/test/
Dtest_hashlib.py930 self._test_pbkdf2_hmac(py_hashlib.pbkdf2_hmac)
935 self._test_pbkdf2_hmac(c_hashlib.pbkdf2_hmac)
/external/python/cpython2/Misc/NEWS.d/
D2.7.8.rst164 Backport the key derivation function hashlib.pbkdf2_hmac from Python 3 per
/external/python/cpython3/Doc/library/
Dhashlib.rst229 .. function:: pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None)
248 >>> dk = hashlib.pbkdf2_hmac('sha256', b'password', b'salt', 100000)
256 A fast implementation of *pbkdf2_hmac* is available with OpenSSL. The
/external/python/cpython3/Doc/whatsnew/
D3.4.rst145 * A new :func:`hashlib.pbkdf2_hmac` function provides
903 A new :func:`hashlib.pbkdf2_hmac` function provides
D2.7.rst2618 * :func:`hashlib.pbkdf2_hmac` was backported from Python 3 to make a hashing
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2588 * :func:`hashlib.pbkdf2_hmac` was backported from Python 3 to make a hashing
/external/python/cpython3/Misc/
DHISTORY3750 - Issue #19254: Provide an optimized Python implementation of pbkdf2_hmac.
3793 - Issue #18582: Add 'pbkdf2_hmac' to the hashlib module. It implements PKCS#5