Initial commit

This commit is contained in:
Pascal Engélibert 2025-11-05 14:28:26 +01:00
commit a71491c068
13 changed files with 1470 additions and 0 deletions

7
mkcacert.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/bash
# Generate CA secret key
openssl genrsa -aes256 -out ca.key -passout pass:foo 4096
# Generate CA certificate
openssl req -x509 -new -nodes -key certs/ca.key -sha256 -days 1826 -out certs/ca.crt -passin pass:foo -subj '/CN=MyOrg Root CA/C=AT/ST=Vienna/L=Vienna/O=MyOrg'