luasec/samples/certs/clientA.sh

13 lines
427 B
Bash
Raw Normal View History

2019-10-19 15:22:21 +02:00
#!/usr/bin/env sh
2012-09-02 16:15:49 +02:00
openssl req -newkey rsa:2048 -sha256 -keyout clientAkey.pem -out clientAreq.pem \
2012-09-02 16:15:49 +02:00
-nodes -config ./clientA.cnf -days 365 -batch
openssl x509 -req -in clientAreq.pem -sha256 -extfile ./clientA.cnf \
2012-09-02 16:15:49 +02:00
-extensions usr_cert -CA rootA.pem -CAkey rootAkey.pem -CAcreateserial \
-out clientAcert.pem -days 365
cat clientAcert.pem rootA.pem > clientA.pem
openssl x509 -subject -issuer -noout -in clientA.pem