Telethon/typings/pyaes.pyi
2024-03-17 13:06:03 +01:00

5 lines
184 B
Python

class AES:
def __init__(self, key: bytes) -> None: ...
def encrypt(self, plaintext: list[int]) -> list[int]: ...
def decrypt(self, ciphertext: list[int]) -> list[int]: ...