# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT class SHA224Type(object): 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 bytes object. """ pass digest_size = property(None, None, None, ) def hexdigest(self): """ Return the digest value as a string of hexadecimal digits. """ pass name = property(None, None, None, ) def update(self, obj): """ Update this hash object's state with the provided string. """ pass class SHA256Type(object): 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 bytes object. """ pass digest_size = property(None, None, None, ) def hexdigest(self): """ Return the digest value as a string of hexadecimal digits. """ pass name = property(None, None, None, ) def update(self, obj): """ Update this hash object's state with the provided string. """ pass class SHA384Type(object): 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 bytes object. """ pass digest_size = property(None, None, None, ) def hexdigest(self): """ Return the digest value as a string of hexadecimal digits. """ pass name = property(None, None, None, ) def update(self, obj): """ Update this hash object's state with the provided string. """ pass class SHA512Type(object): 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 bytes object. """ pass digest_size = property(None, None, None, ) def hexdigest(self): """ Return the digest value as a string of hexadecimal digits. """ pass name = property(None, None, None, ) def update(self, obj): """ Update this hash object's state with the provided string. """ pass __doc__ = None __file__ = '/home/shared/src/ide-arm64/build-files/build-temp/runtimes-release/__os__/linux-arm64/runtime-python3.13/lib/python3.13/lib-dynload/_sha2.cpython-313-aarch64-linux-gnu.so' __loader__ = None __name__ = '_sha2' __package__ = '' __spec__ = None def sha224(string=b'', usedforsecurity=True): """ Return a new SHA-224 hash object; optionally initialized with a string. """ pass def sha256(string=b'', usedforsecurity=True): """ Return a new SHA-256 hash object; optionally initialized with a string. """ pass def sha384(string=b'', usedforsecurity=True): """ Return a new SHA-384 hash object; optionally initialized with a string. """ pass def sha512(string=b'', usedforsecurity=True): """ Return a new SHA-512 hash object; optionally initialized with a string. """ pass