1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/bin/sh
# Adapted from:
# http://nodejs.org/api/tls.html
# https://github.com/joyent/node/blob/master/test/fixtures/keys/Makefile
# Create a private key
openssl genrsa -out localhost.key 2048
# Create a certificate signing request
openssl req -new -sha256 -key localhost.key -out localhost.csr -config localhost.cnf -days 1095
# Use the CSR and the CA key (previously generated) to create a certificate
openssl x509 -req \
-in localhost.csr \
-CA ca.crt \
-CAkey ca.key \
-set_serial 0x`cat ca.srl` \
-passin 'pass:password' \
-out localhost.crt \
-days 1095
|