Cryptography Tutorials - Herong's Tutorial Examples - v5.42, by Herong Yang
"keytool -list" Verifying PKCS#12 Files
This section provides a tutorial example on how to merge a private key and its self-signed certificate into a single PKCS#12 file, with can be then encoded as PEM and encrypted with DES.
Since Java SE "keytool" command support PKCS#12 files, I want to try it with my PKCS#12 file, openssl_key_crt.p12, created by "OpenSSL" with the following tests:
My command session was recorded as blow:
herong> keytool -list -keystore openssl_key_crt.p12 -storetype pkcs12 \ -storepass p12pass Keystore type: PKCS12 Keystore provider: SunJSSE Your keystore contains 1 entry openssl_key_crt, Jul 29, 2007, PrivateKeyEntry, Certificate fingerprint (MD5): 1D:D4:AC:96:53:25:9F:1A:D0:A7:46:6C... herong> keytool -exportcert -keystore openssl_key_crt.p12 \ -storetype pkcs12 -storepass p12pass -alias openssl_key_crt \ -file keytool_openssl_crt.pem -rfc Certificate stored in file <keytool_openssl_crt.pem>
Notes on the commands and options I used:
The tests were successful and helped me to learn that:
As an exercise, you can open "openssl_crt.pem" and "keytool_openssl_crt.pem". They should contain the same Base64 encoded strings.
In the next section, I want to try to convert the PKCS#12 file to a JKS (Java KeyStore) file.
Table of Contents
Introduction to AES (Advanced Encryption Standard)
DES Algorithm - Illustrated with Java Programs
DES Algorithm Java Implementation
DES Algorithm - Java Implementation in JDK JCE
DES Encryption Operation Modes
PHP Implementation of DES - mcrypt
Blowfish - 8-Byte Block Cipher
Secret Key Generation and Management
Cipher - Secret Key Encryption and Decryption
RSA Implementation using java.math.BigInteger Class
Introduction of DSA (Digital Signature Algorithm)
Java Default Implementation of DSA
Private key and Public Key Pair Generation
PKCS#8/X.509 Private/Public Encoding Standards
Cipher - Public Key Encryption and Decryption
OpenSSL Introduction and Installation
OpenSSL Generating and Managing RSA Keys
OpenSSL Generating and Signing CSR
OpenSSL Validating Certificate Path
"keytool" and "keystore" from JDK
"OpenSSL" Signing CSR Generated by "keytool"
Migrating Keys from "keystore" to "OpenSSL" Key Files
Certificate X.509 Standard and DER/PEM Formats
►Migrating Keys from "OpenSSL" Key Files to "keystore"
"openssl genrsa" Generating Private Key
"openssl pkcs8" Converting Keys to PKCS#8 Format
"openssl pkcs12" Merging Key with Certificate
►"keytool -list" Verifying PKCS#12 Files
"keytool -importkeystore" Importing PKCS#12 Files
Summary - Migrating "OpenSSL" Keys to "keystore"
Summary - Migrating "keystore" Keys to "OpenSSL"