File indexing completed on 2024-04-28 15:53:57

0001 # AUTO-GENERATED FILE -- DO NOT EDIT
0002 
0003 
0004 __package__ = None
0005 
0006 def crypt(word, salt):
0007   """ crypt(word, salt) -> string
0008   word will usually be a user's password. salt is a 2-character string
0009   which will be used to select one of 4096 variations of DES. The characters
0010   in salt must be either ".", "/", or an alphanumeric character. Returns
0011   the hashed password as a string, which will be composed of characters from
0012   the same alphabet as the salt. """
0013   return ""
0014