Telethon/telethon/crypto/__init__.py
2017-11-26 16:57:40 +01:00

11 lines
352 B
Python

"""
This module contains several utilities regarding cryptographic purposes,
such as the AES IGE mode used by Telegram, the authorization key bound with
their data centers, and so on.
"""
from .aes import AES
from .aes_ctr import AESModeCTR
from .auth_key import AuthKey
from .factorization import Factorization
from .cdn_decrypter import CdnDecrypter