implement sha256 hashing of password for security reason #7
Loading…
Reference in a new issue
No description provided.
Delete branch "romaingu/2024-heraklion-git:hash_pwd"
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?
you are fixing two issues simultaneously here:
can you please create two separate PRs for the two issues?
good idea to leverage the Python hashing library!
Hi @otizonaizit ,
33720c9b63
tode4dc255ac
@ -32,0 +35,4 @@
m = sha256()
m.update(encoded_pwd)
return m.hexdigest()
Too many empty lines here.