big svn cleanup
[anytun.git] / src / openvpn / easy-rsa / 2.0 / openssl.cnf
bloba781dda230f34204d3901a7c449e2f134cc34787
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
9 # defined.
10 HOME                    = .
11 RANDFILE                = $ENV::HOME/.rnd
12 openssl_conf            = openssl_init
14 [ 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:
23 # extensions            = 
24 # (Alternatively, use a configuration file that has only
25 # X.509v3 extensions in its main [= default] section.)
27 [ new_oids ]
29 # We can add new OIDs in here for use by 'ca' and 'req'.
30 # Add a simple OID like this:
31 # testoid1=1.2.3.4
32 # Or use config file substitution like this:
33 # testoid2=${testoid1}.5.6
35 ####################################################################
36 [ ca ]
37 default_ca      = CA_default            # The default ca section
39 ####################################################################
40 [ CA_default ]
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
70 # For the CA policy
71 [ policy_match ]
72 countryName             = match
73 stateOrProvinceName     = match
74 organizationName        = match
75 organizationalUnitName  = optional
76 commonName              = supplied
77 emailAddress            = optional
79 # For the 'anything' policy
80 # At this point in time, you must list all acceptable 'object'
81 # types.
82 [ policy_anything ]
83 countryName             = optional
84 stateOrProvinceName     = optional
85 localityName            = optional
86 organizationName        = optional
87 organizationalUnitName  = optional
88 commonName              = supplied
89 emailAddress            = optional
91 ####################################################################
92 [ req ]
93 default_bits            = $ENV::KEY_SIZE
94 default_keyfile         = privkey.pem
95 distinguished_name      = req_distinguished_name
96 attributes              = req_attributes
97 x509_extensions = v3_ca # The extentions to add to the self signed cert
99 # Passwords for private keys if not present they will be prompted for
100 # input_password = secret
101 # output_password = secret
103 # This sets a mask for permitted string types. There are several options. 
104 # default: PrintableString, T61String, BMPString.
105 # pkix   : PrintableString, BMPString.
106 # utf8only: only UTF8Strings.
107 # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
108 # MASK:XXXX a literal mask value.
109 # WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings
110 # so use this option with caution!
111 string_mask = nombstr
113 # req_extensions = v3_req # The extensions to add to a certificate request
115 [ req_distinguished_name ]
116 countryName                     = Country Name (2 letter code)
117 countryName_default             = $ENV::KEY_COUNTRY
118 countryName_min                 = 2
119 countryName_max                 = 2
121 stateOrProvinceName             = State or Province Name (full name)
122 stateOrProvinceName_default     = $ENV::KEY_PROVINCE
124 localityName                    = Locality Name (eg, city)
125 localityName_default            = $ENV::KEY_CITY
127 0.organizationName              = Organization Name (eg, company)
128 0.organizationName_default      = $ENV::KEY_ORG
130 # we can do this but it is not needed normally :-)
131 #1.organizationName             = Second Organization Name (eg, company)
132 #1.organizationName_default     = World Wide Web Pty Ltd
134 organizationalUnitName          = Organizational Unit Name (eg, section)
135 #organizationalUnitName_default =
137 commonName                      = Common Name (eg, your name or your server\'s hostname)
138 commonName_max                  = 64
140 emailAddress                    = Email Address
141 emailAddress_default            = $ENV::KEY_EMAIL
142 emailAddress_max                = 40
144 # JY -- added for batch mode
145 organizationalUnitName_default = $ENV::KEY_OU
146 commonName_default = $ENV::KEY_CN
148 # SET-ex3                       = SET extension number 3
150 [ req_attributes ]
151 challengePassword               = A challenge password
152 challengePassword_min           = 4
153 challengePassword_max           = 20
155 unstructuredName                = An optional company name
157 [ usr_cert ]
159 # These extensions are added when 'ca' signs a request.
161 # This goes against PKIX guidelines but some CAs do it and some software
162 # requires this to avoid interpreting an end user certificate as a CA.
164 basicConstraints=CA:FALSE
166 # Here are some examples of the usage of nsCertType. If it is omitted
167 # the certificate can be used for anything *except* object signing.
169 # This is OK for an SSL server.
170 # nsCertType                    = server
172 # For an object signing certificate this would be used.
173 # nsCertType = objsign
175 # For normal client use this is typical
176 # nsCertType = client, email
178 # and for everything including object signing:
179 # nsCertType = client, email, objsign
181 # This is typical in keyUsage for a client certificate.
182 # keyUsage = nonRepudiation, digitalSignature, keyEncipherment
184 # This will be displayed in Netscape's comment listbox.
185 nsComment                       = "Easy-RSA Generated Certificate"
187 # PKIX recommendations harmless if included in all certificates.
188 subjectKeyIdentifier=hash
189 authorityKeyIdentifier=keyid,issuer:always
190 extendedKeyUsage=clientAuth
191 keyUsage = digitalSignature
193 # This stuff is for subjectAltName and issuerAltname.
194 # Import the email address.
195 # subjectAltName=email:copy
197 # Copy subject details
198 # issuerAltName=issuer:copy
200 #nsCaRevocationUrl              = http://www.domain.dom/ca-crl.pem
201 #nsBaseUrl
202 #nsRevocationUrl
203 #nsRenewalUrl
204 #nsCaPolicyUrl
205 #nsSslServerName
207 [ server ]
209 # JY ADDED -- Make a cert with nsCertType set to "server"
210 basicConstraints=CA:FALSE
211 nsCertType                      = server
212 nsComment                       = "Easy-RSA Generated Server Certificate"
213 subjectKeyIdentifier=hash
214 authorityKeyIdentifier=keyid,issuer:always
215 extendedKeyUsage=serverAuth
216 keyUsage = digitalSignature, keyEncipherment
218 [ v3_req ]
220 # Extensions to add to a certificate request
222 basicConstraints = CA:FALSE
223 keyUsage = nonRepudiation, digitalSignature, keyEncipherment
225 [ v3_ca ]
228 # Extensions for a typical CA
231 # PKIX recommendation.
233 subjectKeyIdentifier=hash
235 authorityKeyIdentifier=keyid:always,issuer:always
237 # This is what PKIX recommends but some broken software chokes on critical
238 # extensions.
239 #basicConstraints = critical,CA:true
240 # So we do this instead.
241 basicConstraints = CA:true
243 # Key usage: this is typical for a CA certificate. However since it will
244 # prevent it being used as an test self-signed certificate it is best
245 # left out by default.
246 # keyUsage = cRLSign, keyCertSign
248 # Some might want this also
249 # nsCertType = sslCA, emailCA
251 # Include email address in subject alt name: another PKIX recommendation
252 # subjectAltName=email:copy
253 # Copy issuer details
254 # issuerAltName=issuer:copy
256 # DER hex encoding of an extension: beware experts only!
257 # obj=DER:02:03
258 # Where 'obj' is a standard or added object
259 # You can even override a supported extension:
260 # basicConstraints= critical, DER:30:03:01:01:FF
262 [ crl_ext ]
264 # CRL extensions.
265 # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
267 # issuerAltName=issuer:copy
268 authorityKeyIdentifier=keyid:always,issuer:always
270 [ engine_section ]
272 # If you are using PKCS#11
273 # Install engine_pkcs11 of opensc (www.opensc.org)
274 # And uncomment the following
275 # verify that dynamic_path points to the correct location
277 #pkcs11 = pkcs11_section
279 [ pkcs11_section ]
280 engine_id = pkcs11
281 dynamic_path = /usr/lib/engines/engine_pkcs11.so
282 MODULE_PATH = $ENV::PKCS11_MODULE_PATH
283 PIN = $ENV::PKCS11_PIN
284 init = 0