Sha256: 4acb96ed43a2dbae72d4dc6e3a342db07f609600d42c15cc2b6500d014c07dd4
Contents?: true
Size: 631 Bytes
Versions: 20
Compression:
Stored size: 631 Bytes
Contents
Create Root CA Certificate ========================== Create the private key. openssl genrsa -des3 -out ca.key 4096 Create the public key. openssl req -new -x509 -days 365 -key ca.key -out ca.crt Create and Sign Intermediate Certificate ======================================== Create the private key. openssl genrsa -des3 -out server.key 4096 Create a certificate request for signing by the Root CA. openssl req -new -key server.key -out server.csr Sign the request with the Root CA and make a public key. openssl x509 -req -days 365 -in server.csr -CA ca.crt -CAkey ca.key -set_serial 01 -out server.crt
Version data entries
20 entries across 20 versions & 1 rubygems