1) Below command will display certificate details like expiry date in the kdb file keystore.kdb
ikeycmd -cert -details -label "Certificate name in KDB" -db keystore.kdb -pw "password of kdb file"
2) Below command will display list of certificates in kdb file
ikeycmd -cert -list -db keystore.kdb -pw "password of kdb file"
3) Below command will display ca certificates in kdb file
ikeycmd -cert -list ca -db keystore.kdb -pw "password of kdb file"
4) Below command will display personal certificates in kdb file
ikeycmd -cert -list personal -db keystore.kdb -pw "password of kdb file"
5) Below command will validate given certificate in kdb file
ikeycmd -cert -validate -label "Certificate name we need to validate in KDB file" -db keystore.kdb -pw "password of kdb file"
6) Below command will display the default certificate in kdb file
ikeycmd -cert -getdefault -db keystore.kdb -pw "password of kdb file"
7) Below command will set the default certificate in kdb file. This will help to set default personal certificate if there are multiple certificates
ikeycmd -cert -setdefault -db keystore.kdb -label "personal certificate name in KDB file" -pw "password of kdb file"
8) Below command will import certificate into kdb file.
ikeycmd -cert -import -file "Certificate file" -pw "password of the certificate file" -type pkcs12 -label "personal certificate name to be in KDB file"
-target_pw "password of kdb file" -target_type CMS
9) Below command will help to delete certificate from kdb file.
ikeycmd -cert -delete -label "Certificate name we need to delete from KDB file" -db keystore.kdb -pw "password of kdb file"
10) Below command will display expiry of ca certificate from kdb file
ikeycmd -cert -list ca -db keystore.kdb -pw "password of kdb file" -expiry
11) Below command will add the certificate to the exisitng kdb file
ikeycmd -cert -add -file "Filename.crt" -db keystore.kdb -pw "password of kdb file"
No comments:
Post a Comment