Storing Sensitive Information With Python: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 1: | Line 1: | ||
== Password hashing == | == Password hashing == | ||
[https://crackstation.net/hashing-security.htm Salted Password Hashing - Doing it Right] - CrackStation | * [https://crackstation.net/hashing-security.htm Salted Password Hashing - Doing it Right] - CrackStation | ||
* [https://www.pythoncentral.io/hashing-strings-with-python/ Hashing Strings With Python] - Python Central (Contains background information about the various historic algorithms.) | |||
== Encrypting strings == | == Encrypting strings == | ||
Revision as of 13:55, 18 April 2022
Password hashing
- Salted Password Hashing - Doing it Right - CrackStation
- Hashing Strings With Python - Python Central (Contains background information about the various historic algorithms.)
Encrypting strings
- Encrypting and Decrypting with AES256-GCM - StackOverflow (Jan 21, 2020)