mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2025-12-08 05:19:46 +00:00
5 lines
290 B
Python
5 lines
290 B
Python
from typing import Optional, Union, Dict
|
|
|
|
def new(nbits: int, prefix: Optional[bytes]=..., suffix: Optional[bytes]=..., initial_value: Optional[int]=1,
|
|
little_endian: Optional[bool]=False, allow_wraparound: Optional[bool]=False) -> \
|
|
Dict[str, Union[int, bytes, bool]]: ...
|