diff options
author | cvs2svn <admin@example.com> | 1999-10-10 21:32:03 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 1999-10-10 21:32:03 +0000 |
commit | 14e61fef302fbc25ab63e38bd35445637ca68139 (patch) | |
tree | dae5e50679bccd1ed8d7d4041fbb9f3d96bbc98c /src/lib/libssl/doc/openssl.cnf | |
parent | 3ef9529fbf0c1f8f1c9da1172e92ad3370d5fcfe (diff) | |
download | openbsd-OPENBSD_2_6_BASE.tar.gz openbsd-OPENBSD_2_6_BASE.tar.bz2 openbsd-OPENBSD_2_6_BASE.zip |
This commit was manufactured by cvs2git to create tag 'OPENBSD_2_6_BASE'.OPENBSD_2_6_BASE
Diffstat (limited to 'src/lib/libssl/doc/openssl.cnf')
-rw-r--r-- | src/lib/libssl/doc/openssl.cnf | 214 |
1 files changed, 0 insertions, 214 deletions
diff --git a/src/lib/libssl/doc/openssl.cnf b/src/lib/libssl/doc/openssl.cnf deleted file mode 100644 index d70dd25622..0000000000 --- a/src/lib/libssl/doc/openssl.cnf +++ /dev/null | |||
@@ -1,214 +0,0 @@ | |||
1 | # | ||
2 | # OpenSSL example configuration file. | ||
3 | # This is mostly being used for generation of certificate requests. | ||
4 | # | ||
5 | |||
6 | RANDFILE = $ENV::HOME/.rnd | ||
7 | oid_file = $ENV::HOME/.oid | ||
8 | oid_section = new_oids | ||
9 | |||
10 | # To use this configuration file with the "-extfile" option of the | ||
11 | # "openssl x509" utility, name here the section containing the | ||
12 | # X.509v3 extensions to use: | ||
13 | # extensions = | ||
14 | # (Alternatively, use a configuration file that has only | ||
15 | # X.509v3 extensions in its main [= default] section.) | ||
16 | |||
17 | [ new_oids ] | ||
18 | |||
19 | # We can add new OIDs in here for use by 'ca' and 'req'. | ||
20 | # Add a simple OID like this: | ||
21 | # testoid1=1.2.3.4 | ||
22 | # Or use config file substitution like this: | ||
23 | # testoid2=${testoid1}.5.6 | ||
24 | |||
25 | #################################################################### | ||
26 | [ ca ] | ||
27 | default_ca = CA_default # The default ca section | ||
28 | |||
29 | #################################################################### | ||
30 | [ CA_default ] | ||
31 | |||
32 | dir = ./demoCA # Where everything is kept | ||
33 | certs = $dir/certs # Where the issued certs are kept | ||
34 | crl_dir = $dir/crl # Where the issued crl are kept | ||
35 | database = $dir/index.txt # database index file. | ||
36 | new_certs_dir = $dir/newcerts # default place for new certs. | ||
37 | |||
38 | certificate = $dir/cacert.pem # The CA certificate | ||
39 | serial = $dir/serial # The current serial number | ||
40 | crl = $dir/crl.pem # The current CRL | ||
41 | private_key = $dir/private/cakey.pem# The private key | ||
42 | RANDFILE = $dir/private/.rand # private random number file | ||
43 | |||
44 | x509_extensions = usr_cert # The extentions to add to the cert | ||
45 | |||
46 | # Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs | ||
47 | # so this is commented out by default to leave a V1 CRL. | ||
48 | # crl_extensions = crl_ext | ||
49 | |||
50 | default_days = 365 # how long to certify for | ||
51 | default_crl_days= 30 # how long before next CRL | ||
52 | default_md = md5 # which md to use. | ||
53 | preserve = no # keep passed DN ordering | ||
54 | |||
55 | # A few difference way of specifying how similar the request should look | ||
56 | # For type CA, the listed attributes must be the same, and the optional | ||
57 | # and supplied fields are just that :-) | ||
58 | policy = policy_match | ||
59 | |||
60 | # For the CA policy | ||
61 | [ policy_match ] | ||
62 | countryName = match | ||
63 | stateOrProvinceName = match | ||
64 | organizationName = match | ||
65 | organizationalUnitName = optional | ||
66 | commonName = supplied | ||
67 | emailAddress = optional | ||
68 | |||
69 | # For the 'anything' policy | ||
70 | # At this point in time, you must list all acceptable 'object' | ||
71 | # types. | ||
72 | [ policy_anything ] | ||
73 | countryName = optional | ||
74 | stateOrProvinceName = optional | ||
75 | localityName = optional | ||
76 | organizationName = optional | ||
77 | organizationalUnitName = optional | ||
78 | commonName = supplied | ||
79 | emailAddress = optional | ||
80 | |||
81 | #################################################################### | ||
82 | [ req ] | ||
83 | default_bits = 1024 | ||
84 | default_keyfile = privkey.pem | ||
85 | distinguished_name = req_distinguished_name | ||
86 | attributes = req_attributes | ||
87 | x509_extensions = v3_ca # The extentions to add to the self signed cert | ||
88 | |||
89 | [ req_distinguished_name ] | ||
90 | countryName = Country Name (2 letter code) | ||
91 | countryName_default = AU | ||
92 | countryName_min = 2 | ||
93 | countryName_max = 2 | ||
94 | |||
95 | stateOrProvinceName = State or Province Name (full name) | ||
96 | stateOrProvinceName_default = Some-State | ||
97 | |||
98 | localityName = Locality Name (eg, city) | ||
99 | |||
100 | 0.organizationName = Organization Name (eg, company) | ||
101 | 0.organizationName_default = Internet Widgits Pty Ltd | ||
102 | |||
103 | # we can do this but it is not needed normally :-) | ||
104 | #1.organizationName = Second Organization Name (eg, company) | ||
105 | #1.organizationName_default = World Wide Web Pty Ltd | ||
106 | |||
107 | organizationalUnitName = Organizational Unit Name (eg, section) | ||
108 | #organizationalUnitName_default = | ||
109 | |||
110 | commonName = Common Name (eg, YOUR name) | ||
111 | commonName_max = 64 | ||
112 | |||
113 | emailAddress = Email Address | ||
114 | emailAddress_max = 40 | ||
115 | |||
116 | # SET-ex3 = SET extension number 3 | ||
117 | |||
118 | [ req_attributes ] | ||
119 | challengePassword = A challenge password | ||
120 | challengePassword_min = 4 | ||
121 | challengePassword_max = 20 | ||
122 | |||
123 | unstructuredName = An optional company name | ||
124 | |||
125 | [ usr_cert ] | ||
126 | |||
127 | # These extensions are added when 'ca' signs a request. | ||
128 | |||
129 | # This goes against PKIX guidelines but some CAs do it and some software | ||
130 | # requires this to avoid interpreting an end user certificate as a CA. | ||
131 | |||
132 | basicConstraints=CA:FALSE | ||
133 | |||
134 | # Here are some examples of the usage of nsCertType. If it is omitted | ||
135 | # the certificate can be used for anything *except* object signing. | ||
136 | |||
137 | # This is OK for an SSL server. | ||
138 | # nsCertType = server | ||
139 | |||
140 | # For an object signing certificate this would be used. | ||
141 | # nsCertType = objsign | ||
142 | |||
143 | # For normal client use this is typical | ||
144 | # nsCertType = client, email | ||
145 | |||
146 | # and for everything including object signing: | ||
147 | # nsCertType = client, email, objsign | ||
148 | |||
149 | # This is typical in keyUsage for a client certificate. | ||
150 | # keyUsage = nonRepudiation, digitalSignature, keyEncipherment | ||
151 | |||
152 | # This will be displayed in Netscape's comment listbox. | ||
153 | nsComment = "OpenSSL Generated Certificate" | ||
154 | |||
155 | # PKIX recommendations harmless if included in all certificates. | ||
156 | subjectKeyIdentifier=hash | ||
157 | authorityKeyIdentifier=keyid,issuer:always | ||
158 | |||
159 | # This stuff is for subjectAltName and issuerAltname. | ||
160 | # Import the email address. | ||
161 | # subjectAltName=email:copy | ||
162 | |||
163 | # Copy subject details | ||
164 | # issuerAltName=issuer:copy | ||
165 | |||
166 | #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem | ||
167 | #nsBaseUrl | ||
168 | #nsRevocationUrl | ||
169 | #nsRenewalUrl | ||
170 | #nsCaPolicyUrl | ||
171 | #nsSslServerName | ||
172 | |||
173 | [ v3_ca ] | ||
174 | |||
175 | # Extensions for a typical CA | ||
176 | |||
177 | |||
178 | # PKIX recommendation. | ||
179 | |||
180 | subjectKeyIdentifier=hash | ||
181 | |||
182 | authorityKeyIdentifier=keyid:always,issuer:always | ||
183 | |||
184 | # This is what PKIX recommends but some broken software chokes on critical | ||
185 | # extensions. | ||
186 | #basicConstraints = critical,CA:true | ||
187 | # So we do this instead. | ||
188 | basicConstraints = CA:true | ||
189 | |||
190 | # Key usage: this is typical for a CA certificate. However since it will | ||
191 | # prevent it being used as an test self-signed certificate it is best | ||
192 | # left out by default. | ||
193 | # keyUsage = cRLSign, keyCertSign | ||
194 | |||
195 | # Some might want this also | ||
196 | # nsCertType = sslCA, emailCA | ||
197 | |||
198 | # Include email address in subject alt name: another PKIX recommendation | ||
199 | # subjectAltName=email:copy | ||
200 | # Copy issuer details | ||
201 | # issuerAltName=issuer:copy | ||
202 | |||
203 | # RAW DER hex encoding of an extension: beware experts only! | ||
204 | # 1.2.3.5=RAW:02:03 | ||
205 | # You can even override a supported extension: | ||
206 | # basicConstraints= critical, RAW:30:03:01:01:FF | ||
207 | |||
208 | [ crl_ext ] | ||
209 | |||
210 | # CRL extensions. | ||
211 | # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL. | ||
212 | |||
213 | # issuerAltName=issuer:copy | ||
214 | authorityKeyIdentifier=keyid:always,issuer:always | ||