home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Bureautique / gImageReader / gimagereader_0.9-1_win32.exe / bin / hashlib.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2011-03-24  |  4KB  |  137 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  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. __always_supported = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512')
  54. algorithms = __always_supported
  55. __all__ = __always_supported + ('new', 'algorithms')
  56.  
  57. def __get_builtin_constructor(name):
  58.     if name in ('SHA1', 'sha1'):
  59.         import _sha as _sha
  60.         return _sha.new
  61.     if None in ('MD5', 'md5'):
  62.         import _md5 as _md5
  63.         return _md5.new
  64.     if None in ('SHA256', 'sha256', 'SHA224', 'sha224'):
  65.         import _sha256 as _sha256
  66.         bs = name[3:]
  67.         if bs == '256':
  68.             return _sha256.sha256
  69.         if None == '224':
  70.             return _sha256.sha224
  71.     if name in ('SHA512', 'sha512', 'SHA384', 'sha384'):
  72.         import _sha512 as _sha512
  73.         bs = name[3:]
  74.         if bs == '512':
  75.             return _sha512.sha512
  76.         if None == '384':
  77.             return _sha512.sha384
  78.     raise ValueError('unsupported hash type %s' % name)
  79.  
  80.  
  81. def __get_openssl_constructor(name):
  82.     
  83.     try:
  84.         f = getattr(_hashlib, 'openssl_' + name)
  85.         f()
  86.         return f
  87.     except (AttributeError, ValueError):
  88.         return __get_builtin_constructor(name)
  89.  
  90.  
  91.  
  92. def __py_new(name, string = ''):
  93.     """new(name, string='') - Return a new hashing object using the named algorithm;
  94.     optionally initialized with a string.
  95.     """
  96.     return __get_builtin_constructor(name)(string)
  97.  
  98.  
  99. def __hash_new(name, string = ''):
  100.     """new(name, string='') - Return a new hashing object using the named algorithm;
  101.     optionally initialized with a string.
  102.     """
  103.     
  104.     try:
  105.         return _hashlib.new(name, string)
  106.     except ValueError:
  107.         return __get_builtin_constructor(name)(string)
  108.  
  109.  
  110.  
  111. try:
  112.     import _hashlib
  113.     new = __hash_new
  114.     __get_hash = __get_openssl_constructor
  115. except ImportError:
  116.     new = __py_new
  117.     __get_hash = __get_builtin_constructor
  118.  
  119. for __func_name in __always_supported:
  120.     
  121.     try:
  122.         globals()[__func_name] = __get_hash(__func_name)
  123.     continue
  124.     except ValueError:
  125.         import logging
  126.         logging.exception('code for hash %s was not found.', __func_name)
  127.         continue
  128.     
  129.  
  130.  
  131. del __always_supported
  132. del __func_name
  133. del __get_hash
  134. del __py_new
  135. del __hash_new
  136. del __get_openssl_constructor
  137.