Searched refs:pbkdf2_hmac (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Lib/ |
D | hashlib.py | 155 from _hashlib import pbkdf2_hmac 163 def pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None): function
|
/external/python/cpython3/Lib/ |
D | hashlib.py | 171 from _hashlib import pbkdf2_hmac 176 def pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None): function
|
/external/python/cpython2/Doc/library/ |
D | hashlib.rst | 165 .. 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.c | 665 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.c | 631 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/ |
D | test_hashlib.py | 454 out = hashlib.pbkdf2_hmac(
|
/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 930 self._test_pbkdf2_hmac(py_hashlib.pbkdf2_hmac) 935 self._test_pbkdf2_hmac(c_hashlib.pbkdf2_hmac)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.8.rst | 164 Backport the key derivation function hashlib.pbkdf2_hmac from Python 3 per
|
/external/python/cpython3/Doc/library/ |
D | hashlib.rst | 229 .. 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/ |
D | 3.4.rst | 145 * A new :func:`hashlib.pbkdf2_hmac` function provides 903 A new :func:`hashlib.pbkdf2_hmac` function provides
|
D | 2.7.rst | 2618 * :func:`hashlib.pbkdf2_hmac` was backported from Python 3 to make a hashing
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 2588 * :func:`hashlib.pbkdf2_hmac` was backported from Python 3 to make a hashing
|
/external/python/cpython3/Misc/ |
D | HISTORY | 3750 - Issue #19254: Provide an optimized Python implementation of pbkdf2_hmac. 3793 - Issue #18582: Add 'pbkdf2_hmac' to the hashlib module. It implements PKCS#5
|