| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | ##================================================================##============== Example OpenSSL configuration file ==============##================================================================#  References:##  /etc/ssl/openssl.conf#  http://www.openssl.org/docs/apps/config.html#  http://www.openssl.org/docs/apps/x509v3_config.html[ ca ]default_ca              = my_ca[ my_ca ]certificate             = test-ca.crtprivate_key             = test-ca.keydatabase                = indexserial                  = serialnew_certs_dir           = newcertsdefault_crl_days        = 5default_days            = 3653default_md              = sha1policy                  = my_policyx509_extensions         = v3_usr[ my_policy ]countryName             = suppliedorganizationName        = matchcommonName              = supplied[ req ]distinguished_name      = my_req_dnx509_extensions         = v3_caprompt			= no[ v3_ca ]basicConstraints        = CA:TRUEsubjectKeyIdentifier    = hashauthorityKeyIdentifier  = keyid:always,issuer:always[ v3_usr ]basicConstraints        = CA:FALSEsubjectKeyIdentifier    = hashauthorityKeyIdentifier  = keyid,issuer[ my_req_dn ]C=NLO=PolarSSL
 |