aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-27 17:27:40 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-27 17:27:40 -0600
commitad4b3593b14024619e1c3df70eeffc38adaf9c3a (patch)
tree3b3e3bcc2474b9919968f9474c916a3fb974a344 /src
parent58fb25797de0ec8866836f2a075063feeb689289 (diff)
downloadcryptography-ad4b3593b14024619e1c3df70eeffc38adaf9c3a.tar.gz
cryptography-ad4b3593b14024619e1c3df70eeffc38adaf9c3a.tar.bz2
cryptography-ad4b3593b14024619e1c3df70eeffc38adaf9c3a.zip
support indexing in AIA
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/x509/extensions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptography/x509/extensions.py b/src/cryptography/x509/extensions.py
index 7979ccb2..ac70cc18 100644
--- a/src/cryptography/x509/extensions.py
+++ b/src/cryptography/x509/extensions.py
@@ -270,6 +270,9 @@ class AuthorityInformationAccess(object):
def __ne__(self, other):
return not self == other
+ def __getitem__(self, idx):
+ return self._descriptions[idx]
+
class AccessDescription(object):
def __init__(self, access_method, access_location):