luasec/samples/certs/clientB.sh

13 lines
419 B
Bash
Raw Normal View History

#!/bin/sh
2012-09-02 16:15:49 +02:00
openssl req -newkey rsa:2048 -sha256 -keyout clientBkey.pem -out clientBreq.pem \
2012-09-02 16:15:49 +02:00
-nodes -config ./clientB.cnf -days 365 -batch
openssl x509 -req -in clientBreq.pem -sha256 -extfile ./clientB.cnf \
2012-09-02 16:15:49 +02:00
-extensions usr_cert -CA rootB.pem -CAkey rootBkey.pem -CAcreateserial \
-out clientBcert.pem -days 365
cat clientBcert.pem rootB.pem > clientB.pem
openssl x509 -subject -issuer -noout -in clientB.pem