diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-28 13:33:01 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-28 13:33:01 -0400 |
commit | 320050b92d98c9dd8f3949f04a13756a4018f85d (patch) | |
tree | 5c6715eb538ff5308045be4a342ddc687795570b /docs | |
parent | 7d31b38ae1000d6691c62426219f8c8c03ac3f7d (diff) | |
parent | fbb7ac804a769ff48cddde6fb1f36d8af0d56174 (diff) | |
download | cryptography-320050b92d98c9dd8f3949f04a13756a4018f85d.tar.gz cryptography-320050b92d98c9dd8f3949f04a13756a4018f85d.tar.bz2 cryptography-320050b92d98c9dd8f3949f04a13756a4018f85d.zip |
Merge pull request #1793 from reaperhulk/x509-extensions-class
add x509 extensions class and basic tests (no extensions supported)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509.rst | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index 13218914..44d53a45 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -196,6 +196,15 @@ X.509 Certificate Object >>> isinstance(cert.signature_hash_algorithm, hashes.SHA256) True + .. attribute:: extensions + + :type: :class:`Extensions` + + The extensions encoded in the certificate. + + :raises cryptography.x509.DuplicateExtension: If more than one + extension of the same type is found within the certificate. + .. class:: Name .. versionadded:: 0.8 @@ -276,6 +285,13 @@ X.509 Certificate Object X.509 Extensions ~~~~~~~~~~~~~~~~ +.. class:: Extensions + + .. versionadded:: 0.9 + + An X.509 Extensions instance is an ordered list of extensions. The object + is iterable to get every extension. + .. class:: Extension .. versionadded:: 0.9 @@ -482,7 +498,7 @@ Signature Algorithm OIDs .. data:: OID_DSA_WITH_SHA256 - Corresponds to the dotted string ``2.16.840.1.101.3.4.3.2"``. This is + Corresponds to the dotted string ``"2.16.840.1.101.3.4.3.2"``. This is a SHA256 digest signed by a DSA key. .. _extension_oids: @@ -509,6 +525,27 @@ Exceptions Returns the raw version that was parsed from the certificate. +.. class:: DuplicateExtension + + This is raised when more than one X.509 extension of the same type is + found within a certificate. + + .. attribute:: oid + + :type: :class:`ObjectIdentifier` + + Returns the OID. + +.. class:: UnsupportedExtension + + This is raised when a certificate contains an unsupported extension type. + + .. attribute:: oid + + :type: :class:`ObjectIdentifier` + + Returns the OID. + .. _`public key infrastructure`: https://en.wikipedia.org/wiki/Public_key_infrastructure .. _`TLS`: https://en.wikipedia.org/wiki/Transport_Layer_Security |