Hello! I was experimenting with steganography and stumbled into the idea of a password manager based on steganography.
If someone has any feedback or suggestions I would be happy to hear!
3 messages · Page 1 of 1 (latest)
Hello! I was experimenting with steganography and stumbled into the idea of a password manager based on steganography.
If someone has any feedback or suggestions I would be happy to hear!
Just on your choice of cryptography - sha256 is not really suitable for password hashing, rather choose argon2. Next for encryption you should avoid using raw AES-CBC as it's not authenticated (malleable) and so can be decrypted locally via padding oracle without knowing the key. You should instead use AES-GCM.
Thank you for the feedback!
I have updated the code to use aes-gcm and argon2
🙂