Searched refs:mksalt (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_crypt.py | 38 salt = crypt.mksalt(method) 49 cr = crypt.crypt('assword', crypt.mksalt(method)) 69 salt = crypt.mksalt(method, rounds=rounds) 83 salt = crypt.mksalt(crypt.METHOD_BLOWFISH, rounds=1 << log_rounds) 95 crypt.mksalt(method, rounds='4096') 97 crypt.mksalt(method, rounds=4096.0) 100 crypt.mksalt(method, rounds=rounds) 102 crypt.mksalt(crypt.METHOD_BLOWFISH, rounds=1000) 105 crypt.mksalt(method, rounds=4096)
|
/external/python/cpython3/Lib/ |
D | crypt.py | 32 def mksalt(method=None, *, rounds=None): function 81 salt = mksalt(salt) 91 salt = mksalt(method, rounds=rounds)
|
/external/python/cpython3/Doc/library/ |
D | crypt.rst | 92 :func:`mksalt`, one of the ``crypt.METHOD_*`` values (though not all 121 .. function:: mksalt(method=None, *, rounds=None)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a3.rst | 826 crypt.mksalt() now allows to specify the number of rounds for SHA-256 and
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1054 Addition of salt and modular crypt format (hashing method) and the :func:`~crypt.mksalt`
|
D | 3.7.rst | 853 The :func:`~crypt.mksalt` function now allows specifying the number of rounds
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4198 - Issue #18405: Improve the entropy of crypt.mksalt(). 6981 - Issue #10924: Fixed `crypt.mksalt()` to use a RNG that is suitable for
|