Skip to content

Commit

Permalink
fix(verify tool): fix letter case
Browse files Browse the repository at this point in the history
modify hash function to generate lower case result
  • Loading branch information
brandonbingx authored Nov 22, 2022
1 parent ede9fa0 commit 43ef338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion por.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# put raw input string to hash string
def hash(raw_input_string):
hash_result = sha256(raw_input_string.encode()).hexdigest().upper()
hash_result = sha256(raw_input_string.encode()).hexdigest().lower()
return hash_result


Expand Down

0 comments on commit 43ef338

Please sign in to comment.