# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT class HASH(object): """ A hash represents the object used to calculate a checksum of a string of information. Methods: update() -- updates the current digest with an additional string digest() -- return the current digest value hexdigest() -- return the current digest as a string of hexadecimal digits copy() -- return a copy of the current hash object Attributes: name -- the hash algorithm being used by this object digest_size -- number of bytes in this hashes output """ block_size = property(None, None, None, ) def copy(self): """ Return a copy of the hash object. """ pass def digest(self): """ Return the digest value as a string of binary data. """ pass digest_size = property(None, None, None, ) def hexdigest(self): """ Return the digest value as a string of hexadecimal digits. """ pass name = None def update(self): """ Update this hash object's state with the provided string. """ pass __doc__ = None __file__ = '/Users/Shared/src/ide/build-files/build-temp/runtimes-release/__os__/osx/runtime-python3.4/lib/Python.framework/Versions/Current/lib/python3.4/lib-dynload/_hashlib.so' __loader__ = None __name__ = '_hashlib' __package__ = '' __spec__ = None def new(): """ Return a new hash object using the named algorithm. An optional string argument may be provided and will be automatically hashed. The MD5 and SHA1 algorithms are always supported. """ pass def openssl_md5(): """ Returns a md5 hash object; optionally initialized with a string """ pass openssl_md_meth_names = None def openssl_sha1(): """ Returns a sha1 hash object; optionally initialized with a string """ pass def openssl_sha224(): """ Returns a sha224 hash object; optionally initialized with a string """ pass def openssl_sha256(): """ Returns a sha256 hash object; optionally initialized with a string """ pass def openssl_sha384(): """ Returns a sha384 hash object; optionally initialized with a string """ pass def openssl_sha512(): """ Returns a sha512 hash object; optionally initialized with a string """ pass