Lines Matching refs:salt
45 A Modular Crypt Format method with 16 character salt and 86 character
50 Another Modular Crypt Format method with 16 character salt and 43
55 Another Modular Crypt Format method with 22 character salt and 31
62 Another Modular Crypt Format method with 8 character salt and 22
67 The traditional method with a 2 character salt and 13 characters of
88 .. function:: crypt(word, salt=None)
91 interface. The optional *salt* is either a string as returned from
94 including salt, as returned by this function. If *salt* is not
102 *salt* (either a random 2 or 16 character string, possibly prefixed with
104 encryption algorithm. The characters in *salt* must be in the set
109 characters from the same alphabet as the salt.
114 different sizes in the *salt*, it is recommended to use the full crypted
115 password as salt when checking for a password.
118 Accept ``crypt.METHOD_*`` values in addition to strings for *salt*.
123 Return a randomly generated salt of the specified method. If no
127 The return value is a string suitable for passing as the *salt* argument