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
(Visual FoxPro) Extract XML string from a .p7m byte array (e.g. FATTURA ELETTRONICA, ITALY)Visual FoxPro example to extract the original XML from a .p7m (Signed-Data PKCS7 Format) provided as a byte array. One use for this example is to extract the original XML from a Fattura Elettronica .p7m signature.
LOCAL loFac LOCAL loP7mBytes LOCAL loCrypt LOCAL lcOriginalXml * This example requires the Chilkat API to have been previously unlocked. * See Global Unlock Sample for sample code. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.FileAccess') loFac = CreateObject('Chilkat.FileAccess') loP7mBytes = loFac.ReadEntireFile("testData/p7m/fattura_signature.p7m") IF (loFac.LastMethodSuccess <> 1) THEN ? loFac.LastErrorText RELEASE loFac CANCEL ENDIF * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Crypt2') loCrypt = CreateObject('Chilkat.Crypt2') lcOriginalXml = loCrypt.OpaqueVerifyString(loP7mBytes) IF (loCrypt.LastMethodSuccess <> 1) THEN ? loFac.LastErrorText RELEASE loFac RELEASE loCrypt CANCEL ENDIF ? "Original XML:" ? lcOriginalXml ? "Success!" RELEASE loFac RELEASE loCrypt |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.