2019-10-19 15:22:21 +02:00
|
|
|
#!/usr/bin/env sh
|
2012-09-02 16:15:49 +02:00
|
|
|
|
2018-11-19 15:56:42 +01: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
|
|
|
|
|
2018-11-19 15:56:42 +01:00
|
|
|
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
|