Home | History | Annotate | Download | only in python2.7

Lines Matching full:hash

7 __doc__ = """hashlib module - A common interface to many hash functions.
9 new(name, string='') - returns a new hash object implementing the
10 given hash function; initializing the hash
21 NOTE: If you want the adler32 or crc32 hash functions they are available in
24 Choose your hash function wisely. Some have known collision weaknesses.
27 Hash objects have these methods:
28 - update(arg): Update the hash object with the string arg. Repeated calls
36 - copy(): Return a copy (clone) of the hash object. This can be used to
89 pass # no extension module, this hash is unsupported.
91 raise ValueError('unsupported hash type ' + name)
98 # defined but the hash not actually available thanks to OpenSSL.
121 # hash, try using our builtin implementations.
142 logging.exception('code for hash %s was not found.', __func_name)