KMAC256.pyi 226 B

12345678910
  1. from typing import Union
  2. from .KMAC128 import KMAC_Hash
  3. Buffer = Union[bytes, bytearray, memoryview]
  4. def new(key: Buffer,
  5. data: Buffer = ...,
  6. mac_len: int = ...,
  7. custom: Buffer = ...) -> KMAC_Hash: ...