David Benjamin | 33b5692 | 2022-12-31 17:16:53 -0500 | [diff] [blame] | 1 | # |
| 2 | # SSLeay example configuration file. |
| 3 | # This is mostly being used for generation of certificate requests. |
| 4 | # |
| 5 | # create RSA certs - CA |
| 6 | |
| 7 | RANDFILE = ./.rnd |
| 8 | |
| 9 | #################################################################### |
| 10 | [ req ] |
| 11 | distinguished_name = req_distinguished_name |
| 12 | encrypt_key = no |
| 13 | |
| 14 | [ req_distinguished_name ] |
| 15 | countryName = Country Name (2 letter code) |
| 16 | countryName_default = ES |
| 17 | countryName_value = ES |
| 18 | |
| 19 | organizationName = Organization Name (eg, company) |
| 20 | organizationName_value = Hermanos Locos |
| 21 | |
| 22 | commonName = Common Name (eg, YOUR name) |
| 23 | commonName_value = Hermanos Locos CA |
| 24 | |