We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current script returns:
*** WARNING : deprecated key derivation used. Using -iter or -pbkdf2 would be better.
Why not using openssl defaults? Ending up with:
decrypted_keyfile=$(echo "$encrypted_keyfile" | openssl enc -base64 -d -salt -k "$openssl_passphrase")
The text was updated successfully, but these errors were encountered:
One problem is that the defaults can change (and indeed have done #1 ), so you either to store the parameters somewhere or hardcode them, AFAICT.
I wonder if the deprecation warning actually relates to using "-k" instead of "-pass pass:"; I'll check this.
Sorry, something went wrong.
It would be nice if there would be a simple configuration file for https-keyscript.
btw, this issue could be fixed by #11
No branches or pull requests
Current script returns:
*** WARNING : deprecated key derivation used.
Using -iter or -pbkdf2 would be better.
Why not using openssl defaults? Ending up with:
decrypted_keyfile=$(echo "$encrypted_keyfile" | openssl enc -base64 -d -salt -k "$openssl_passphrase")
The text was updated successfully, but these errors were encountered: