mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-14 05:26:36 +03:00
5 lines
184 B
Python
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]: ...
|