HomeSort by relevance Sort by last modified time
    Searched refs:mksalt (Results 1 - 2 of 2) sorted by null

  /external/python/cpython3/Lib/test/
test_crypt.py 21 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/
crypt.py 22 def mksalt(method=None, *, rounds=None): function
67 returned by ``crypt.mksalt()``.
71 salt = mksalt(salt)
81 salt = mksalt(method, rounds=rounds)

Completed in 147 milliseconds