openssl-vms.cnf 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. #
  2. # OpenSSL example configuration file.
  3. # This is mostly being used for generation of certificate requests.
  4. #
  5. # This definition stops the following lines choking if HOME isn't
  6. # defined.
  7. HOME = .
  8. RANDFILE = $ENV::HOME/.rnd
  9. # Extra OBJECT IDENTIFIER info:
  10. #oid_file = $ENV::HOME/.oid
  11. oid_section = new_oids
  12. # To use this configuration file with the "-extfile" option of the
  13. # "openssl x509" utility, name here the section containing the
  14. # X.509v3 extensions to use:
  15. # extensions =
  16. # (Alternatively, use a configuration file that has only
  17. # X.509v3 extensions in its main [= default] section.)
  18. [ new_oids ]
  19. # We can add new OIDs in here for use by 'ca', 'req' and 'ts'.
  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. # Policies used by the TSA examples.
  25. tsa_policy1 = 1.2.3.4.1
  26. tsa_policy2 = 1.2.3.4.5.6
  27. tsa_policy3 = 1.2.3.4.5.7
  28. ####################################################################
  29. [ ca ]
  30. default_ca = CA_default # The default ca section
  31. ####################################################################
  32. [ CA_default ]
  33. dir = sys\$disk:[.demoCA # Where everything is kept
  34. certs = $dir.certs] # Where the issued certs are kept
  35. crl_dir = $dir.crl] # Where the issued crl are kept
  36. database = $dir]index.txt # database index file.
  37. #unique_subject = no # Set to 'no' to allow creation of
  38. # several ctificates with same subject.
  39. new_certs_dir = $dir.newcerts] # default place for new certs.
  40. certificate = $dir]cacert.pem # The CA certificate
  41. serial = $dir]serial. # The current serial number
  42. crlnumber = $dir]crlnumber. # the current crl number
  43. # must be commented out to leave a V1 CRL
  44. crl = $dir]crl.pem # The current CRL
  45. private_key = $dir.private]cakey.pem# The private key
  46. RANDFILE = $dir.private].rand # private random number file
  47. x509_extensions = usr_cert # The extentions to add to the cert
  48. # Comment out the following two lines for the "traditional"
  49. # (and highly broken) format.
  50. name_opt = ca_default # Subject Name options
  51. cert_opt = ca_default # Certificate field options
  52. # Extension copying option: use with caution.
  53. # copy_extensions = copy
  54. # Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs
  55. # so this is commented out by default to leave a V1 CRL.
  56. # crlnumber must also be commented out to leave a V1 CRL.
  57. # crl_extensions = crl_ext
  58. default_days = 365 # how long to certify for
  59. default_crl_days= 30 # how long before next CRL
  60. default_md = default # use public key default MD
  61. preserve = no # keep passed DN ordering
  62. # A few difference way of specifying how similar the request should look
  63. # For type CA, the listed attributes must be the same, and the optional
  64. # and supplied fields are just that :-)
  65. policy = policy_match
  66. # For the CA policy
  67. [ policy_match ]
  68. countryName = match
  69. stateOrProvinceName = match
  70. organizationName = match
  71. organizationalUnitName = optional
  72. commonName = supplied
  73. emailAddress = optional
  74. # For the 'anything' policy
  75. # At this point in time, you must list all acceptable 'object'
  76. # types.
  77. [ policy_anything ]
  78. countryName = optional
  79. stateOrProvinceName = optional
  80. localityName = optional
  81. organizationName = optional
  82. organizationalUnitName = optional
  83. commonName = supplied
  84. emailAddress = optional
  85. ####################################################################
  86. [ req ]
  87. default_bits = 1024
  88. default_keyfile = privkey.pem
  89. distinguished_name = req_distinguished_name
  90. attributes = req_attributes
  91. x509_extensions = v3_ca # The extentions to add to the self signed cert
  92. # Passwords for private keys if not present they will be prompted for
  93. # input_password = secret
  94. # output_password = secret
  95. # This sets a mask for permitted string types. There are several options.
  96. # default: PrintableString, T61String, BMPString.
  97. # pkix : PrintableString, BMPString (PKIX recommendation before 2004)
  98. # utf8only: only UTF8Strings (PKIX recommendation after 2004).
  99. # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
  100. # MASK:XXXX a literal mask value.
  101. # WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings.
  102. string_mask = utf8only
  103. # req_extensions = v3_req # The extensions to add to a certificate request
  104. [ req_distinguished_name ]
  105. countryName = Country Name (2 letter code)
  106. countryName_default = AU
  107. countryName_min = 2
  108. countryName_max = 2
  109. stateOrProvinceName = State or Province Name (full name)
  110. stateOrProvinceName_default = Some-State
  111. localityName = Locality Name (eg, city)
  112. 0.organizationName = Organization Name (eg, company)
  113. 0.organizationName_default = Internet Widgits Pty Ltd
  114. # we can do this but it is not needed normally :-)
  115. #1.organizationName = Second Organization Name (eg, company)
  116. #1.organizationName_default = World Wide Web Pty Ltd
  117. organizationalUnitName = Organizational Unit Name (eg, section)
  118. #organizationalUnitName_default =
  119. commonName = Common Name (eg, YOUR name)
  120. commonName_max = 64
  121. emailAddress = Email Address
  122. emailAddress_max = 64
  123. # SET-ex3 = SET extension number 3
  124. [ req_attributes ]
  125. challengePassword = A challenge password
  126. challengePassword_min = 4
  127. challengePassword_max = 20
  128. unstructuredName = An optional company name
  129. [ usr_cert ]
  130. # These extensions are added when 'ca' signs a request.
  131. # This goes against PKIX guidelines but some CAs do it and some software
  132. # requires this to avoid interpreting an end user certificate as a CA.
  133. basicConstraints=CA:FALSE
  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. # This is OK for an SSL server.
  137. # nsCertType = server
  138. # For an object signing certificate this would be used.
  139. # nsCertType = objsign
  140. # For normal client use this is typical
  141. # nsCertType = client, email
  142. # and for everything including object signing:
  143. # nsCertType = client, email, objsign
  144. # This is typical in keyUsage for a client certificate.
  145. # keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  146. # This will be displayed in Netscape's comment listbox.
  147. nsComment = "OpenSSL Generated Certificate"
  148. # PKIX recommendations harmless if included in all certificates.
  149. subjectKeyIdentifier=hash
  150. authorityKeyIdentifier=keyid,issuer
  151. # This stuff is for subjectAltName and issuerAltname.
  152. # Import the email address.
  153. # subjectAltName=email:copy
  154. # An alternative to produce certificates that aren't
  155. # deprecated according to PKIX.
  156. # subjectAltName=email:move
  157. # Copy subject details
  158. # issuerAltName=issuer:copy
  159. #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
  160. #nsBaseUrl
  161. #nsRevocationUrl
  162. #nsRenewalUrl
  163. #nsCaPolicyUrl
  164. #nsSslServerName
  165. # This is required for TSA certificates.
  166. # extendedKeyUsage = critical,timeStamping
  167. [ v3_req ]
  168. # Extensions to add to a certificate request
  169. basicConstraints = CA:FALSE
  170. keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  171. [ v3_ca ]
  172. # Extensions for a typical CA
  173. # PKIX recommendation.
  174. subjectKeyIdentifier=hash
  175. authorityKeyIdentifier=keyid:always,issuer
  176. # This is what PKIX recommends but some broken software chokes on critical
  177. # extensions.
  178. #basicConstraints = critical,CA:true
  179. # So we do this instead.
  180. basicConstraints = CA:true
  181. # Key usage: this is typical for a CA certificate. However since it will
  182. # prevent it being used as an test self-signed certificate it is best
  183. # left out by default.
  184. # keyUsage = cRLSign, keyCertSign
  185. # Some might want this also
  186. # nsCertType = sslCA, emailCA
  187. # Include email address in subject alt name: another PKIX recommendation
  188. # subjectAltName=email:copy
  189. # Copy issuer details
  190. # issuerAltName=issuer:copy
  191. # DER hex encoding of an extension: beware experts only!
  192. # obj=DER:02:03
  193. # Where 'obj' is a standard or added object
  194. # You can even override a supported extension:
  195. # basicConstraints= critical, DER:30:03:01:01:FF
  196. [ crl_ext ]
  197. # CRL extensions.
  198. # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
  199. # issuerAltName=issuer:copy
  200. authorityKeyIdentifier=keyid:always
  201. [ proxy_cert_ext ]
  202. # These extensions should be added when creating a proxy certificate
  203. # This goes against PKIX guidelines but some CAs do it and some software
  204. # requires this to avoid interpreting an end user certificate as a CA.
  205. basicConstraints=CA:FALSE
  206. # Here are some examples of the usage of nsCertType. If it is omitted
  207. # the certificate can be used for anything *except* object signing.
  208. # This is OK for an SSL server.
  209. # nsCertType = server
  210. # For an object signing certificate this would be used.
  211. # nsCertType = objsign
  212. # For normal client use this is typical
  213. # nsCertType = client, email
  214. # and for everything including object signing:
  215. # nsCertType = client, email, objsign
  216. # This is typical in keyUsage for a client certificate.
  217. # keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  218. # This will be displayed in Netscape's comment listbox.
  219. nsComment = "OpenSSL Generated Certificate"
  220. # PKIX recommendations harmless if included in all certificates.
  221. subjectKeyIdentifier=hash
  222. authorityKeyIdentifier=keyid,issuer
  223. # This stuff is for subjectAltName and issuerAltname.
  224. # Import the email address.
  225. # subjectAltName=email:copy
  226. # An alternative to produce certificates that aren't
  227. # deprecated according to PKIX.
  228. # subjectAltName=email:move
  229. # Copy subject details
  230. # issuerAltName=issuer:copy
  231. #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
  232. #nsBaseUrl
  233. #nsRevocationUrl
  234. #nsRenewalUrl
  235. #nsCaPolicyUrl
  236. #nsSslServerName
  237. # This really needs to be in place for it to be a proxy certificate.
  238. proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo
  239. ####################################################################
  240. [ tsa ]
  241. default_tsa = tsa_config1 # the default TSA section
  242. [ tsa_config1 ]
  243. # These are used by the TSA reply generation only.
  244. dir = sys\$disk:[.demoCA # TSA root directory
  245. serial = $dir]tsaserial. # The current serial number (mandatory)
  246. crypto_device = builtin # OpenSSL engine to use for signing
  247. signer_cert = $dir/tsacert.pem # The TSA signing certificate
  248. # (optional)
  249. certs = $dir.cacert.pem] # Certificate chain to include in reply
  250. # (optional)
  251. signer_key = $dir/private/tsakey.pem # The TSA private key (optional)
  252. default_policy = tsa_policy1 # Policy if request did not specify it
  253. # (optional)
  254. other_policies = tsa_policy2, tsa_policy3 # acceptable policies (optional)
  255. digests = md5, sha1 # Acceptable message digests (mandatory)
  256. accuracy = secs:1, millisecs:500, microsecs:100 # (optional)
  257. clock_precision_digits = 0 # number of digits after dot. (optional)
  258. ordering = yes # Is ordering defined for timestamps?
  259. # (optional, default: no)
  260. tsa_name = yes # Must the TSA name be included in the reply?
  261. # (optional, default: no)
  262. ess_cert_id_chain = no # Must the ESS cert id chain be included?
  263. # (optional, default: no)