diff options
author | Thom Dixon <thom@thomdixon.org> | 2018-05-18 03:55:29 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-05-18 06:55:29 -0400 |
commit | 488c04830c9dbc876d1a344ea51015ad6a19dd1c (patch) | |
tree | 14fa856475a38ac72a528f44e912cef2b22ff819 /docs/x509 | |
parent | 2c9411552d92a1365e9609c98dca2d9910f601f3 (diff) | |
download | cryptography-488c04830c9dbc876d1a344ea51015ad6a19dd1c.tar.gz cryptography-488c04830c9dbc876d1a344ea51015ad6a19dd1c.tar.bz2 cryptography-488c04830c9dbc876d1a344ea51015ad6a19dd1c.zip |
Make AuthorityKeyIdentifier docs reflect reality (#4252)
The `AuthorityKeyIdentifier.authority_cert_issuer` docs state that it returns a `Name` instance, but it [actually returns a list of `GeneralName` instances or `None`](https://github.com/pyca/cryptography/blob/master/src/cryptography/x509/extensions.py#L157).
Diffstat (limited to 'docs/x509')
-rw-r--r-- | docs/x509/reference.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 279c4c74..7a41e1f3 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -1713,7 +1713,7 @@ X.509 Extensions .. attribute:: authority_cert_issuer - :type: :class:`Name` or None + :type: A list of :class:`GeneralName` instances or None The :class:`Name` of the issuer's issuer. |