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

Version Path
omf_web-1.2.9 debug/README
omf_web-1.2.8 debug/README
omf_web-1.2.7 debug/README
omf_web-1.2.6 debug/README
omf_web-1.2.5 debug/README
omf_web-1.2.4 debug/README
omf_web-1.2.3 debug/README
omf_web-1.2.2 debug/README
omf_web-1.2.1 debug/README
omf_web-1.2.0 debug/README
omf_web-1.0.0 debug/README
omf_web-0.9.9 debug/README
omf_web-0.9.8 debug/README
omf_web-0.9.7 debug/README
omf_web-0.9.6 debug/README
omf_web-0.9.5 debug/README
omf_web-0.9.4 debug/README
omf_web-0.9.3 debug/README
omf_web-0.9.1 debug/README
omf_web-0.9 debug/README