From 64edae7c28e6a9061b33cdf042df4e783389dc48 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Fri, 16 May 2014 15:04:09 -0400 Subject: remove the macro we just added --- cryptography/hazmat/bindings/openssl/cms.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cryptography/hazmat/bindings/openssl/cms.py b/cryptography/hazmat/bindings/openssl/cms.py index 357c599f..a3760f2c 100644 --- a/cryptography/hazmat/bindings/openssl/cms.py +++ b/cryptography/hazmat/bindings/openssl/cms.py @@ -43,7 +43,6 @@ MACROS = """ BIO *BIO_new_CMS(BIO *, CMS_ContentInfo *); int i2d_CMS_bio_stream(BIO *, CMS_ContentInfo *, BIO *, int); int PEM_write_bio_CMS_stream(BIO *, CMS_ContentInfo *, BIO *, int); -int PEM_write_bio_CMS(BIO *, CMS_ContentInfo *); int CMS_final(CMS_ContentInfo *, BIO *, BIO *, unsigned int); CMS_ContentInfo *CMS_sign(X509 *, EVP_PKEY *, Cryptography_STACK_OF_X509 *, BIO *, unsigned int); @@ -72,7 +71,6 @@ typedef void CMS_Receipt; BIO *(*BIO_new_CMS)(BIO *, CMS_ContentInfo *) = NULL; int (*i2d_CMS_bio_stream)(BIO *, CMS_ContentInfo *, BIO *, int) = NULL; int (*PEM_write_bio_CMS_stream)(BIO *, CMS_ContentInfo *, BIO *, int) = NULL; -int (*PEM_write_bio_CMS)(BIO *, CMS_ContentInfo *) = NULL; int (*CMS_final)(CMS_ContentInfo *, BIO *, BIO *, unsigned int) = NULL; CMS_ContentInfo *(*CMS_sign)(X509 *, EVP_PKEY *, Cryptography_STACK_OF_X509 *, BIO *, unsigned int) = NULL; @@ -92,7 +90,6 @@ CONDITIONAL_NAMES = { "BIO_new_CMS", "i2d_CMS_bio_stream", "PEM_write_bio_CMS_stream", - "PEM_write_bio_CMS", "CMS_final", "CMS_sign", "CMS_verify", -- cgit v1.2.3