mirror of
https://github.com/brunoos/luasec.git
synced 2024-11-08 06:28:26 +01:00
13 lines
427 B
Bash
Executable File
13 lines
427 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
openssl req -newkey rsa:2048 -sha256 -keyout clientBkey.pem -out clientBreq.pem \
|
|
-nodes -config ./clientB.cnf -days 365 -batch
|
|
|
|
openssl x509 -req -in clientBreq.pem -sha256 -extfile ./clientB.cnf \
|
|
-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
|