diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-19 16:05:37 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-19 16:05:37 -0700 |
commit | 13d64e093894aca90062feac6db264e17e654e4d (patch) | |
tree | 7d9d85147c11fdc00697ec07723844dc40515aaa | |
parent | 375e3ab6c05d3ef23604d2b6acff65071217b0a2 (diff) | |
download | cryptography-13d64e093894aca90062feac6db264e17e654e4d.tar.gz cryptography-13d64e093894aca90062feac6db264e17e654e4d.tar.bz2 cryptography-13d64e093894aca90062feac6db264e17e654e4d.zip |
remove nids not universally available in all our versions
will re-add later with additional boilerplate
-rw-r--r-- | cryptography/hazmat/bindings/openssl/nid.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cryptography/hazmat/bindings/openssl/nid.py b/cryptography/hazmat/bindings/openssl/nid.py index 8938ada2..b2e61492 100644 --- a/cryptography/hazmat/bindings/openssl/nid.py +++ b/cryptography/hazmat/bindings/openssl/nid.py @@ -200,7 +200,6 @@ static const int NID_name_constraints; static const int NID_crl_distribution_points; static const int NID_certificate_policies; static const int NID_inhibit_any_policy; -static const int NID_id_pkix_OCSP_noCheck; static const int NID_private_key_usage_period; static const int NID_crl_number; @@ -211,7 +210,6 @@ static const int NID_any_policy; static const int NID_policy_mappings; static const int NID_target_information; static const int NID_no_rev_avail; -static const int NID_anyExtendedKeyUsage; """ FUNCTIONS = """ @@ -231,14 +229,6 @@ static const int NID_ecdsa_with_SHA256 = 0; static const int NID_ecdsa_with_SHA384 = 0; static const int NID_ecdsa_with_SHA512 = 0; #endif - -#ifndef NID_id_pkix_OCSP_noCheck -static const long NID_id_pkix_OCSP_noCheck = 369; -#endif - -#ifndef NID_anyExtendedKeyUsage -static const long NID_anyExtendedKeyUsage = 910; -#endif """ CONDITIONAL_NAMES = { |