# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT SHA224Type = sha224 SHA256Type = sha256 __doc__ = None class __loader__(object): """ Meta path import for built-in modules. All methods are either class or static methods to avoid the need to instantiate the class. """ def find_module(self, fullname, path=None): """ Find the built-in module. If 'path' is ever specified then the search is considered a failure. This method is deprecated. Use find_spec() instead. """ pass def find_spec(self, fullname, path=None, target=None): pass def get_code(self, fullname): """ Return None as built-in modules do not have code objects. """ pass def get_source(self, fullname): """ Return None as built-in modules do not have source code. """ pass def is_package(self, fullname): """ Return False as built-in modules are never packages. """ pass def load_module(self, fullname): """ Load a built-in module. """ pass def module_repr(self, module): """ Return repr for the module. The method is deprecated. The import machinery does the job itself. """ pass __name__ = '_sha256' __package__ = '' __spec__ = None def sha224(): """ Return a new SHA-224 hash object; optionally initialized with a string. """ pass def sha256(): """ Return a new SHA-256 hash object; optionally initialized with a string. """ pass