2022-12-12 22:19:37 +01:00
|
|
|
#!/bin/sh
|
2012-09-02 16:15:49 +02:00
|
|
|
|
2018-11-19 15:56:42 +01: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
|
|
|
|
|
2018-11-19 15:56:42 +01:00
|
|
|
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
|