diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-27 17:32:57 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-27 17:32:57 -0600 |
commit | e8db7bd4bdc0a61214c8b6fe502d5d0ba9393749 (patch) | |
tree | 2574ff08f622817c35680361dac4f7fb9fe4341f | |
parent | 58fb25797de0ec8866836f2a075063feeb689289 (diff) | |
download | cryptography-e8db7bd4bdc0a61214c8b6fe502d5d0ba9393749.tar.gz cryptography-e8db7bd4bdc0a61214c8b6fe502d5d0ba9393749.tar.bz2 cryptography-e8db7bd4bdc0a61214c8b6fe502d5d0ba9393749.zip |
support indexing in CertificatePolicies
-rw-r--r-- | src/cryptography/x509/extensions.py | 3 | ||||
-rw-r--r-- | tests/test_x509_ext.py | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/cryptography/x509/extensions.py b/src/cryptography/x509/extensions.py index 7979ccb2..dd2b8e63 100644 --- a/src/cryptography/x509/extensions.py +++ b/src/cryptography/x509/extensions.py @@ -501,6 +501,9 @@ class CertificatePolicies(object): def __ne__(self, other): return not self == other + def __getitem__(self, idx): + return self._policies[idx] + class PolicyInformation(object): def __init__(self, policy_identifier, policy_qualifiers): diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py index cfca5794..475efbd1 100644 --- a/tests/test_x509_ext.py +++ b/tests/test_x509_ext.py @@ -380,6 +380,16 @@ class TestCertificatePolicies(object): assert cp != cp2 assert cp != object() + def test_indexing(self): + pi = x509.PolicyInformation(x509.ObjectIdentifier("1.2.3"), [u"test"]) + pi2 = x509.PolicyInformation(x509.ObjectIdentifier("1.2.4"), [u"test"]) + pi3 = x509.PolicyInformation(x509.ObjectIdentifier("1.2.5"), [u"test"]) + pi4 = x509.PolicyInformation(x509.ObjectIdentifier("1.2.6"), [u"test"]) + pi5 = x509.PolicyInformation(x509.ObjectIdentifier("1.2.7"), [u"test"]) + cp = x509.CertificatePolicies([pi, pi2, pi3, pi4, pi5]) + assert cp[-1] == cp[4] + assert cp[2:6:2] == [cp[2], cp[4]] + @pytest.mark.requires_backend_interface(interface=RSABackend) @pytest.mark.requires_backend_interface(interface=X509Backend) |