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 Signature DigestDemonstrates how to extract a signature digest from a PKCS7 signature.
#include <CkCrypt2W.h> #include <CkBinDataW.h> #include <CkStringBuilderW.h> void ChilkatSample(void) { // This example requires the Chilkat Crypt API to have been previously unlocked. // See Unlock Chilkat Crypt for sample code. CkCrypt2W crypt; const wchar_t *p7mFile = L"qa_data/p7m/test.pdf.p7m"; const wchar_t *outPath = L"qa_output/test.pdf"; // First let's see if this .p7m signature can be verified, and the original file extracted. bool verified = crypt.VerifyP7M(p7mFile,outPath); if (verified != true) { wprintf(L"%s\n",crypt.lastErrorText()); return; } // How many signers? // (The NumSignerCerts property is set whenever a signature is verified.) wprintf(L"Num Signers: %d\n",crypt.get_NumSignerCerts()); // Load the .p7m into memory... CkBinDataW pkcs7Data; pkcs7Data.LoadFile(p7mFile); // Check to see if this .p7m contains the binary bytes, or if it's // already base64 encoded. Get the 1st two bytes. If the first two // bytes are the us-ascii values "MI", then we have base64. CkStringBuilderW sbBase64; const wchar_t *hexStr = pkcs7Data.getEncodedChunk(0,2,L"hex"); sbBase64.Append(hexStr); bool bHaveBase64 = false; if (sbBase64.ContentsEqual(L"4D49",true) == true) { bHaveBase64 = true; sbBase64.Clear(); sbBase64.AppendBd(pkcs7Data,L"utf-8",0,0); } // Get each signer's signature digest. crypt.put_EncodingMode(L"base64"); int i = 0; const wchar_t *digest = 0; while (i < crypt.get_NumSignerCerts()) { if (bHaveBase64) { digest = crypt.pkcs7ExtractDigest(i,sbBase64.getAsString()); } else { digest = crypt.pkcs7ExtractDigest(i,pkcs7Data.getEncoded(L"base64")); } if (crypt.get_LastMethodSuccess() != true) { wprintf(L"%s\n",crypt.lastErrorText()); return; } wprintf(L"Signer %d digest = %s\n",i + 1,digest); i = i + 1; } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.