# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ _blake2b provides BLAKE2b for hashlib """ BLAKE2B_MAX_DIGEST_SIZE = 64 BLAKE2B_MAX_KEY_SIZE = 64 BLAKE2B_PERSON_SIZE = 16 BLAKE2B_SALT_SIZE = 16 BLAKE2S_MAX_DIGEST_SIZE = 32 BLAKE2S_MAX_KEY_SIZE = 32 BLAKE2S_PERSON_SIZE = 8 BLAKE2S_SALT_SIZE = 8 __doc__ = """_blake2b provides BLAKE2b for hashlib """ __file__ = '/Users/Shared/build/ide/build-files/build-temp/runtimes-release/__os__/macos/runtime-python3.13/lib/Python.framework/Versions/3.13/lib/python3.13/lib-dynload/_blake2.cpython-313-darwin.so' __loader__ = None __name__ = '_blake2' __package__ = '' __spec__ = None class blake2b(object): """ Return a new BLAKE2b hash object. """ MAX_DIGEST_SIZE = 64 MAX_KEY_SIZE = 64 PERSON_SIZE = 16 SALT_SIZE = 16 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, data): """ Update this hash object's state with the provided bytes-like object. """ pass class blake2s(object): """ Return a new BLAKE2s hash object. """ MAX_DIGEST_SIZE = 32 MAX_KEY_SIZE = 32 PERSON_SIZE = 8 SALT_SIZE = 8 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, data): """ Update this hash object's state with the provided bytes-like object. """ pass