Telethon/telethon/crypto/__init__.py

11 lines
349 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
2018-06-18 22:02:42 +03:00
from .aesctr import AESModeCTR
from .authkey import AuthKey
2017-05-21 14:59:16 +03:00
from .factorization import Factorization
2018-06-18 22:02:42 +03:00
from .cdndecrypter import CdnDecrypter