diff options
Diffstat (limited to '')
-rw-r--r-- | tests/cert-tests/templates/template-nc.tmpl | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/tests/cert-tests/templates/template-nc.tmpl b/tests/cert-tests/templates/template-nc.tmpl new file mode 100644 index 0000000..bcc5f41 --- /dev/null +++ b/tests/cert-tests/templates/template-nc.tmpl @@ -0,0 +1,87 @@ +# X.509 Certificate options +# +# DN options + +dn = "2.5.4.9=Arkadias,surName=Mavrogiannopoulos,C=GR,st=Attiki,cn=Nik" + +# The serial number of the certificate +serial = 7 + +# In how many days, counting from today, this certificate will expire. +expiration_days = 2590 + +# X.509 v3 extensions + +# A dnsname in case of a WWW server. +dns_name = "www.none.org" +dns_name = "www.morethanone.org" + +# An IP address in case of a server. +#ip_address = "192.168.1.1" + +dns_name = "www.evenmorethanone.org" + +# An email in case of a person +email = "none@none.org" + +# An URL that has CRLs (certificate revocation lists) +# available. Needed in CA certificates. +crl_dist_points = "http://www.getcrl.crl/getcrl/" + +email = "where@none.org" + +# Whether this is a CA certificate or not +ca + +# Whether this certificate will be used for a TLS client +#tls_www_client + +# Whether this certificate will be used for a TLS server +#tls_www_server + +# Whether this certificate will be used to sign data (needed +# in TLS DHE ciphersuites). +signing_key + +# Whether this certificate will be used to encrypt data (needed +# in TLS RSA ciphersuites). Note that it is preferred to use different +# keys for encryption and signing. +#encryption_key + +nc_permit_dns = example.com +nc_exclude_dns = net +nc_exclude_dns = org + +#empty DNS means that subordinates cannot sign certs with DNS names +nc_exclude_dns = '' + +nc_permit_email = nmav@example.com +nc_exclude_email = example.net +nc_exclude_email = example.li + +nc_permit_ip = 192.168.5.0/24 +nc_permit_ip = 10.10.10.0/16 +nc_permit_ip = 172.23.122.0/23 +nc_exclude_ip = 10.10.100.0/24 +nc_exclude_ip = 10.10.101.5/24 + +nc_permit_ip = fc4c:fe8f:7ffa:18bd::/64 +nc_exclude_ip = fc4c:fe8f:7ffa:18bd:72c8:64b9::/96 + +# Whether this key will be used to sign other certificates. +cert_signing_key + +# Whether this key will be used to sign CRLs. +#crl_signing_key + +# Whether this key will be used to sign code. +#code_signing_key + +# Whether this key will be used to sign OCSP data. +ocsp_signing_key + +# Whether this key will be used for time stamping. +#time_stamping_key + +# Whether this key will be used for IPsec IKE operations. +#ipsec_ike_key |