#Steganography password manager

3 messages · Page 1 of 1 (latest)

devout prawn
main hound
#

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.

devout prawn
#

Thank you for the feedback!
I have updated the code to use aes-gcm and argon2
🙂