1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/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 client.key 2048
# Create a certificate signing request
openssl req -new -sha256 -key client.key -out client.csr -config client.cnf -days 1095
# Use the CSR and the CA key (previously generated) to create a certificate
openssl x509 -req \
-in client.csr \
-CA ca.crt \
-CAkey ca.key \
-set_serial 0x`cat ca.srl` \
-passin 'pass:password' \
-out client.crt \
-days 1095
# Encrypt with password
openssl rsa -aes128 -in client.key -out client-enc.key -passout 'pass:password'
|