From 3fa60a3e3e87c70aa6add15fc91759ad415d1f65 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sun, 25 Oct 2020 20:17:24 -0700 Subject: [PATCH] Fix typo "weblient". --- src/mega/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mega/crypto.py b/src/mega/crypto.py index d539244..dcf122d 100644 --- a/src/mega/crypto.py +++ b/src/mega/crypto.py @@ -39,7 +39,7 @@ def aes_cbc_decrypt_a32(data, key): def stringhash(str, aeskey): ''' - As defined by MEGA's weblient crypto.js. Search for "function stringhash". + As defined by MEGA's webclient crypto.js. Search for "function stringhash". ''' s32 = str_to_a32(str) h32 = [0, 0, 0, 0]