Storing Sensitive Information With Python: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| (One intermediate revision by the same user not shown) | |||
| 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.) | |||
* [https://codereview.stackexchange.com/questions/201265/password-field-based-on-peewee-orm-framework Password field based on peewee ORM framework] - Stack Exchange | |||
== Encrypting strings == | == Encrypting strings == | ||
Latest revision as of 13:55, 18 April 2022
Password hashing[edit]
- Salted Password Hashing - Doing it Right - CrackStation
- Hashing Strings With Python - Python Central (Contains background information about the various historic algorithms.)
- Password field based on peewee ORM framework - Stack Exchange
Encrypting strings[edit]
- Encrypting and Decrypting with AES256-GCM - StackOverflow (Jan 21, 2020)