From: Dr. Stephen Henson Date: Tue, 19 Jun 2012 13:39:03 +0000 (+0000) Subject: oops, add -debug_decrypt option which was accidenatally left out X-Git-Tag: OpenSSL_1_0_1d~90 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=36b071979369e4dd2d4c9d36df2336815353106c;p=oweals%2Fopenssl.git oops, add -debug_decrypt option which was accidenatally left out --- diff --git a/apps/cms.c b/apps/cms.c index d754140987..5f77f8fbb0 100644 --- a/apps/cms.c +++ b/apps/cms.c @@ -233,6 +233,8 @@ int MAIN(int argc, char **argv) else if (!strcmp(*args,"-camellia256")) cipher = EVP_camellia_256_cbc(); #endif + else if (!strcmp (*args, "-debug_decrypt")) + flags |= CMS_DEBUG_DECRYPT; else if (!strcmp (*args, "-text")) flags |= CMS_TEXT; else if (!strcmp (*args, "-nointern")) @@ -1039,6 +1041,8 @@ int MAIN(int argc, char **argv) ret = 4; if (operation == SMIME_DECRYPT) { + if (flags & CMS_DEBUG_DECRYPT) + CMS_decrypt(cms, NULL, NULL, NULL, NULL, flags); if (secret_key) {