Skip to content

Commit

Permalink
Merge pull request #131 from sebi364/main
Browse files Browse the repository at this point in the history
fixed typo in utils.py
  • Loading branch information
ElDavoo authored Jun 24, 2024
2 parents 62b16b1 + eff9718 commit 126f8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wa_crypt_tools/lib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 126f8ca

Please sign in to comment.