Collections:
Other Resources:
"keytool -genkeypair" Command Examples - Generate Key Pair
How to use the "keytool -genkeypair" command? I want to generate a pair of public key and private key for myself.
✍: FYIcenter.com
Here is an example of using "keytool -genkeypair" command to generate
a pair of public key and private key for yourself:
C:\Users\fyicenter> keytool -genkeypair -dname CN=www.fyicenter.com -storepass FYIcenter -keypass FYIcenter
What this command did for you:
If you run the command again, you should get an error, because Keytool can not add another entry with the same alias name "mykey" in the same keystore file.
C:\Users\fyicenter> keytool -genkeypair -dname CN=www.fyicenter.com -storepass FYIcenter -keypass FYIcenter keytool error: java.lang.Exception: Key pair not generated, alias <mykey> already exists
To create another key pair in the same keystore file, use the "-alias" to provide a new name:
C:\Users\fyicenter> keytool -genkeypair -dname CN=jar.fyicenter.com -storepass FYIcenter -keypass FYIcenter -alias 2ndkey
⇒ Java "keytool -exportcert" Command Options
⇐ Java "keytool -genkeypair" Command Options
2012-07-19, ≈26🔥, 0💬
Popular Posts:
Certificate summary - Owner: *.mercadolivre.com.br, IT, MERCADOLIBRE S.R.L, L=Ciudad Autonoma de Bue...
How to re-encrypt a DSA key file using OpenSSL "dsa" command? I want to change the encryption passwo...
Certificate summary - Owner: www.purevolume.com, Domain Control Validated Issuer: SERIALNUMBER=07969...
Certificate summary - Owner: *.adnxs.com, "AppNexus, Inc", L=New York, ST=New York, US, SERIALNUMBER...
What is "makecert.exe" on Windows? What can I use it for? "makecert.exe" is a Certificate Creation t...