| OLD | NEW |
| 1 # | 1 # |
| 2 # SSLeay example configuration file. | 2 # SSLeay example configuration file. |
| 3 # This is mostly being used for generation of certificate requests. | 3 # This is mostly being used for generation of certificate requests. |
| 4 # | 4 # |
| 5 | 5 |
| 6 RANDFILE = ./.rnd | 6 RANDFILE = ./.rnd |
| 7 | 7 |
| 8 #################################################################### | 8 #################################################################### |
| 9 [ req ] | 9 [ req ] |
| 10 default_bits» » = 1024 | 10 default_bits» » = 512 |
| 11 default_keyfile = keySS.pem | 11 default_keyfile = keySS.pem |
| 12 distinguished_name = req_distinguished_name | 12 distinguished_name = req_distinguished_name |
| 13 encrypt_rsa_key = no | 13 encrypt_rsa_key = no |
| 14 default_md = sha1 | 14 default_md = sha1 |
| 15 | 15 |
| 16 [ req_distinguished_name ] | 16 [ req_distinguished_name ] |
| 17 countryName = Country Name (2 letter code) | 17 countryName = Country Name (2 letter code) |
| 18 countryName_default = AU | 18 countryName_default = AU |
| 19 countryName_value = AU | 19 countryName_value = AU |
| 20 | 20 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 emailAddress = optional | 67 emailAddress = optional |
| 68 | 68 |
| 69 | 69 |
| 70 | 70 |
| 71 [ v3_ca ] | 71 [ v3_ca ] |
| 72 subjectKeyIdentifier=hash | 72 subjectKeyIdentifier=hash |
| 73 authorityKeyIdentifier=keyid:always,issuer:always | 73 authorityKeyIdentifier=keyid:always,issuer:always |
| 74 basicConstraints = CA:true,pathlen:1 | 74 basicConstraints = CA:true,pathlen:1 |
| 75 keyUsage = cRLSign, keyCertSign | 75 keyUsage = cRLSign, keyCertSign |
| 76 issuerAltName=issuer:copy | 76 issuerAltName=issuer:copy |
| OLD | NEW |