Skip to content

Commit

Permalink
fixed typo in utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sebi364 authored Jun 24, 2024
1 parent 62b16b1 commit eff9718
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 eff9718

Please sign in to comment.