Differences between revisions 10 and 11
Revision 10 as of 2017-09-08 00:50:30
Size: 1405
Editor: PieterSmit
Comment:
Revision 11 as of 2017-09-08 00:50:58
Size: 1410
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
 * Links: [[Linux/OpenSSL]] , [[LetsEncrypt]] , [[https://www.digicert.com/dns-caa-rr-check.htm|DNS CAA Resource Record Check]]  * Links: [[Linux/OpenSSL]] , [[LetsEncrypt]] , [[https://www.digicert.com/dns-caa-rr-check.htm|2017-DNS CAA Resource Record Check]]

SSL + TLS + OPENssl

Java keytool

  • List keys
    •        keytool -list -v -keystore store.jks
  • Export java jks to p12
    •       keytool -importkeystore -srckeystore keystore.jks -destkeystore keystore.p12
      -deststoretype PKCS12 -srcalias <jkskeyalias> -deststorepass <password>
      -destkeypass <password>

openssl export only key or cert

  • Export certificate using openssl:
    •       openssl pkcs12 -in keystore.p12  -nokeys -out cert.pem
  • Export unencrypted private key:
    •       openssl pkcs12 -in keystore.p12  -nodes -nocerts -out key.pem

...


CategorySecurity

Security/ssl (last edited 2022-11-27 22:35:40 by PieterSmit)