Standard preamble:
========================================================================
..
.... Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.
If the F register is >0, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.
Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF
Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================
Title "X509V3_CONFIG 5"
way too many mistakes in technical documents.
This page uses extensions as the name of the section, when needed in examples.
Each entry in the extension section takes the form:
.Vb 1 name = [critical, ]value(s) .Ve
If critical is present then the extension will be marked as critical.
If multiple entries are processed for the same extension name, later entries override earlier ones with the same name.
The format of values depends on the value of name, many have a type-value pairing where the type and value are separated by a colon. There are four main types of extension:
.Vb 4 string multi-valued raw arbitrary .Ve
Each is described in the following paragraphs.
String extensions simply have a string which contains either the value itself or how it is obtained.
Multi-valued extensions have a short form and a long form. The short form is a comma-separated list of names and values:
.Vb 1 basicConstraints = critical, CA:true, pathlen:1 .Ve
The long form allows the values to be placed in a separate section:
.Vb 2 [extensions] basicConstraints = critical, @basic_constraints \& [basic_constraints] CA = true pathlen = 1 .Ve
Both forms are equivalent.
If an extension is multi-value and a field value must contain a comma the long form must be used otherwise the comma would be misinterpreted as a field separator. For example:
.Vb 1 subjectAltName = URI:ldap://somehost.com/CN=foo,OU=bar .Ve
will produce an error but the equivalent form:
.Vb 2 [extensions] subjectAltName = @subject_alt_section \& [subject_alt_section] subjectAltName = URI:ldap://somehost.com/CN=foo,OU=bar .Ve
is valid.
OpenSSL does not support multiple occurrences of the same field within a section. In this example:
.Vb 2 [extensions] subjectAltName = @alt_section \& [alt_section] email = steve@example.com email = steve@example.org .Ve
will only recognize the last value. To specify multiple values append a numeric identifier, as shown here:
.Vb 2 [extensions] subjectAltName = @alt_section \& [alt_section] email.1 = steve@example.com email.2 = steve@example.org .Ve
The syntax of raw extensions is defined by the source code that parses the extension but should be documened. See \*(L"Certificate Policies\*(R" for an example of a raw extension.
If an extension type is unsupported, then the arbitrary extension syntax must be used, see the \*(L"\s-1ARBITRARY EXTENSIONS\*(R"\s0 section for more details.
For example:
.Vb 1 basicConstraints = CA:TRUE \& basicConstraints = CA:FALSE \& basicConstraints = critical, CA:TRUE, pathlen:1 .Ve
A \s-1CA\s0 certificate must include the basicConstraints name with the \s-1CA\s0 parameter set to \s-1TRUE\s0. An end-user certificate must either have \s-1CA:FALSE\s0 or omit the extension entirely. The pathlen parameter specifies the maximum number of CAs that can appear below this one in a chain. A pathlen of zero means the \s-1CA\s0 cannot sign any sub-CA's, and can only sign end-entity certificates.
Examples:
.Vb 1 keyUsage = digitalSignature, nonRepudiation \& keyUsage = critical, keyCertSign .Ve
.Vb 10 Value Meaning according to RFC 5280 etc. ----- ---------------------------------- serverAuth SSL/TLS WWW Server Authentication clientAuth SSL/TLS WWW Client Authentication codeSigning Code Signing emailProtection E-mail Protection (S/MIME) timeStamping Trusted Timestamping OCSPSigning OCSP Signing ipsecIKE ipsec Internet Key Exchange msCodeInd Microsoft Individual Code Signing (authenticode) msCodeCom Microsoft Commercial Code Signing (authenticode) msCTLSign Microsoft Trust List Signing msEFS Microsoft Encrypted File System .Ve
While \s-1IETF RFC 5280\s0 says that id-kp-serverAuth and id-kp-clientAuth are only for \s-1WWW\s0 use, in practice they are used for all kinds of \s-1TLS\s0 clients and servers, and this is what OpenSSL assumes as well.
Examples:
.Vb 1 extendedKeyUsage = critical, codeSigning, 1.2.3.4 \& extendedKeyUsage = serverAuth, clientAuth .Ve
Otherwise, the value must be a hex string (possibly with \*(C`:\*(C' separating bytes) to output directly, however, this is strongly discouraged.
Example:
.Vb 1 subjectKeyIdentifier = hash .Ve
If keyid is present, an attempt is made to copy the subject key identifier (\s-1SKID\s0) from the issuer certificate except if the issuer certificate is the same as the current one and it is not self-signed. The hash of the public key related to the signing key is taken as fallback if the issuer certificate is the same as the current certificate. If always is present but no value can be obtained, an error is returned.
If issuer is present, and in addition it has the option always specified or keyid is not present, then the issuer \s-1DN\s0 and serial number are copied from the issuer certificate.
Examples:
.Vb 1 authorityKeyIdentifier = keyid, issuer \& authorityKeyIdentifier = keyid, issuer:always .Ve
The email option has two special values. \f(CW\*(C`copy\*(C' will automatically include any email addresses contained in the certificate subject name in the extension. \f(CW\*(C`move\*(C' will automatically move any email addresses from the certificate subject name to the extension.
The \s-1IP\s0 address used in the \s-1IP\s0 option can be in either IPv4 or IPv6 format.
The value of dirName is specifies the configuration section containing the distinguished name to use, as a set of name-value pairs. Multi-valued AVAs can be formed by prefacing the name with a + character.
The value of otherName can include arbitrary data associated with an \s-1OID\s0; the value should be the \s-1OID\s0 followed by a semicolon and the content in specified using the syntax in ASN1_generate_nconf\|(3).
Examples:
.Vb 1 subjectAltName = email:copy, email:my@example.com, URI:http://my.example.com/ \& subjectAltName = IP:192.168.7.1 \& subjectAltName = IP:13::17 \& subjectAltName = email:my@example.com, RID:1.2.3.4 \& subjectAltName = otherName:1.2.3.4;UTF8:some other identifier \& [extensions] subjectAltName = dirName:dir_sect \& [dir_sect] C = UK O = My Organization OU = My Unit CN = My Name .Ve
Non-ASCII Email Address conforming the syntax defined in Section 3.3 of \s-1RFC 6531\s0 are provided as otherName.SmtpUTF8Mailbox. According to \s-1RFC 8398,\s0 the email address should be provided as UTF8String. To enforce the valid representation in the certificate, the SmtpUTF8Mailbox should be provided as follows
.Vb 3 subjectAltName=@alts [alts] otherName = 1.3.6.1.5.5.7.8.9;FORMAT:UTF8,UTF8String:nonasciiname.example.com .Ve
Example:
.Vb 1 issuerAltName = issuer:copy .Ve
Possible values for access_id include \s-1OCSP\s0 (\s-1OCSP\s0 responder), \fBcaIssuers (\s-1CA\s0 Issuers), \fBad_timestamping (\s-1AD\s0 Time Stamping), \fB\s-1AD_DVCS\s0 (ad dvcs), \fBcaRepository (\s-1CA\s0 Repository).
Examples:
.Vb 1 authorityInfoAccess = OCSP;URI:http://ocsp.example.com/,caIssuers;URI:http://myca.example.com/ca.cer \& authorityInfoAccess = OCSP;URI:http://ocsp.example.com/ .Ve
When a name-value pair is used, a DistributionPoint extension will be set with the given value as the fullName field as the distributionPoint value, and the reasons and cRLIssuer fields will be omitted.
When a single option is used, the value specifies the section, and that section can have the following items:
Only one of fullname or relativename should be specified.
Simple examples:
.Vb 1 crlDistributionPoints = URI:http://example.com/myca.crl \& crlDistributionPoints = URI:http://example.com/myca.crl, URI:http://example.org/my.crl .Ve
Full distribution point example:
.Vb 2 [extensions] crlDistributionPoints = crldp1_section \& [crldp1_section] fullname = URI:http://example.com/myca.crl CRLissuer = dirName:issuer_sect reasons = keyCompromise, CACompromise \& [issuer_sect] C = UK O = Organisation CN = Some Name .Ve
Example:
.Vb 2 [extensions] issuingDistributionPoint = critical, @idp_section \& [idp_section] fullname = URI:http://example.com/myca.crl indirectCRL = TRUE onlysomereasons = keyCompromise, CACompromise .Ve
Policies without qualifiers are specified by giving the \s-1OID.\s0 Multiple policies are comma-separated. For example:
.Vb 1 certificatePolicies = 1.2.4.5, 1.1.3.4 .Ve
To include policy qualifiers, use the \*(L"@section\*(R" syntax to point to a section that specifies all the information.
The section referred to must include the policy \s-1OID\s0 using the name \fBpolicyIdentifier. cPSuri qualifiers can be included using the syntax:
.Vb 1 CPS.nnn = value .Ve
where \*(C`nnn\*(C' is a number.
userNotice qualifiers can be set using the syntax:
.Vb 1 userNotice.nnn = @notice .Ve
The value of the userNotice qualifier is specified in the relevant section. This section can include explicitText, organization, and noticeNumbers options. explicitText and organization are text strings, noticeNumbers is a comma separated list of numbers. The organization and noticeNumbers options (if included) must \s-1BOTH\s0 be present. Some software might require the ia5org option at the top level; this changes the encoding from Displaytext to IA5String.
Example:
.Vb 2 [extensions] certificatePolicies = ia5org, 1.2.3.4, 1.5.6.7.8, @polsect \& [polsect] policyIdentifier = 1.3.5.8 CPS.1 = "http://my.host.example.com/" CPS.2 = "http://my.your.example.com/" userNotice.1 = @notice \& [notice] explicitText = "Explicit Text Here" organization = "Organisation Name" noticeNumbers = 1, 2, 3, 4 .Ve
The character encoding of explicitText can be specified by prefixing the value with \s-1UTF8\s0, \s-1BMP\s0, or \s-1VISIBLE\s0 followed by colon. For example:
.Vb 2 [notice] explicitText = "UTF8:Explicit Text Here" .Ve
Example:
.Vb 1 policyConstraints = requireExplicitPolicy:3 .Ve
Example:
.Vb 1 inhibitAnyPolicy = 2 .Ve
Examples:
.Vb 1 nameConstraints = permitted;IP:192.168.0.0/255.255.0.0 \& nameConstraints = permitted;email:.example.com \& nameConstraints = excluded;email:.com .Ve
Example:
.Vb 1 noCheck = ignored .Ve
The supported names are: status_request and status_request_v2.
Example:
.Vb 1 tlsfeature = status_request .Ve
Acceptable values for nsCertType are: client, server, email, \fBobjsign, reserved, sslCA, emailCA, objCA.
There are two ways to encode arbitrary extensions.
The first way is to use the word \s-1ASN1\s0 followed by the extension content using the same syntax as ASN1_generate_nconf\|(3). For example:
.Vb 3 [extensions] 1.2.3.4 = critical, ASN1:UTF8String:Some random data 1.2.3.4.1 = ASN1:SEQUENCE:seq_sect \& [seq_sect] field1 = UTF8:field1 field2 = UTF8:field2 .Ve
It is also possible to use the word \s-1DER\s0 to include the raw encoded data in any extension.
.Vb 2 1.2.3.4 = critical, DER:01:02:03:04 1.2.3.4.1 = DER:01020304 .Ve
The value following \s-1DER\s0 is a hex dump of the \s-1DER\s0 encoding of the extension Any extension can be placed in this form to override the default behaviour. For example:
.Vb 1 basicConstraints = critical, DER:00:01:02:03 .Ve
The \s-1DER\s0 and \s-1ASN1\s0 options should be used with caution. It is possible to create invalid extensions if they are not used carefully.
Licensed under the Apache License 2.0 (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy in the file \s-1LICENSE\s0 in the source distribution or at <https://www.openssl.org/source/license.html>.