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 22 character salt and 31
60 Another Modular Crypt Format method with 8 character salt and 22
65 The traditional method with a 2 character salt and 13 characters of
86 .. function:: crypt(word, salt=None)
89 interface. The optional *salt* is either a string as returned from
92 including salt, as returned by this function. If *salt* is not
100 *salt* (either a random 2 or 16 character string, possibly prefixed with
102 encryption algorithm. The characters in *salt* must be in the set
107 characters from the same alphabet as the salt.
112 different sizes in the *salt*, it is recommended to use the full crypted
113 password as salt when checking for a password.
116 Accept ``crypt.METHOD_*`` values in addition to strings for *salt*.
121 Return a randomly generated salt of the specified method. If no
125 The return value is a string suitable for passing as the *salt* argument