When you are working with JAVA applications and JAVA based server, you may need to configure a Java key store (JKS) file. Self signed keystore can be easily created with keytool command. But if you have a private key and a CA signed certificate of it, You can not create a key store with just […]
Tag: Certificate
I have seen that most the cases, You may need to retrieve the X509 Certificate as <ds:X509Certificate> Data. <ds:X509Certificate> data can be seen in SOAP messages (SAML, WS-Security) that are passed the security information. You can easily retrieve X509Certificate data using java keytool command. If you want to retrieve X509Certificate data from key store file (JKS) keytool -export -keystore pathToKeystore -rfc […]