From 514feaa53b65f2071f94a200f471fd7541c31c0d Mon Sep 17 00:00:00 2001 From: Alexander Bersenev Date: Sat, 9 Jun 2018 01:08:25 +0500 Subject: [PATCH] advice to use pycryptodome --- mtprotoproxy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mtprotoproxy.py b/mtprotoproxy.py index b699a87..c4aad14 100755 --- a/mtprotoproxy.py +++ b/mtprotoproxy.py @@ -23,7 +23,8 @@ try: return AES.new(key, AES.MODE_CBC, iv) except ImportError: - print("Failed to find pycrypto, using slow AES version", flush=True, file=sys.stderr) + print("Failed to find pycryptodome or pycrypto, using slow AES implementation", + flush=True, file=sys.stderr) import pyaes def create_aes_ctr(key, iv):