diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-12 10:08:33 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-05-12 10:08:33 -0400 |
commit | 94d78f457a4f58596d597e543ef8a90e1c764c1d (patch) | |
tree | 8ff902595bab13cd2e58bea77c128f9f28b6cf1e /docs/x509.rst | |
parent | cb599d3be59d05ef102759d02069c50466db869c (diff) | |
parent | d4f632ef9d06f3c527fea9558218b99b1f165032 (diff) | |
download | cryptography-94d78f457a4f58596d597e543ef8a90e1c764c1d.tar.gz cryptography-94d78f457a4f58596d597e543ef8a90e1c764c1d.tar.bz2 cryptography-94d78f457a4f58596d597e543ef8a90e1c764c1d.zip |
Merge pull request #1929 from reaperhulk/x509-docs
add OID information about all supported extensions
Diffstat (limited to 'docs/x509.rst')
-rw-r--r-- | docs/x509.rst | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index d2313292..96255a2c 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -1198,6 +1198,40 @@ Extension OIDs Corresponds to the dotted string ``"2.5.29.15"``. The identifier for the :class:`KeyUsage` extension type. +.. data:: OID_SUBJECT_ALTERNATIVE_NAME + + Corresponds to the dotted string ``"2.5.29.17"``. The identifier for the + :class:`SubjectAlternativeName` extension type. + +.. data:: OID_SUBJECT_KEY_IDENTIFIER + + Corresponds to the dotted string ``"2.5.29.14"``. The identifier for the + :class:`SubjectKeyIdentifier` extension type. + +.. data:: OID_CRL_DISTRIBUTION_POINTS + + Corresponds to the dotted string ``"2.5.29.31"``. The identifier for the + :class:`CRLDistributionPoints` extension type. + +.. data:: OID_CERTIFICATE_POLICIES + + Corresponds to the dotted string ``"2.5.29.32"``. The identifier for the + :class:`CertificatePolicies` extension type. + +.. data:: OID_AUTHORITY_KEY_IDENTIFIER + + Corresponds to the dotted string ``"2.5.29.35"``. The identifier for the + :class:`AuthorityKeyIdentifier` extension type. + +.. data:: OID_EXTENDED_KEY_USAGE + + Corresponds to the dotted string ``"2.5.29.37"``. The identifier for the + :class:`ExtendedKeyUsage` extension type. + +.. data:: OID_AUTHORITY_INFORMATION_ACCESS + + Corresponds to the dotted string ``"1.3.6.1.5.5.7.1.1"``. The identifier + for the :class:`AuthorityInformationAccess` extension type. Exceptions ~~~~~~~~~~ |