openssl.conf 11 KB

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