mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
7 lines
209 B
Python
7 lines
209 B
Python
|
from typing import List
|
||
|
|
||
|
class AES:
|
||
|
def __init__(self, key: bytes) -> None: ...
|
||
|
def encrypt(self, plaintext: List[int]) -> List[int]: ...
|
||
|
def decrypt(self, ciphertext: List[int]) -> List[int]: ...
|