Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) Extract PKCS7 from MIME and DecryptExtracts the base64-encoded PKCS7 body of a MIME message to a file, and then decrypts using Chilkat Crypt2.
#include <C_CkMimeW.h> #include <C_CkCrypt2W.h> void ChilkatSample(void) { HCkMimeW mime; BOOL success; HCkCrypt2W crypt; const wchar_t *inPath; const wchar_t *outPath; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. mime = CkMimeW_Create(); success = CkMimeW_LoadMimeFile(mime,L"c:/aaworkarea/EmailInBytes.txt"); if (success != TRUE) { wprintf(L"%s\n",CkMimeW_lastErrorText(mime)); CkMimeW_Dispose(mime); return; } success = CkMimeW_SaveBody(mime,L"c:/aaworkarea/smime.p7m"); if (success != TRUE) { wprintf(L"%s\n",CkMimeW_lastErrorText(mime)); CkMimeW_Dispose(mime); return; } crypt = CkCrypt2W_Create(); success = CkCrypt2W_AddPfxSourceFile(crypt,L"c:/aaworkarea/my.pfx",L"pfxPassword"); if (success == FALSE) { wprintf(L"%s\n",CkCrypt2W_lastErrorText(crypt)); CkMimeW_Dispose(mime); CkCrypt2W_Dispose(crypt); return; } // Indicate the public-key (PKCS7) encryption/decryption should be used: CkCrypt2W_putCryptAlgorithm(crypt,L"pki"); inPath = L"c:/aaworkarea/smime.p7m"; outPath = L"c:/aaworkarea/decrypted.dat"; success = CkCrypt2W_CkDecryptFile(crypt,inPath,outPath); if (success == FALSE) { wprintf(L"%s\n",CkCrypt2W_lastErrorText(crypt)); CkMimeW_Dispose(mime); CkCrypt2W_Dispose(crypt); return; } wprintf(L"Success.\n"); CkMimeW_Dispose(mime); CkCrypt2W_Dispose(crypt); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.