implement basic password hashing #11

Open
giovannife wants to merge 1 commit from giovannife/2024-heraklion-git:pwd-hash into main
Member
No description provided.
giovannife added 1 commit 2024-08-26 14:22:44 +02:00
otizonaizit reviewed 2024-08-26 14:24:37 +02:00
@ -31,0 +32,4 @@
def pwhash(password):
hash = ''
for letter in password:
hash += hex(ord(letter)**2)[2:]
Owner

what's the [2:] about?

what's the `[2:]` about?
This pull request has changes conflicting with the target branch.
  • auth.py
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u pwd-hash:giovannife-pwd-hash
git checkout giovannife-pwd-hash

Merge

Merge the changes and update on Forgejo.
git checkout main
git merge --no-ff giovannife-pwd-hash
git checkout main
git merge --ff-only giovannife-pwd-hash
git checkout giovannife-pwd-hash
git rebase main
git checkout main
git merge --no-ff giovannife-pwd-hash
git checkout main
git merge --squash giovannife-pwd-hash
git checkout main
git merge --ff-only giovannife-pwd-hash
git checkout main
git merge giovannife-pwd-hash
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: ASPP/2024-heraklion-git#11
No description provided.