diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-12 15:47:40 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-12 15:51:33 -0600 |
commit | a40a83a933b506a9b8ff818ff82f3f74136c61e4 (patch) | |
tree | 40e437f46692f1722858a864db99856e175ce168 /src/cryptography/hazmat/bindings/openssl/_conditional.py | |
parent | 747ef464bf87a70a12ce2236c5408a7a0440cc44 (diff) | |
download | cryptography-a40a83a933b506a9b8ff818ff82f3f74136c61e4.tar.gz cryptography-a40a83a933b506a9b8ff818ff82f3f74136c61e4.tar.bz2 cryptography-a40a83a933b506a9b8ff818ff82f3f74136c61e4.zip |
these functions were added in 1.0.0, while CMS was added in 0.9.8h
We didn't catch this in our CI because all our 0.9.8 targets have CMS
disabled or are older than 0.9.8h
Diffstat (limited to 'src/cryptography/hazmat/bindings/openssl/_conditional.py')
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/_conditional.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/_conditional.py b/src/cryptography/hazmat/bindings/openssl/_conditional.py index 670710b1..93f5898f 100644 --- a/src/cryptography/hazmat/bindings/openssl/_conditional.py +++ b/src/cryptography/hazmat/bindings/openssl/_conditional.py @@ -52,6 +52,11 @@ CONDITIONAL_NAMES = { "CMS_USE_KEYID", "CMS_DEBUG_DECRYPT", ], + "Cryptography_HAS_MORE_CMS": [ + "BIO_new_CMS", + "i2d_CMS_bio_stream", + "PEM_write_bio_CMS_stream", + ], "Cryptography_HAS_EC": [ "OPENSSL_EC_NAMED_CURVE", "EC_GROUP_new", |