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
The 3.x train of OpenSSL switched the default key format to PKCS#8 (from PKCS#1).
openssl genrsa -out private_key.pem 2048 # now generates a PKCS#8
FWIW, the legacy PKCS#1 format can still be generated by passing the -traditional flag (also available in the rsa command):
-traditional
rsa
openssl genrsa -traditional -out private_key.pem 2048 # generates a PKCS#1
It would be nice if rfc3447.RSAPrivateKey() could parse both formats.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The 3.x train of OpenSSL switched the default key format to PKCS#8 (from PKCS#1).
FWIW, the legacy PKCS#1 format can still be generated by passing the
-traditional
flag (also available in thersa
command):It would be nice if rfc3447.RSAPrivateKey() could parse both formats.
The text was updated successfully, but these errors were encountered: