Telethon/typings/pyaes.pyi

5 lines
184 B
Python
Raw Normal View History

2023-07-08 14:04:20 +03:00
class AES:
def __init__(self, key: bytes) -> None: ...
2024-03-17 15:06:03 +03:00
def encrypt(self, plaintext: list[int]) -> list[int]: ...
def decrypt(self, ciphertext: list[int]) -> list[int]: ...