You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not a cryptographer but using MD5 to generate a key is pretty bad IMHO.
A real KDF (PBKDF2 like openssl rightly suggest) with moderate number of iterations should keep the secrets safe from a brute force attack.
Defalult encrypt is always warning,plase add -pbkdf2 -iter 1024 to update
openssl enc -aes-256-cbc -md sha512 -pbkdf2 -iter 1024 -salt -in InputFilePath -out OutputFilePath
follow by https://crypto.stackexchange.com/questions/20941/why-shouldnt-i-use-ecb-encryption
The text was updated successfully, but these errors were encountered: