Files
Ivan Vazhenin a440d30b12 Add pygost deps
2023-08-30 19:10:53 +03:00

20 lines
293 B
Python

from typing import AnyStr
def strxor(a: bytes, b: bytes) -> bytes: ...
def hexdec(data: AnyStr) -> bytes: ...
def hexenc(data: bytes) -> str: ...
def bytes2long(raw: bytes) -> int: ...
def long2bytes(n: int, size: int = ...) -> bytes: ...
def modinvert(a: int, n: int) -> int: ...