inhinias / Arcanum

A small tool for saving encrypted passwords in a database.
GNU General Public License v3.0
5 stars 1 forks source link

Updating a password causes additional email #16

Closed inhinias closed 5 years ago

inhinias commented 5 years ago

Updating a password causes a false positive for the email not being in the email list. This results in duplicates within the list every time something is updated.

inhinias commented 5 years ago

Found the culprit to this issue: passwords.py, addPassword There the "new" email gets encrypted and compared against all the other enc emails. This will always return false because of the salted encryption!

inhinias commented 5 years ago

This issue has been resolved with the change to a dedicated email table. It is no longer present