diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-22 15:32:54 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-22 15:32:54 -0400 |
commit | dbac0e9a074c7244ad2d25e11b4001eb49a791b4 (patch) | |
tree | 24b07b6643387f3a82ed5733ab8155e0612978ab /docs | |
parent | e37ca984fcf093f4382eb3f19abf10b0862600da (diff) | |
parent | 0a621bf5da576d7aab394e5bdc342e2e8b1cbaa2 (diff) | |
download | cryptography-dbac0e9a074c7244ad2d25e11b4001eb49a791b4.tar.gz cryptography-dbac0e9a074c7244ad2d25e11b4001eb49a791b4.tar.bz2 cryptography-dbac0e9a074c7244ad2d25e11b4001eb49a791b4.zip |
Merge pull request #1859 from reaperhulk/san-unsupported
SAN unsupported type
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index eed88b09..035fa87f 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -274,6 +274,9 @@ X.509 Certificate Object :raises cryptography.x509.UnsupportedExtension: If the certificate contains an extension that is not supported. + :raises cryptography.x509.UnsupportedGeneralNameType: If an extension + contains a general name that is not supported. + .. doctest:: >>> for ext in cert.extensions: @@ -964,7 +967,20 @@ Exceptions Returns the OID. +.. class:: UnsupportedGeneralNameType + + This is raised when a certificate contains an unsupported general name + type in an extension. + + .. attribute:: type + + :type: int + + The integer value of the unsupported type. The complete list of + types can be found in `RFC 5280 section 4.2.1.6`_. + .. _`public key infrastructure`: https://en.wikipedia.org/wiki/Public_key_infrastructure .. _`TLS`: https://en.wikipedia.org/wiki/Transport_Layer_Security .. _`RFC 5280 section 4.2.1.1`: https://tools.ietf.org/html/rfc5280#section-4.2.1.1 +.. _`RFC 5280 section 4.2.1.6`: https://tools.ietf.org/html/rfc5280#section-4.2.1.6 |