Lines Matching refs:salt
43 A Modular Crypt Format method with 16 character salt and 86 character
48 Another Modular Crypt Format method with 16 character salt and 43
53 Another Modular Crypt Format method with 8 character salt and 22
58 The traditional method with a 2 character salt and 13 characters of
79 .. function:: crypt(word, salt=None)
82 interface. The optional *salt* is either a string as returned from
85 including salt, as returned by this function. If *salt* is not
93 *salt* (either a random 2 or 16 character string, possibly prefixed with
95 encryption algorithm. The characters in *salt* must be in the set
100 characters from the same alphabet as the salt.
105 different sizes in the *salt*, it is recommended to use the full crypted
106 password as salt when checking for a password.
109 Accept ``crypt.METHOD_*`` values in addition to strings for *salt*.
114 Return a randomly generated salt of the specified method. If no
121 passing as the *salt* argument to :func:`crypt`.