12345678910111213141516171819202122232425262728 |
- [ ca ]
- default_ca = CA_default
- [ CA_default ]
- serial = ca-serial
- crl = ca-crl.pem
- database = ca-database.txt
- name_opt = CA_default
- cert_opt = CA_default
- default_crl_days = 9999
- default_md = md5
- [ req ]
- default_bits = 2048
- days = 9999
- distinguished_name = req_distinguished_name
- attributes = req_attributes
- prompt = no
- [ req_distinguished_name ]
- C = SE
- ST = Stockholm
- L = Stockholm
- CN = ca
- emailAddress = ca@example.com
- [ req_attributes ]
- challengePassword = test
|