mirror of
https://github.com/brunoos/luasec.git
synced 2024-11-08 06:28:26 +01:00
8 lines
313 B
Bash
Executable File
8 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
|
|
openssl req -newkey rsa:2048 -sha256 -keyout rootBkey.pem -out rootBreq.pem -nodes -config ./rootB.cnf -days 365 -batch
|
|
|
|
openssl x509 -req -in rootBreq.pem -sha256 -extfile ./rootB.cnf -extensions v3_ca -signkey rootBkey.pem -out rootB.pem -days 365
|
|
|
|
openssl x509 -subject -issuer -noout -in rootB.pem
|