So i tried to Programm a password manager in python that is able to be 100% secure even if the server got hacked. The passwords should be saved on the server side for multidevice use.
and that worked out fine except that everyone could delete the passwords of anyone else so I tried making a account system. (I can't make a Ip system since I want multidevice use)
I tried making the server save the username and the username encrypted with the password. If the user would then send the password the server could decrypt the username (encrypted with the password) and compare it to the original password.
Long story short with the encryption I'm using currently (I programmed it myself) I can find out the password if you have the username and the username encrypted with the password. (well not the exact password but at least something that has the same result as the Password) Does anyone of you know a Decryption method (that maybe isn't too complex so that I can implement it myself) with which you can't find out the password if you have the username and a combination of the username and the password?
Thx for reading this far and helping me out <3