mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2026-09-07 09:21:56 +00:00
Port crypto from grammers
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
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]: ...
|
||||
Reference in New Issue
Block a user