From 045e71d2da58def099298ca497ac684c983efe44 Mon Sep 17 00:00:00 2001 From: ColdWindScholar <3590361911@qq.com> Date: Sat, 4 May 2024 16:58:29 +0800 Subject: [PATCH] fix typo mistake --- mtkclient/Library/cryptutils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mtkclient/Library/cryptutils.py b/mtkclient/Library/cryptutils.py index e820cf7..70ce3f3 100755 --- a/mtkclient/Library/cryptutils.py +++ b/mtkclient/Library/cryptutils.py @@ -306,6 +306,7 @@ class cryptutils: ciphertext = cipher.encrypt(data) return ciphertext + @staticmethod def aes_cmac_verify(key, plain, compare): ctx = CMAC.new(key, ciphermod=AES) ctx.update(plain)