Jan Dittberner
5c3f0ea942
This commit adds a simple go backend calling openssl ca to sign CRS coming from the client. The JavaScript code in src/index.html has been extended to send requests to the sign endpoint and display the resulting certificate in a separate div element. A script setup_example_ca.sh and an openssl configuration file ca.cnf has been added to allow quick setup of a simple example CA.
31 lines
822 B
INI
31 lines
822 B
INI
extensions = v3_ext
|
|
|
|
[ca]
|
|
default_ca = EXAMPLECA
|
|
|
|
[EXAMPLECA]
|
|
dir = ./exampleca
|
|
certs = $dir/certs
|
|
crl_dir = $dir/crl
|
|
database = $dir/index.txt
|
|
new_certs_dir = $dir/newcerts
|
|
serial = $dir/serial
|
|
crl = $dir/crl.pem
|
|
certificate = $dir/ca.crt.pem
|
|
serial = $dir/serial
|
|
crl = $dir/crl.pem
|
|
private_key = $dir/private/ca.key.pem
|
|
RANDFILE = $dir/private/.rand
|
|
unique_subject = no
|
|
email_in_dn = no
|
|
default_md = sha256
|
|
|
|
[policy_match]
|
|
commonName = supplied
|
|
|
|
[client_ext]
|
|
basicConstraints = critical,CA:false
|
|
keyUsage = keyEncipherment,digitalSignature,nonRepudiation
|
|
extendedKeyUsage = clientAuth,emailProtection
|
|
subjectKeyIdentifier = hash
|
|
authorityKeyIdentifier = keyid:always,issuer:always
|