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
I'm trying to duplicate what is used by the key management systems for Google, AWS and IBM's cloud without calling out to openssl from my golang app:
$ echo "hello" | openssl pkeyutl -encrypt -pubin -inkey localpubkey.crt -pkeyopt rsa_padding_mode:oaep -pkeyopt rsa_oaep_md:sha256 -pkeyopt rsa_mgf1_md:sha256 | openssl pkeyutl -decrypt -inkey localkey.pem -pkeyopt rsa_padding_mode:oaep -pkeyopt rsa_oaep_md:sha256 -pkeyopt rsa_mgf1_md:sha256 hello
Doc links:
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to duplicate what is used by the key management systems for Google, AWS and IBM's cloud without calling out to openssl from my golang app:
Doc links:
Thanks!
The text was updated successfully, but these errors were encountered: