implement basic password hashing #11
Loading…
Reference in a new issue
No description provided.
Delete branch "giovannife/2024-heraklion-git:pwd-hash"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -31,0 +32,4 @@
def pwhash(password):
hash = ''
for letter in password:
hash += hex(ord(letter)**2)[2:]
what's the
[2:]
about?View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.Merge
Merge the changes and update on Forgejo.