Tomas-Wardoloff / Virtual-Wallet

Personal project to spend my time in something more useful rather than playing league of legends
MIT License
0 stars 0 forks source link

Passwords Storage #8

Closed Tomas-Wardoloff closed 1 year ago

Tomas-Wardoloff commented 1 year ago

The user's passwords are stored in the database as plain text which could be the worst practice in the world. I should implement security hash algorithms to store the passwords in the database. Upgrade interface.py. Check this module for python: hashlib

Tomas-Wardoloff commented 1 year ago

The issue was closed in the following commi: 4bb09bb2e6a0081ee17c7db5dea9c187e7f708d6 This is a short youtube video about storing data in a database: https://youtu.be/fVYgM8MG-xY. It is pretty cool.