openssl.cnf 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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 = /etc/pki/CA # 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 certs 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 extensions 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 = sha256 # use SHA-256 by default
  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. prompt = no
  88. default_bits = 2048
  89. default_md = sha256
  90. default_keyfile = privkey.pem
  91. distinguished_name = req_distinguished_name
  92. attributes = req_attributes
  93. x509_extensions = v3_ca # The extensions to add to the self signed cert
  94. # Passwords for private keys if not present they will be prompted for
  95. # input_password = secret
  96. # output_password = secret
  97. # This sets a mask for permitted string types. There are several options.
  98. # default: PrintableString, T61String, BMPString.
  99. # pkix : PrintableString, BMPString (PKIX recommendation before 2004)
  100. # utf8only: only UTF8Strings (PKIX recommendation after 2004).
  101. # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
  102. # MASK:XXXX a literal mask value.
  103. # WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings.
  104. string_mask = utf8only
  105. # req_extensions = v3_req # The extensions to add to a certificate request
  106. [ req_distinguished_name ]
  107. countryName = AU
  108. stateOrProvinceName = Western Australia
  109. #stateOrProvinceName_default = Default Province
  110. localityName = Perth
  111. 0.organizationName = Key Networks (https://key-networks.com)
  112. # we can do this but it is not needed normally :-)
  113. #1.organizationName = Second Organization Name (eg, company)
  114. #1.organizationName_default = World Wide Web Pty Ltd
  115. organizationalUnitName = Engineering
  116. #organizationalUnitName_default =
  117. commonName = localhost
  118. emailAddress = noreply@key-networks.com
  119. # SET-ex3 = SET extension number 3
  120. [ req_attributes ]
  121. challengePassword = A challenge password
  122. challengePassword_min = 4
  123. challengePassword_max = 20
  124. unstructuredName = An optional company name
  125. [ usr_cert ]
  126. # These extensions are added when 'ca' signs a request.
  127. # This goes against PKIX guidelines but some CAs do it and some software
  128. # requires this to avoid interpreting an end user certificate as a CA.
  129. basicConstraints=CA:FALSE
  130. # Here are some examples of the usage of nsCertType. If it is omitted
  131. # the certificate can be used for anything *except* object signing.
  132. # This is OK for an SSL server.
  133. # nsCertType = server
  134. # For an object signing certificate this would be used.
  135. # nsCertType = objsign
  136. # For normal client use this is typical
  137. # nsCertType = client, email
  138. # and for everything including object signing:
  139. # nsCertType = client, email, objsign
  140. # This is typical in keyUsage for a client certificate.
  141. # keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  142. # This will be displayed in Netscape's comment listbox.
  143. nsComment = "OpenSSL Generated Certificate"
  144. # PKIX recommendations harmless if included in all certificates.
  145. subjectKeyIdentifier=hash
  146. authorityKeyIdentifier=keyid,issuer
  147. # This stuff is for subjectAltName and issuerAltname.
  148. # Import the email address.
  149. # subjectAltName=email:copy
  150. # An alternative to produce certificates that aren't
  151. # deprecated according to PKIX.
  152. # subjectAltName=email:move
  153. # Copy subject details
  154. # issuerAltName=issuer:copy
  155. #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
  156. #nsBaseUrl
  157. #nsRevocationUrl
  158. #nsRenewalUrl
  159. #nsCaPolicyUrl
  160. #nsSslServerName
  161. # This is required for TSA certificates.
  162. # extendedKeyUsage = critical,timeStamping
  163. [ v3_req ]
  164. # Extensions to add to a certificate request
  165. basicConstraints = CA:FALSE
  166. keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  167. [ v3_ca ]
  168. # Extensions for a typical CA
  169. # PKIX recommendation.
  170. subjectKeyIdentifier=hash
  171. authorityKeyIdentifier=keyid:always,issuer
  172. basicConstraints = critical,CA:true
  173. # Key usage: this is typical for a CA certificate. However since it will
  174. # prevent it being used as an test self-signed certificate it is best
  175. # left out by default.
  176. # keyUsage = cRLSign, keyCertSign
  177. # Some might want this also
  178. # nsCertType = sslCA, emailCA
  179. # Include email address in subject alt name: another PKIX recommendation
  180. # subjectAltName=email:copy
  181. # Copy issuer details
  182. # issuerAltName=issuer:copy
  183. # DER hex encoding of an extension: beware experts only!
  184. # obj=DER:02:03
  185. # Where 'obj' is a standard or added object
  186. # You can even override a supported extension:
  187. # basicConstraints= critical, DER:30:03:01:01:FF
  188. [ crl_ext ]
  189. # CRL extensions.
  190. # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
  191. # issuerAltName=issuer:copy
  192. authorityKeyIdentifier=keyid:always
  193. [ proxy_cert_ext ]
  194. # These extensions should be added when creating a proxy certificate
  195. # This goes against PKIX guidelines but some CAs do it and some software
  196. # requires this to avoid interpreting an end user certificate as a CA.
  197. basicConstraints=CA:FALSE
  198. # Here are some examples of the usage of nsCertType. If it is omitted
  199. # the certificate can be used for anything *except* object signing.
  200. # This is OK for an SSL server.
  201. # nsCertType = server
  202. # For an object signing certificate this would be used.
  203. # nsCertType = objsign
  204. # For normal client use this is typical
  205. # nsCertType = client, email
  206. # and for everything including object signing:
  207. # nsCertType = client, email, objsign
  208. # This is typical in keyUsage for a client certificate.
  209. # keyUsage = nonRepudiation, digitalSignature, keyEncipherment
  210. # This will be displayed in Netscape's comment listbox.
  211. nsComment = "OpenSSL Generated Certificate"
  212. # PKIX recommendations harmless if included in all certificates.
  213. subjectKeyIdentifier=hash
  214. authorityKeyIdentifier=keyid,issuer
  215. # This stuff is for subjectAltName and issuerAltname.
  216. # Import the email address.
  217. # subjectAltName=email:copy
  218. # An alternative to produce certificates that aren't
  219. # deprecated according to PKIX.
  220. # subjectAltName=email:move
  221. # Copy subject details
  222. # issuerAltName=issuer:copy
  223. #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
  224. #nsBaseUrl
  225. #nsRevocationUrl
  226. #nsRenewalUrl
  227. #nsCaPolicyUrl
  228. #nsSslServerName
  229. # This really needs to be in place for it to be a proxy certificate.
  230. proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo
  231. ####################################################################
  232. [ tsa ]
  233. default_tsa = tsa_config1 # the default TSA section
  234. [ tsa_config1 ]
  235. # These are used by the TSA reply generation only.
  236. dir = ./demoCA # TSA root directory
  237. serial = $dir/tsaserial # The current serial number (mandatory)
  238. crypto_device = builtin # OpenSSL engine to use for signing
  239. signer_cert = $dir/tsacert.pem # The TSA signing certificate
  240. # (optional)
  241. certs = $dir/cacert.pem # Certificate chain to include in reply
  242. # (optional)
  243. signer_key = $dir/private/tsakey.pem # The TSA private key (optional)
  244. signer_digest = sha256 # Signing digest to use. (Optional)
  245. default_policy = tsa_policy1 # Policy if request did not specify it
  246. # (optional)
  247. other_policies = tsa_policy2, tsa_policy3 # acceptable policies (optional)
  248. digests = sha1, sha256, sha384, sha512 # Acceptable message digests (mandatory)
  249. accuracy = secs:1, millisecs:500, microsecs:100 # (optional)
  250. clock_precision_digits = 0 # number of digits after dot. (optional)
  251. ordering = yes # Is ordering defined for timestamps?
  252. # (optional, default: no)
  253. tsa_name = yes # Must the TSA name be included in the reply?
  254. # (optional, default: no)
  255. ess_cert_id_chain = no # Must the ESS cert id chain be included?
  256. # (optional, default: no)