Initial commit
This commit is contained in:
commit
a71491c068
13 changed files with 1470 additions and 0 deletions
7
mkcacert.sh
Normal file
7
mkcacert.sh
Normal 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'
|
||||
Loading…
Add table
Add a link
Reference in a new issue