aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-06-28 11:07:52 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-06-28 11:07:52 -0400
commitac7f70a1dc284339238fcfbdfba4f76476ab3d29 (patch)
tree80d59b3044d85c73c68c8226ffc5baddab514960 /src
parent6eeb877becb90f1a8209a8ac4db96e9b440265a6 (diff)
downloadcryptography-ac7f70a1dc284339238fcfbdfba4f76476ab3d29.tar.gz
cryptography-ac7f70a1dc284339238fcfbdfba4f76476ab3d29.tar.bz2
cryptography-ac7f70a1dc284339238fcfbdfba4f76476ab3d29.zip
fix the not implemeneted test
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/x509.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py
index 668bc2ef..a091cd78 100644
--- a/src/cryptography/x509.py
+++ b/src/cryptography/x509.py
@@ -1472,6 +1472,10 @@ class CertificateSigningRequestBuilder(object):
extension = Extension(
OID_SUBJECT_ALTERNATIVE_NAME, critical, extension
)
+ elif isinstance(extension, KeyUsage):
+ extension = Extension(
+ OID_KEY_USAGE, critical, extension
+ )
else:
raise NotImplementedError('Unsupported X.509 extension.')
# TODO: This is quadratic in the number of extensions