1
# For use with easy-rsa version 2.0
4
# OpenSSL example configuration file.
5
# This is mostly being used for generation of certificate requests.
8
# This definition stops the following lines choking if HOME isn't
11
RANDFILE = $ENV::HOME/.rnd
12
openssl_conf = openssl_init
15
# Extra OBJECT IDENTIFIER info:
16
#oid_file = $ENV::HOME/.oid
17
oid_section = new_oids
18
engines = engine_section
20
# To use this configuration file with the "-extfile" option of the
21
# "openssl x509" utility, name here the section containing the
22
# X.509v3 extensions to use:
24
# (Alternatively, use a configuration file that has only
25
# X.509v3 extensions in its main [= default] section.)
29
# We can add new OIDs in here for use by 'ca' and 'req'.
30
# Add a simple OID like this:
32
# Or use config file substitution like this:
33
# testoid2=${testoid1}.5.6
35
####################################################################
37
default_ca = CA_default # The default ca section
39
####################################################################
42
dir = $ENV::KEY_DIR # Where everything is kept
43
certs = $dir # Where the issued certs are kept
44
crl_dir = $dir # Where the issued crl are kept
45
database = $dir/index.txt # database index file.
46
new_certs_dir = $dir # default place for new certs.
48
certificate = $dir/ca.crt # The CA certificate
49
serial = $dir/serial # The current serial number
50
crl = $dir/crl.pem # The current CRL
51
private_key = $dir/ca.key # The private key
52
RANDFILE = $dir/.rand # private random number file
54
x509_extensions = usr_cert # The extentions to add to the cert
56
# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs
57
# so this is commented out by default to leave a V1 CRL.
58
# crl_extensions = crl_ext
60
default_days = 3650 # how long to certify for
61
default_crl_days= 30 # how long before next CRL
62
default_md = md5 # which md to use.
63
preserve = no # keep passed DN ordering
65
# A few difference way of specifying how similar the request should look
66
# For type CA, the listed attributes must be the same, and the optional
67
# and supplied fields are just that :-)
68
policy = policy_anything
73
stateOrProvinceName = match
74
organizationName = match
75
organizationalUnitName = optional
78
emailAddress = optional
80
# For the 'anything' policy
81
# At this point in time, you must list all acceptable 'object'
84
countryName = optional
85
stateOrProvinceName = optional
86
localityName = optional
87
organizationName = optional
88
organizationalUnitName = optional
91
emailAddress = optional
93
####################################################################
95
default_bits = $ENV::KEY_SIZE
96
default_keyfile = privkey.pem
97
distinguished_name = req_distinguished_name
98
attributes = req_attributes
99
x509_extensions = v3_ca # The extentions to add to the self signed cert
101
# Passwords for private keys if not present they will be prompted for
102
# input_password = secret
103
# output_password = secret
105
# This sets a mask for permitted string types. There are several options.
106
# default: PrintableString, T61String, BMPString.
107
# pkix : PrintableString, BMPString.
108
# utf8only: only UTF8Strings.
109
# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
110
# MASK:XXXX a literal mask value.
111
# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings
112
# so use this option with caution!
113
string_mask = nombstr
115
# req_extensions = v3_req # The extensions to add to a certificate request
117
[ req_distinguished_name ]
118
countryName = Country Name (2 letter code)
119
countryName_default = $ENV::KEY_COUNTRY
123
stateOrProvinceName = State or Province Name (full name)
124
stateOrProvinceName_default = $ENV::KEY_PROVINCE
126
localityName = Locality Name (eg, city)
127
localityName_default = $ENV::KEY_CITY
129
0.organizationName = Organization Name (eg, company)
130
0.organizationName_default = $ENV::KEY_ORG
132
# we can do this but it is not needed normally :-)
133
#1.organizationName = Second Organization Name (eg, company)
134
#1.organizationName_default = World Wide Web Pty Ltd
136
organizationalUnitName = Organizational Unit Name (eg, section)
137
#organizationalUnitName_default =
139
commonName = Common Name (eg, your name or your server\'s hostname)
145
emailAddress = Email Address
146
emailAddress_default = $ENV::KEY_EMAIL
147
emailAddress_max = 40
149
# JY -- added for batch mode
150
organizationalUnitName_default = $ENV::KEY_OU
151
commonName_default = $ENV::KEY_CN
152
name_default = $ENV::KEY_NAME
154
# SET-ex3 = SET extension number 3
157
challengePassword = A challenge password
158
challengePassword_min = 4
159
challengePassword_max = 20
161
unstructuredName = An optional company name
165
# These extensions are added when 'ca' signs a request.
167
# This goes against PKIX guidelines but some CAs do it and some software
168
# requires this to avoid interpreting an end user certificate as a CA.
170
basicConstraints=CA:FALSE
172
# Here are some examples of the usage of nsCertType. If it is omitted
173
# the certificate can be used for anything *except* object signing.
175
# This is OK for an SSL server.
176
# nsCertType = server
178
# For an object signing certificate this would be used.
179
# nsCertType = objsign
181
# For normal client use this is typical
182
# nsCertType = client, email
184
# and for everything including object signing:
185
# nsCertType = client, email, objsign
187
# This is typical in keyUsage for a client certificate.
188
# keyUsage = nonRepudiation, digitalSignature, keyEncipherment
190
# This will be displayed in Netscape's comment listbox.
191
nsComment = "Easy-RSA Generated Certificate"
193
# PKIX recommendations harmless if included in all certificates.
194
subjectKeyIdentifier=hash
195
authorityKeyIdentifier=keyid,issuer:always
196
extendedKeyUsage=clientAuth
197
keyUsage = digitalSignature
199
# This stuff is for subjectAltName and issuerAltname.
200
# Import the email address.
201
# subjectAltName=email:copy
203
# Copy subject details
204
# issuerAltName=issuer:copy
206
#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
215
# JY ADDED -- Make a cert with nsCertType set to "server"
216
basicConstraints=CA:FALSE
218
nsComment = "Easy-RSA Generated Server Certificate"
219
subjectKeyIdentifier=hash
220
authorityKeyIdentifier=keyid,issuer:always
221
extendedKeyUsage=serverAuth
222
keyUsage = digitalSignature, keyEncipherment
226
# Extensions to add to a certificate request
228
basicConstraints = CA:FALSE
229
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
234
# Extensions for a typical CA
237
# PKIX recommendation.
239
subjectKeyIdentifier=hash
241
authorityKeyIdentifier=keyid:always,issuer:always
243
# This is what PKIX recommends but some broken software chokes on critical
245
#basicConstraints = critical,CA:true
246
# So we do this instead.
247
basicConstraints = CA:true
249
# Key usage: this is typical for a CA certificate. However since it will
250
# prevent it being used as an test self-signed certificate it is best
251
# left out by default.
252
# keyUsage = cRLSign, keyCertSign
254
# Some might want this also
255
# nsCertType = sslCA, emailCA
257
# Include email address in subject alt name: another PKIX recommendation
258
# subjectAltName=email:copy
259
# Copy issuer details
260
# issuerAltName=issuer:copy
262
# DER hex encoding of an extension: beware experts only!
264
# Where 'obj' is a standard or added object
265
# You can even override a supported extension:
266
# basicConstraints= critical, DER:30:03:01:01:FF
271
# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
273
# issuerAltName=issuer:copy
274
authorityKeyIdentifier=keyid:always,issuer:always
278
# If you are using PKCS#11
279
# Install engine_pkcs11 of opensc (www.opensc.org)
280
# And uncomment the following
281
# verify that dynamic_path points to the correct location
283
#pkcs11 = pkcs11_section
287
dynamic_path = /usr/lib/engines/engine_pkcs11.so
288
MODULE_PATH = $ENV::PKCS11_MODULE_PATH
289
PIN = $ENV::PKCS11_PIN