SHA3_224.pyi 504 B

12345678910111213141516
  1. from typing import Union, Optional
  2. Buffer = Union[bytes, bytearray, memoryview]
  3. class SHA3_224_Hash(object):
  4. digest_size: int
  5. oid: str
  6. def __init__(self, data: Optional[Buffer], update_after_digest: bool) -> None: ...
  7. def update(self, data: Buffer) -> SHA3_224_Hash: ...
  8. def digest(self) -> bytes: ...
  9. def hexdigest(self) -> str: ...
  10. def new(self) -> SHA3_224_Hash: ...
  11. def new(__data: Buffer = ..., update_after_digest: bool = ...) -> SHA3_224_Hash: ...
  12. digest_size: int