aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-04-22 16:56:00 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-04-22 16:56:00 -0400
commit2a5bb537fbfbc8ca59c6032c0a70c6e1e327701d (patch)
tree7bcb803741a8fa433beda4d0357f0d12af4da380 /tests
parentdbac0e9a074c7244ad2d25e11b4001eb49a791b4 (diff)
parent4db9662ff1d25a0e5f974035c5a2b12b67cb2910 (diff)
downloadcryptography-2a5bb537fbfbc8ca59c6032c0a70c6e1e327701d.tar.gz
cryptography-2a5bb537fbfbc8ca59c6032c0a70c6e1e327701d.tar.bz2
cryptography-2a5bb537fbfbc8ca59c6032c0a70c6e1e327701d.zip
Merge pull request #1861 from reaperhulk/san-registered-id
support registeredID general name in OpenSSL backend
Diffstat (limited to 'tests')
-rw-r--r--tests/test_x509_ext.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py
index 1283fca7..bce6781f 100644
--- a/tests/test_x509_ext.py
+++ b/tests/test_x509_ext.py
@@ -770,3 +770,21 @@ class TestRSASubjectAlternativeNameExtension(object):
cert.extensions
assert exc.value.type == 0
+
+ def test_registered_id(self, backend):
+ cert = _load_cert(
+ os.path.join(
+ "x509", "custom", "san_registered_id.pem"
+ ),
+ x509.load_pem_x509_certificate,
+ backend
+ )
+ ext = cert.extensions.get_extension_for_oid(
+ x509.OID_SUBJECT_ALTERNATIVE_NAME
+ )
+ assert ext is not None
+ assert ext.critical is False
+
+ san = ext.value
+ rid = san.get_values_for_type(x509.RegisteredID)
+ assert rid == [x509.ObjectIdentifier("1.2.3.4")]