From d2d4f55673453dec7167895a5b221c19fa838288 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Mon, 17 Sep 2018 16:53:17 +0200 Subject: [PATCH] Revert "Remove TODO" This reverts commit f576fc8 --- pyrogram/crypto/aes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyrogram/crypto/aes.py b/pyrogram/crypto/aes.py index f16688c4..065a5b4d 100644 --- a/pyrogram/crypto/aes.py +++ b/pyrogram/crypto/aes.py @@ -27,6 +27,7 @@ try: class AES: + # TODO: Use new tgcrypto function names @classmethod def ige256_encrypt(cls, data: bytes, key: bytes, iv: bytes) -> bytes: return tgcrypto.ige256_encrypt(data, key, iv)