Home
last modified time | relevance | path

Searched refs:mksalt (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_crypt.py21 salt = crypt.mksalt(method)
32 cr = crypt.crypt('assword', crypt.mksalt(method))
48 salt = crypt.mksalt(method, rounds=rounds)
61 salt = crypt.mksalt(crypt.METHOD_BLOWFISH, rounds=1 << log_rounds)
73 crypt.mksalt(method, rounds='4096')
75 crypt.mksalt(method, rounds=4096.0)
78 crypt.mksalt(method, rounds=rounds)
80 crypt.mksalt(crypt.METHOD_BLOWFISH, rounds=1000)
83 crypt.mksalt(method, rounds=4096)
/external/python/cpython3/Lib/
Dcrypt.py22 def mksalt(method=None, *, rounds=None): function
71 salt = mksalt(salt)
81 salt = mksalt(method, rounds=rounds)
/external/python/cpython3/Doc/library/
Dcrypt.rst90 :func:`mksalt`, one of the ``crypt.METHOD_*`` values (though not all
119 .. function:: mksalt(method=None, *, rounds=None)
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst833 crypt.mksalt() now allows to specify the number of rounds for SHA-256 and
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1054 Addition of salt and modular crypt format (hashing method) and the :func:`~crypt.mksalt`
D3.7.rst848 The :func:`~crypt.mksalt` function now allows specifying the number of rounds
/external/python/cpython3/Misc/
DHISTORY4198 - Issue #18405: Improve the entropy of crypt.mksalt().
6981 - Issue #10924: Fixed `crypt.mksalt()` to use a RNG that is suitable for