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
(C) Create/Verify XML Signature with External Text ReferenceSee more XML Digital Signatures ExamplesDemonstrates how to create an XML digital signature where the referenced data is external. In this case, the data is a text file located at the following URL: https://www.chilkatsoft.com/helloWorld.txt
#include <C_CkXml.h> #include <C_CkCert.h> #include <C_CkXmlDSigGen.h> #include <C_CkHttp.h> #include <C_CkStringBuilder.h> #include <C_CkXmlDSig.h> void ChilkatSample(void) { HCkXml xml; HCkCert cert; BOOL success; HCkXmlDSigGen gen; HCkHttp http; HCkStringBuilder sbExternalTxt; BOOL bUsePrivateKey; HCkStringBuilder sbXml; HCkXmlDSig verifier; HCkStringBuilder sbExternalData; int numRefs; int i; BOOL bExternal; const char *uri; BOOL bVerified; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // This example inserts an XML signature into the following XML: // <?xml version="1.0" encoding="UTF-8" standalone="no"?> // <abc> // <xyz> // <name>helloWorld.txt</name> // <url>https://www.chilkatsoft.com/helloWorld.txt</url> // </xyz> // </abc> // Build the above XML to be signed. xml = CkXml_Create(); CkXml_putTag(xml,"abc"); CkXml_UpdateChildContent(xml,"xyz|name","helloWorld.txt"); CkXml_UpdateChildContent(xml,"xyz|url","https://www.chilkatsoft.com/helloWorld.txt"); cert = CkCert_Create(); success = CkCert_LoadPfxFile(cert,"qa_data/pfx/test_secret.pfx","secret"); if (success == FALSE) { printf("%s\n",CkCert_lastErrorText(cert)); CkXml_Dispose(xml); CkCert_Dispose(cert); return; } gen = CkXmlDSigGen_Create(); // Indicate the location within the XML the Signature will be inserted. CkXmlDSigGen_putSigLocation(gen,"abc|xyz"); // Get the content of the text data to be referenced. http = CkHttp_Create(); sbExternalTxt = CkStringBuilder_Create(); success = CkHttp_QuickGetSb(http,"https://www.chilkatsoft.com/helloWorld.txt",sbExternalTxt); if (success == FALSE) { printf("%s\n",CkHttp_lastErrorText(http)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); return; } success = CkXmlDSigGen_AddExternalTextRef(gen,"https://www.chilkatsoft.com/helloWorld.txt",sbExternalTxt,"utf-8",FALSE,"sha256",""); if (success == FALSE) { printf("%s\n",CkXmlDSigGen_lastErrorText(gen)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); return; } // Provide the private key for signing via the certificate, and indicate that // we want the base64 of the certificate embedded in the KeyInfo. CkXmlDSigGen_putKeyInfoType(gen,"X509Data"); CkXmlDSigGen_putX509Type(gen,"Certificate"); bUsePrivateKey = TRUE; success = CkXmlDSigGen_SetX509Cert(gen,cert,bUsePrivateKey); if (success != TRUE) { printf("%s\n",CkXmlDSigGen_lastErrorText(gen)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); return; } // Indicate we want an indented signature for readability. // This can be removed after debugging is finished.. CkXmlDSigGen_putBehaviors(gen,"IndentedSignature"); // Now create and insert the Signature sbXml = CkStringBuilder_Create(); CkXml_GetXmlSb(xml,sbXml); success = CkXmlDSigGen_CreateXmlDSigSb(gen,sbXml); if (success != TRUE) { printf("%s\n",CkXmlDSigGen_lastErrorText(gen)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); CkStringBuilder_Dispose(sbXml); return; } // Examine the XML with the digital signature inserted printf("%s\n",CkStringBuilder_getAsString(sbXml)); // Here is the output: // <?xml version="1.0" encoding="utf-8"?> // <abc> // <xyz> // <name>helloWorld.txt</name> // <url>https://www.chilkatsoft.com/helloWorld.txt</url> // <ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#"> // <ds:SignedInfo> // <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> // <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/> // <ds:Reference URI="https://www.chilkatsoft.com/helloWorld.txt"> // <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> // <ds:DigestValue>f4OxZX/x/FO5LcGBSKHWXfwtSx+j1ncoSt3SABJtkGk=</ds:DigestValue> // </ds:Reference> // </ds:SignedInfo> // <ds:SignatureValue>syFSl...pZDiFQ==</ds:SignatureValue> // <ds:KeyInfo> // <ds:X509Data> // <ds:X509Certificate>MIIHAz...GwnUZWCaDE=</ds:X509Certificate> // </ds:X509Data> // </ds:KeyInfo> // </ds:Signature></xyz> // </abc> // Let's verify the signature... verifier = CkXmlDSig_Create(); success = CkXmlDSig_LoadSignatureSb(verifier,sbXml); if (success != TRUE) { printf("%s\n",CkXmlDSig_lastErrorText(verifier)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); CkStringBuilder_Dispose(sbXml); CkXmlDSig_Dispose(verifier); return; } // Let's examine the external references, and fetch the data for each.. sbExternalData = CkStringBuilder_Create(); numRefs = CkXmlDSig_getNumReferences(verifier); i = 0; while (i < numRefs) { bExternal = CkXmlDSig_IsReferenceExternal(verifier,i); if (bExternal == TRUE) { uri = CkXmlDSig_referenceUri(verifier,i); // We're assuming the URI is an https:// or http:// URL... // Let's also assume we know that the referenced data is text and we want the utf-8 byte representation. CkStringBuilder_Clear(sbExternalData); success = CkHttp_QuickGetSb(http,uri,sbExternalData); if (success == FALSE) { printf("%s\n",CkHttp_lastErrorText(http)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); CkStringBuilder_Dispose(sbXml); CkXmlDSig_Dispose(verifier); CkStringBuilder_Dispose(sbExternalData); return; } success = CkXmlDSig_SetRefDataSb(verifier,i,sbExternalData,"utf-8"); if (success == FALSE) { printf("%s\n",CkXmlDSig_lastErrorText(verifier)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); CkStringBuilder_Dispose(sbXml); CkXmlDSig_Dispose(verifier); CkStringBuilder_Dispose(sbExternalData); return; } } i = i + 1; } // Now that we have the external data available, we can verify the reference digest(s) and the signature. bVerified = CkXmlDSig_VerifySignature(verifier,TRUE); if (bVerified != TRUE) { printf("%s\n",CkXmlDSig_lastErrorText(verifier)); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); CkStringBuilder_Dispose(sbXml); CkXmlDSig_Dispose(verifier); CkStringBuilder_Dispose(sbExternalData); return; } printf("Signature verified!\n"); CkXml_Dispose(xml); CkCert_Dispose(cert); CkXmlDSigGen_Dispose(gen); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbExternalTxt); CkStringBuilder_Dispose(sbXml); CkXmlDSig_Dispose(verifier); CkStringBuilder_Dispose(sbExternalData); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.