Telethon/telethon/crypto/__init__.py

11 lines
352 B
Python
Raw Normal View History

2017-11-26 18:57:40 +03:00
"""
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.
"""
2016-09-04 13:42:11 +03:00
from .aes import AES
from .aes_ctr import AESModeCTR
2016-09-04 13:42:11 +03:00
from .auth_key import AuthKey
2017-05-21 14:59:16 +03:00
from .factorization import Factorization
from .cdn_decrypter import CdnDecrypter