Categories:
DH Keys (39)
DSA Keys (69)
EC Keys (336)
Firefox (32)
General (13)
Google Chrome (25)
Intermediate CA (152)
Java VM (20)
JDK Keytool (25)
Microsoft CertUtil (26)
Mozilla CertUtil (18)
OpenSSL (237)
Other (17)
Portecle (38)
Publishers (1966)
Revoked Certificates (30)
Root CA (87)
RSA Keys (1819)
Tools (47)
Tutorial (7)
What Is (21)
Windows (129)
Collections:
Other Resources:
OpenSSL "genrsa 32" - Generate RSA Short Keys
How to generate a new RSA key pair with a shorter key size using OpenSSL "genrsa" command?
✍: FYIcenter.com
If you need a new RSA key pair with a shorter key size for testing purpose,
you can use the OpenSSL "genrsa" command as shown below:
C:\Users\fyicenter>\local\openssl\openssl.exe OpenSSL> genrsa -out my_rsa_short.key 32 Generating RSA private key, 32 bit long modulus .+++++++++++++++++++++++++++ .+++++++++++++++++++++++++++ e is 65537 (0x10001) OpenSSL> rsa -in my_rsa_short.key -text Private-Key: (32 bit) modulus: 2860622833 (0xaa81a3f1) publicExponent: 65537 (0x10001) privateExponent: 2570348229 (0x993466c5) prime1: 56039 (0xdae7) prime2: 51047 (0xc767) exponent1: 53283 (0xd023) exponent2: 28991 (0x713f) coefficient: 23967 (0x5d9f) writing RSA key -----BEGIN RSA PRIVATE KEY----- MC0CAQACBQCqgaPxAgMBAAECBQCZNGbFAgMA2ucCAwDHZwIDANAjAgJxPwICXZ8= -----END RSA PRIVATE KEY-----
What this test tells us:
⇒ OpenSSL "genrsa 10240" - Generate RSA Long Keys
⇐ OpenSSL "rsa -pubin" - View RSA Public Key
2020-10-17, 2295👍, 2💬
Popular Posts:
How to specify the root CA certificates that close the signing chain for the server certificate for ...
How to export my private key and public key pair with it's certificates into a PKCS #12 keystore fil...
How to verify an HTTPS server certificate? To help you to verify an HTTPS server certificate and vie...
Where to find tutorials on using OpenSSL "ans1parse" command? Here is a collection of tutorials on u...
What are X509 V3 extensions options in the configuration file for the OpenSSL "req" command? X509 V3...