| OLD | NEW |
| (Empty) |
| 1 ID=1 | |
| 2 [req] | |
| 3 default_bits = 2048 | |
| 4 default_md = sha1 | |
| 5 string_mask = utf8only | |
| 6 prompt = no | |
| 7 encrypt_key = no | |
| 8 distinguished_name = ${ENV::DISTINGUISHED_NAME} | |
| 9 | |
| 10 [ca] | |
| 11 default_ca = ca_settings | |
| 12 | |
| 13 [ca_dn] | |
| 14 CN = Client Auth Test Root ${ENV::ID} | |
| 15 | |
| 16 [client_dn] | |
| 17 CN = Test Client | |
| 18 | |
| 19 [ca_settings] | |
| 20 database = out/${ENV::ID}-index.txt | |
| 21 new_certs_dir = out | |
| 22 default_md = sha1 | |
| 23 policy = policy_anything | |
| 24 serial = out/${ENV::ID}-serial | |
| 25 default_days = 3650 | |
| 26 | |
| 27 [policy_anything] | |
| 28 # Default signing policy | |
| 29 countryName = optional | |
| 30 stateOrProvinceName = optional | |
| 31 localityName = optional | |
| 32 organizationName = optional | |
| 33 organizationalUnitName = optional | |
| 34 commonName = optional | |
| 35 emailAddress = optional | |
| OLD | NEW |