Changes between Version 2 and Version 3 of dev/tls


Ignore:
Timestamp:
Oct 27, 2021 2:50:17 PM (3 years ago)
Author:
jonathan
Comment:

Refinement

Legend:

Unmodified
Added
Removed
Modified
  • dev/tls

    v2 v3  
    2222openssl req -x509 -new -nodes -key my.key -sha256 -days 1024 -out my.pem
    2323}}}
     24(without the prompts)
     25{{{#!sh
     26openssl req -x509 -new -nodes -key my.key -sha256 -days 1024 -out my.pem -subj '/C=CA/ST=British Columbia/L=Vancouver/O=extollIT Enterprises/OU=Gauss Projects/CN=Minecraft JMX/emailAddress=support@extollit.com'
     27}}}
    2428
    2529Now create a PKCS12 store from the PKI pair (private key + public cert):
     
    3135Import the PKCS12 store into a local JKS:
    3236{{{#!sh
    33 keytool -importkeystore -destkeystore my.jks -srckeystore my.p12 -srcstoretype pkcs12 -alias my-side
     37keytool -importkeystore -destkeystore my.jks -srckeystore my.p12 -srcstoretype pkcs12 -alias my-side -deststoretype pkcs12
    3438}}}
    3539