home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / GestionFichiers / metamorphose / metamorphose2_0.8.2_setup.exe / metamorphose2.exe / hashlib.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2011-01-12  |  4KB  |  129 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.6)
  3.  
  4. '''hashlib module - A common interface to many hash functions.
  5.  
  6. new(name, string=\'\') - returns a new hash object implementing the
  7.                        given hash function; initializing the hash
  8.                        using the given string data.
  9.  
  10. Named constructor functions are also available, these are much faster
  11. than using new():
  12.  
  13. md5(), sha1(), sha224(), sha256(), sha384(), and sha512()
  14.  
  15. More algorithms may be available on your platform but the above are
  16. guaranteed to exist.
  17.  
  18. NOTE: If you want the adler32 or crc32 hash functions they are available in
  19. the zlib module.
  20.  
  21. Choose your hash function wisely.  Some have known collision weaknesses.
  22. sha384 and sha512 will be slow on 32 bit platforms.
  23.  
  24. Hash objects have these methods:
  25.  - update(arg): Update the hash object with the string arg. Repeated calls
  26.                 are equivalent to a single call with the concatenation of all
  27.                 the arguments.
  28.  - digest():    Return the digest of the strings passed to the update() method
  29.                 so far. This may contain non-ASCII characters, including
  30.                 NUL bytes.
  31.  - hexdigest(): Like digest() except the digest is returned as a string of
  32.                 double length, containing only hexadecimal digits.
  33.  - copy():      Return a copy (clone) of the hash object. This can be used to
  34.                 efficiently compute the digests of strings that share a common
  35.                 initial substring.
  36.  
  37. For example, to obtain the digest of the string \'Nobody inspects the
  38. spammish repetition\':
  39.  
  40.     >>> import hashlib
  41.     >>> m = hashlib.md5()
  42.     >>> m.update("Nobody inspects")
  43.     >>> m.update(" the spammish repetition")
  44.     >>> m.digest()
  45.     \'\\xbbd\\x9c\\x83\\xdd\\x1e\\xa5\\xc9\\xd9\\xde\\xc9\\xa1\\x8d\\xf0\\xff\\xe9\'
  46.  
  47. More condensed:
  48.  
  49.     >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest()
  50.     \'a4337bc45a8fc544c03f52dc550cd6e1e87021bc896588bd79e901e2\'
  51.  
  52. '''
  53.  
  54. def __get_builtin_constructor(name):
  55.     if name in ('SHA1', 'sha1'):
  56.         import _sha as _sha
  57.         return _sha.new
  58.     if name in ('MD5', 'md5'):
  59.         import _md5 as _md5
  60.         return _md5.new
  61.     if name in ('SHA256', 'sha256', 'SHA224', 'sha224'):
  62.         import _sha256 as _sha256
  63.         bs = name[3:]
  64.         if bs == '256':
  65.             return _sha256.sha256
  66.         if bs == '224':
  67.             return _sha256.sha224
  68.     elif name in ('SHA512', 'sha512', 'SHA384', 'sha384'):
  69.         import _sha512 as _sha512
  70.         bs = name[3:]
  71.         if bs == '512':
  72.             return _sha512.sha512
  73.         if bs == '384':
  74.             return _sha512.sha384
  75.     
  76.     raise ValueError, 'unsupported hash type'
  77.  
  78.  
  79. def __py_new(name, string = ''):
  80.     return __get_builtin_constructor(name)(string)
  81.  
  82.  
  83. def __hash_new(name, string = ''):
  84.     
  85.     try:
  86.         return _hashlib.new(name, string)
  87.     except ValueError:
  88.         return __get_builtin_constructor(name)(string)
  89.  
  90.  
  91.  
  92. try:
  93.     import _hashlib
  94.     new = __hash_new
  95.     for opensslFuncName in filter((lambda n: n.startswith('openssl_')), dir(_hashlib)):
  96.         funcName = opensslFuncName[len('openssl_'):]
  97.         
  98.         try:
  99.             f = getattr(_hashlib, opensslFuncName)
  100.             f()
  101.             exec funcName + ' = f'
  102.         continue
  103.         except ValueError:
  104.             
  105.             try:
  106.                 exec funcName + ' = __get_builtin_constructor(funcName)'
  107.             except ValueError:
  108.                 pass
  109.             except:
  110.                 None<EXCEPTION MATCH>ValueError
  111.             
  112.  
  113.             None<EXCEPTION MATCH>ValueError
  114.         
  115.  
  116.     
  117.     del f
  118.     del opensslFuncName
  119.     del funcName
  120. except ImportError:
  121.     new = __py_new
  122.     md5 = __get_builtin_constructor('md5')
  123.     sha1 = __get_builtin_constructor('sha1')
  124.     sha224 = __get_builtin_constructor('sha224')
  125.     sha256 = __get_builtin_constructor('sha256')
  126.     sha384 = __get_builtin_constructor('sha384')
  127.     sha512 = __get_builtin_constructor('sha512')
  128.  
  129.