mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2025-12-08 05:19:46 +00:00
13 lines
457 B
Python
13 lines
457 B
Python
|
|
from typing import Union, Any
|
||
|
|
|
||
|
|
|
||
|
|
class Keccak_Hash(object):
|
||
|
|
digest_size: int
|
||
|
|
def __init__(self, data: Union[bytes, bytearray, memoryview], digest_bytes: int, update_after_digest: bool) -> None: ...
|
||
|
|
def update(self, data: Union[bytes, bytearray, memoryview]) -> Keccak_Hash: ...
|
||
|
|
def digest(self) -> bytes: ...
|
||
|
|
def hexdigest(self) -> str: ...
|
||
|
|
def new(self, **kwargs: Any) -> Keccak_Hash: ...
|
||
|
|
|
||
|
|
def new(**kwargs: Any) -> Keccak_Hash: ...
|