Storing Sensitive Information With Python: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Encrypting strings == * [https://stackoverflow.com/a/59835994/1399562 Encrypting and Decrypting with AES256-GCM] - Stackoverflow (Jan 21, 2020) Category:PythonCategory:Web Development") |
|||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== Password hashing == | |||
* [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 == | ||
* [https://stackoverflow.com/a/59835994/1399562 Encrypting and Decrypting with AES256-GCM] - | * [https://stackoverflow.com/a/59835994/1399562 Encrypting and Decrypting with AES256-GCM] - StackOverflow (Jan 21, 2020) | ||
[[Category:Python]][[Category:Web Development]] | [[Category:Python]][[Category:Web Development]] | ||
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)