blob: 7d1a8bb6e7f06b7abf6df53dca4e3170b7fdd2f6 [file] [log] [blame]
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001#
Ralf S. Engelschall06d5b161999-01-02 12:59:33 +00002# OpenSSL example configuration file.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003# This is mostly being used for generation of certificate requests.
4#
5
Tomas Mrazb524b802018-02-27 13:55:35 +01006# Note that you can include other files from the main configuration
7# file using the .include directive.
8#.include filename
9
Dr. Stephen Henson36217a91999-12-24 23:53:57 +000010# This definition stops the following lines choking if HOME isn't
11# defined.
12HOME = .
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000013RANDFILE = $ENV::HOME/.rnd
Dr. Stephen Henson20432ea2000-01-01 16:42:49 +000014
15# Extra OBJECT IDENTIFIER info:
16#oid_file = $ENV::HOME/.oid
Dr. Stephen Hensona43aa731999-02-23 00:07:46 +000017oid_section = new_oids
18
Bodo Möller3f45ed81999-05-17 08:28:37 +000019# To use this configuration file with the "-extfile" option of the
Bodo Möllere186bf91999-05-16 12:17:20 +000020# "openssl x509" utility, name here the section containing the
21# X.509v3 extensions to use:
22# extensions =
23# (Alternatively, use a configuration file that has only
24# X.509v3 extensions in its main [= default] section.)
25
Dr. Stephen Hensona43aa731999-02-23 00:07:46 +000026[ new_oids ]
27
Ulf Möllerc7235be2006-02-12 23:11:56 +000028# We can add new OIDs in here for use by 'ca', 'req' and 'ts'.
Dr. Stephen Hensona43aa731999-02-23 00:07:46 +000029# Add a simple OID like this:
30# testoid1=1.2.3.4
31# Or use config file substitution like this:
32# testoid2=${testoid1}.5.6
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000033
Ulf Möllerc7235be2006-02-12 23:11:56 +000034# Policies used by the TSA examples.
35tsa_policy1 = 1.2.3.4.1
36tsa_policy2 = 1.2.3.4.5.6
37tsa_policy3 = 1.2.3.4.5.7
38
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000039####################################################################
40[ ca ]
41default_ca = CA_default # The default ca section
42
43####################################################################
44[ CA_default ]
45
46dir = ./demoCA # Where everything is kept
47certs = $dir/certs # Where the issued certs are kept
48crl_dir = $dir/crl # Where the issued crl are kept
49database = $dir/index.txt # database index file.
Richard Levittef85b68c2003-04-03 16:33:03 +000050#unique_subject = no # Set to 'no' to allow creation of
Rich Salza5a31782014-07-02 23:18:39 -040051 # several certs with same subject.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000052new_certs_dir = $dir/newcerts # default place for new certs.
53
54certificate = $dir/cacert.pem # The CA certificate
55serial = $dir/serial # The current serial number
Richard Levittefd4ef692003-06-19 17:40:16 +000056crlnumber = $dir/crlnumber # the current crl number
57 # must be commented out to leave a V1 CRL
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000058crl = $dir/crl.pem # The current CRL
59private_key = $dir/private/cakey.pem# The private key
60RANDFILE = $dir/private/.rand # private random number file
61
Veres Lajos478b50c2013-06-13 00:22:32 +010062x509_extensions = usr_cert # The extensions to add to the cert
Dr. Stephen Henson257e2061999-05-19 23:54:58 +000063
Dr. Stephen Hensone890dcd2001-03-15 22:45:20 +000064# Comment out the following two lines for the "traditional"
65# (and highly broken) format.
66name_opt = ca_default # Subject Name options
67cert_opt = ca_default # Certificate field options
68
Dr. Stephen Henson791bd0c2001-03-16 02:04:17 +000069# Extension copying option: use with caution.
70# copy_extensions = copy
71
Dr. Stephen Henson257e2061999-05-19 23:54:58 +000072# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs
73# so this is commented out by default to leave a V1 CRL.
Richard Levittefd4ef692003-06-19 17:40:16 +000074# crlnumber must also be commented out to leave a V1 CRL.
Dr. Stephen Henson257e2061999-05-19 23:54:58 +000075# crl_extensions = crl_ext
76
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000077default_days = 365 # how long to certify for
78default_crl_days= 30 # how long before next CRL
Dr. Stephen Henson03919682006-05-07 17:09:39 +000079default_md = default # use public key default MD
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000080preserve = no # keep passed DN ordering
81
82# A few difference way of specifying how similar the request should look
83# For type CA, the listed attributes must be the same, and the optional
84# and supplied fields are just that :-)
85policy = policy_match
86
87# For the CA policy
88[ policy_match ]
89countryName = match
90stateOrProvinceName = match
91organizationName = match
92organizationalUnitName = optional
93commonName = supplied
94emailAddress = optional
95
96# For the 'anything' policy
97# At this point in time, you must list all acceptable 'object'
98# types.
99[ policy_anything ]
100countryName = optional
101stateOrProvinceName = optional
102localityName = optional
103organizationName = optional
104organizationalUnitName = optional
105commonName = supplied
106emailAddress = optional
107
108####################################################################
109[ req ]
Kurt Roeckx44e0c2b2014-09-08 17:14:36 -0400110default_bits = 2048
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000111default_keyfile = privkey.pem
112distinguished_name = req_distinguished_name
113attributes = req_attributes
Veres Lajos478b50c2013-06-13 00:22:32 +0100114x509_extensions = v3_ca # The extensions to add to the self signed cert
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000115
Dr. Stephen Henson36217a91999-12-24 23:53:57 +0000116# Passwords for private keys if not present they will be prompted for
117# input_password = secret
118# output_password = secret
119
Dr. Stephen Hensonb38f9f62000-01-06 01:26:48 +0000120# This sets a mask for permitted string types. There are several options.
Dr. Stephen Henson74400f71999-10-27 00:15:11 +0000121# default: PrintableString, T61String, BMPString.
Dr. Stephen Henson29b97632005-09-16 11:58:28 +0000122# pkix : PrintableString, BMPString (PKIX recommendation before 2004)
123# utf8only: only UTF8Strings (PKIX recommendation after 2004).
Dr. Stephen Hensonb38f9f62000-01-06 01:26:48 +0000124# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
Dr. Stephen Henson74400f71999-10-27 00:15:11 +0000125# MASK:XXXX a literal mask value.
Dr. Stephen Henson29b97632005-09-16 11:58:28 +0000126# WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings.
127string_mask = utf8only
Dr. Stephen Henson74400f71999-10-27 00:15:11 +0000128
Dr. Stephen Hensonc79b16e1999-08-25 16:59:26 +0000129# req_extensions = v3_req # The extensions to add to a certificate request
130
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000131[ req_distinguished_name ]
132countryName = Country Name (2 letter code)
133countryName_default = AU
134countryName_min = 2
135countryName_max = 2
136
137stateOrProvinceName = State or Province Name (full name)
138stateOrProvinceName_default = Some-State
139
140localityName = Locality Name (eg, city)
141
1420.organizationName = Organization Name (eg, company)
1430.organizationName_default = Internet Widgits Pty Ltd
144
145# we can do this but it is not needed normally :-)
146#1.organizationName = Second Organization Name (eg, company)
Ralf S. Engelschall06d5b161999-01-02 12:59:33 +0000147#1.organizationName_default = World Wide Web Pty Ltd
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000148
149organizationalUnitName = Organizational Unit Name (eg, section)
150#organizationalUnitName_default =
151
Dr. Stephen Hensondf0cdf42011-12-06 00:00:30 +0000152commonName = Common Name (e.g. server FQDN or YOUR name)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000153commonName_max = 64
154
155emailAddress = Email Address
Bodo Möllerd8c2ada2001-03-04 01:33:55 +0000156emailAddress_max = 64
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000157
Dr. Stephen Hensona43aa731999-02-23 00:07:46 +0000158# SET-ex3 = SET extension number 3
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000159
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000160[ req_attributes ]
161challengePassword = A challenge password
162challengePassword_min = 4
163challengePassword_max = 20
164
165unstructuredName = An optional company name
166
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000167[ usr_cert ]
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000168
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000169# These extensions are added when 'ca' signs a request.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000170
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000171# This goes against PKIX guidelines but some CAs do it and some software
172# requires this to avoid interpreting an end user certificate as a CA.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000173
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000174basicConstraints=CA:FALSE
175
176# Here are some examples of the usage of nsCertType. If it is omitted
177# the certificate can be used for anything *except* object signing.
178
179# This is OK for an SSL server.
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000180# nsCertType = server
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000181
182# For an object signing certificate this would be used.
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000183# nsCertType = objsign
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000184
185# For normal client use this is typical
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000186# nsCertType = client, email
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000187
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000188# and for everything including object signing:
189# nsCertType = client, email, objsign
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000190
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000191# This is typical in keyUsage for a client certificate.
192# keyUsage = nonRepudiation, digitalSignature, keyEncipherment
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000193
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000194# This will be displayed in Netscape's comment listbox.
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000195nsComment = "OpenSSL Generated Certificate"
Dr. Stephen Henson0be97471999-02-17 23:22:57 +0000196
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000197# PKIX recommendations harmless if included in all certificates.
Dr. Stephen Henson175b0941999-02-10 01:12:59 +0000198subjectKeyIdentifier=hash
Dr. Stephen Henson29b97632005-09-16 11:58:28 +0000199authorityKeyIdentifier=keyid,issuer
Dr. Stephen Henson0be97471999-02-17 23:22:57 +0000200
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000201# This stuff is for subjectAltName and issuerAltname.
Dr. Stephen Hensonaa066b91999-02-21 01:46:45 +0000202# Import the email address.
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000203# subjectAltName=email:copy
Richard Levitteed2e24d2001-04-11 13:04:20 +0000204# An alternative to produce certificates that aren't
205# deprecated according to PKIX.
206# subjectAltName=email:move
Dr. Stephen Hensonaa066b91999-02-21 01:46:45 +0000207
208# Copy subject details
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000209# issuerAltName=issuer:copy
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000210
211#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000212#nsBaseUrl
213#nsRevocationUrl
214#nsRenewalUrl
215#nsCaPolicyUrl
216#nsSslServerName
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000217
Ulf Möllerc7235be2006-02-12 23:11:56 +0000218# This is required for TSA certificates.
Dr. Stephen Henson54565832006-11-07 14:27:55 +0000219# extendedKeyUsage = critical,timeStamping
Ulf Möllerc7235be2006-02-12 23:11:56 +0000220
Dr. Stephen Hensonc79b16e1999-08-25 16:59:26 +0000221[ v3_req ]
222
223# Extensions to add to a certificate request
224
225basicConstraints = CA:FALSE
226keyUsage = nonRepudiation, digitalSignature, keyEncipherment
227
Ralf S. Engelschall5a97a0b1999-08-08 09:39:43 +0000228[ v3_ca ]
Dr. Stephen Hensonf317aa41999-01-25 01:09:21 +0000229
Dr. Stephen Hensonc79b16e1999-08-25 16:59:26 +0000230
Dr. Stephen Hensonf317aa41999-01-25 01:09:21 +0000231# Extensions for a typical CA
232
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000233
Dr. Stephen Henson175b0941999-02-10 01:12:59 +0000234# PKIX recommendation.
235
236subjectKeyIdentifier=hash
237
Dr. Stephen Henson06ddf8e2009-04-04 19:54:06 +0000238authorityKeyIdentifier=keyid:always,issuer
Dr. Stephen Henson0be97471999-02-17 23:22:57 +0000239
Rich Salza7be5752016-06-12 22:21:54 -0400240basicConstraints = critical,CA:true
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000241
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000242# Key usage: this is typical for a CA certificate. However since it will
243# prevent it being used as an test self-signed certificate it is best
244# left out by default.
245# keyUsage = cRLSign, keyCertSign
Dr. Stephen Hensonf317aa41999-01-25 01:09:21 +0000246
Dr. Stephen Hensonb2347661999-01-26 01:19:27 +0000247# Some might want this also
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000248# nsCertType = sslCA, emailCA
Dr. Stephen Henson388ff0b1999-02-14 16:48:22 +0000249
Dr. Stephen Hensonaa066b91999-02-21 01:46:45 +0000250# Include email address in subject alt name: another PKIX recommendation
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000251# subjectAltName=email:copy
Dr. Stephen Hensonaa066b91999-02-21 01:46:45 +0000252# Copy issuer details
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000253# issuerAltName=issuer:copy
Dr. Stephen Hensonaa066b91999-02-21 01:46:45 +0000254
Dr. Stephen Hensonc79b16e1999-08-25 16:59:26 +0000255# DER hex encoding of an extension: beware experts only!
256# obj=DER:02:03
257# Where 'obj' is a standard or added object
Dr. Stephen Henson388ff0b1999-02-14 16:48:22 +0000258# You can even override a supported extension:
Dr. Stephen Hensonc79b16e1999-08-25 16:59:26 +0000259# basicConstraints= critical, DER:30:03:01:01:FF
Dr. Stephen Henson1756d401999-03-06 19:33:29 +0000260
261[ crl_ext ]
262
263# CRL extensions.
264# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
265
Dr. Stephen Henson257e2061999-05-19 23:54:58 +0000266# issuerAltName=issuer:copy
Dr. Stephen Henson06ddf8e2009-04-04 19:54:06 +0000267authorityKeyIdentifier=keyid:always
Richard Levitte6951c232004-12-28 00:21:35 +0000268
269[ proxy_cert_ext ]
270# These extensions should be added when creating a proxy certificate
271
272# This goes against PKIX guidelines but some CAs do it and some software
273# requires this to avoid interpreting an end user certificate as a CA.
274
275basicConstraints=CA:FALSE
276
277# Here are some examples of the usage of nsCertType. If it is omitted
278# the certificate can be used for anything *except* object signing.
279
280# This is OK for an SSL server.
281# nsCertType = server
282
283# For an object signing certificate this would be used.
284# nsCertType = objsign
285
286# For normal client use this is typical
287# nsCertType = client, email
288
289# and for everything including object signing:
290# nsCertType = client, email, objsign
291
292# This is typical in keyUsage for a client certificate.
293# keyUsage = nonRepudiation, digitalSignature, keyEncipherment
294
295# This will be displayed in Netscape's comment listbox.
296nsComment = "OpenSSL Generated Certificate"
297
298# PKIX recommendations harmless if included in all certificates.
299subjectKeyIdentifier=hash
Dr. Stephen Henson06ddf8e2009-04-04 19:54:06 +0000300authorityKeyIdentifier=keyid,issuer
Richard Levitte6951c232004-12-28 00:21:35 +0000301
302# This stuff is for subjectAltName and issuerAltname.
303# Import the email address.
304# subjectAltName=email:copy
305# An alternative to produce certificates that aren't
306# deprecated according to PKIX.
307# subjectAltName=email:move
308
309# Copy subject details
310# issuerAltName=issuer:copy
311
312#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
313#nsBaseUrl
314#nsRevocationUrl
315#nsRenewalUrl
316#nsCaPolicyUrl
317#nsSslServerName
318
319# This really needs to be in place for it to be a proxy certificate.
320proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo
Ulf Möllerc7235be2006-02-12 23:11:56 +0000321
322####################################################################
323[ tsa ]
324
325default_tsa = tsa_config1 # the default TSA section
326
327[ tsa_config1 ]
328
329# These are used by the TSA reply generation only.
330dir = ./demoCA # TSA root directory
331serial = $dir/tsaserial # The current serial number (mandatory)
332crypto_device = builtin # OpenSSL engine to use for signing
333signer_cert = $dir/tsacert.pem # The TSA signing certificate
334 # (optional)
335certs = $dir/cacert.pem # Certificate chain to include in reply
336 # (optional)
337signer_key = $dir/private/tsakey.pem # The TSA private key (optional)
Dr. Stephen Henson2cc7acd2015-11-19 15:50:15 +0000338signer_digest = sha256 # Signing digest to use. (Optional)
Ulf Möllerc7235be2006-02-12 23:11:56 +0000339default_policy = tsa_policy1 # Policy if request did not specify it
340 # (optional)
341other_policies = tsa_policy2, tsa_policy3 # acceptable policies (optional)
Dr. Stephen Henson2cc7acd2015-11-19 15:50:15 +0000342digests = sha1, sha256, sha384, sha512 # Acceptable message digests (mandatory)
Ulf Möllerc7235be2006-02-12 23:11:56 +0000343accuracy = secs:1, millisecs:500, microsecs:100 # (optional)
344clock_precision_digits = 0 # number of digits after dot. (optional)
345ordering = yes # Is ordering defined for timestamps?
346 # (optional, default: no)
347tsa_name = yes # Must the TSA name be included in the reply?
348 # (optional, default: no)
349ess_cert_id_chain = no # Must the ESS cert id chain be included?
350 # (optional, default: no)
Marek Kleinf0ef20b2016-03-01 16:32:10 +0000351ess_cert_id_alg = sha1 # algorithm to compute certificate
352 # identifier (optional, default: sha1)