diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-04-22 09:22:56 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-04-22 13:48:39 -0500 |
commit | 0a621bf5da576d7aab394e5bdc342e2e8b1cbaa2 (patch) | |
tree | 24b07b6643387f3a82ed5733ab8155e0612978ab /docs | |
parent | bed07357a90237ee92cedba788066f87a63e34b6 (diff) | |
download | cryptography-0a621bf5da576d7aab394e5bdc342e2e8b1cbaa2.tar.gz cryptography-0a621bf5da576d7aab394e5bdc342e2e8b1cbaa2.tar.bz2 cryptography-0a621bf5da576d7aab394e5bdc342e2e8b1cbaa2.zip |
return only an int for unsupported general name type, update docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index 2e4a0efb..035fa87f 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -974,9 +974,13 @@ Exceptions .. attribute:: type - :type: :term:`text` or int + :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 |