From eff9718cdb6c878db829ec142d344f9c1bf6ca87 Mon Sep 17 00:00:00 2001 From: Sebi <110155948+sebi364@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:54:23 +0200 Subject: [PATCH] fixed typo in utils.py --- src/wa_crypt_tools/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wa_crypt_tools/lib/utils.py b/src/wa_crypt_tools/lib/utils.py index 466e228..3fae8ea 100644 --- a/src/wa_crypt_tools/lib/utils.py +++ b/src/wa_crypt_tools/lib/utils.py @@ -167,7 +167,7 @@ def header_info(header): string += str("Header information in your crypt14 file:\n") string += str("Cipher version: {}\n".format(header.c14_cipher.cipher_version.hex())) string += str("Key version: {}\n".format(header.c14_cipher.key_version.hex())) - string += str("Server satl: {}\n".format(header.c14_cipher.server_salt.hex())) + string += str("Server salt: {}\n".format(header.c14_cipher.server_salt.hex())) string += str("Google ID: {}\n".format(header.c14_cipher.google_id.hex())) string += str("IV: {}\n".format(header.c14_cipher.IV.hex())) string += str("Key type: {}\n".format(header.key_type))