aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/hazmat/backends/openssl/x509.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py
index f46dd1b7..a836e6a7 100644
--- a/src/cryptography/hazmat/backends/openssl/x509.py
+++ b/src/cryptography/hazmat/backends/openssl/x509.py
@@ -288,6 +288,8 @@ class _Certificate(object):
value = _decode_certificate_policies(self._backend, ext)
elif oid == x509.OID_CRL_DISTRIBUTION_POINTS:
value = _decode_crl_distribution_points(self._backend, ext)
+ elif oid == x509.OID_OCSP_NO_CHECK:
+ value = x509.OCSPNoCheck()
elif critical:
raise x509.UnsupportedExtension(
"{0} is not currently supported".format(oid), oid