mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 16:48:35 +00:00
6 lines
214 B
Bash
6 lines
214 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Create Root key
|
||
|
openssl genrsa -out rootCA.key 4096
|
||
|
# Create and Sign the Root CA Certificate
|
||
|
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 1024 -out rootCA.crt -config san.cnf
|