Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Create XML Signature using Java KeyStore (.jks)Demonstrates how to create an XML digital signature using a certificate and private key from a Java KeyStore (.jks)
#include <CkXml.h> #include <CkJavaKeyStore.h> #include <CkCertChain.h> #include <CkCert.h> #include <CkXmlDSigGen.h> #include <CkStringBuilder.h> void ChilkatSample(void) { CkString strOut; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // The SOAP XML to be signed in this example contains the following: // <?xml version="1.0" encoding="UTF-8" standalone="no" ?> // <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> // <SOAP-ENV:Header> // <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" SOAP-ENV:mustUnderstand="1"></wsse:Security> // </SOAP-ENV:Header> // <SOAP-ENV:Body xmlns:SOAP-SEC="http://schemas.xmlsoap.org/soap/security/2000-12" SOAP-SEC:id="Body"> // <z:FooBar xmlns:z="http://example.com" /> // </SOAP-ENV:Body> // </SOAP-ENV:Envelope> // // Build the XML to sign. // Use this online tool to generate the code from sample XML: // Generate Code to Create XML CkXml xml; xml.put_Tag("SOAP-ENV:Envelope"); xml.AddAttribute("xmlns:SOAP-ENV","http://schemas.xmlsoap.org/soap/envelope/"); xml.UpdateAttrAt("SOAP-ENV:Header|wsse:Security",true,"xmlns:wsse","http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"); xml.UpdateAttrAt("SOAP-ENV:Header|wsse:Security",true,"SOAP-ENV:mustUnderstand","1"); xml.UpdateAttrAt("SOAP-ENV:Body",true,"xmlns:SOAP-SEC","http://schemas.xmlsoap.org/soap/security/2000-12"); xml.UpdateAttrAt("SOAP-ENV:Body",true,"SOAP-SEC:id","Body"); xml.UpdateAttrAt("SOAP-ENV:Body|z:FooBar",true,"xmlns:z","http://example.com"); // Load a JavaKeyStore file containing the certificate + private key. CkJavaKeyStore jks; const char *password = "secret"; bool success = jks.LoadFile(password,"qa_data/jks/test_secret.jks"); if (success != true) { strOut.append(jks.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Make sure we have a private key. if (jks.get_NumPrivateKeys() < 1) { strOut.append("No private key available."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // ------------------------------------------------------------------------- // Get the certificate chain associated with the 1st (and probably only) private key in the JKS. CkCertChain *chain = jks.GetCertChain(0); if (jks.get_LastMethodSuccess() != true) { strOut.append(jks.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkCert *cert = chain->GetCert(0); if (chain->get_LastMethodSuccess() != true) { strOut.append(chain->lastErrorText()); strOut.append("\r\n"); delete chain; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } delete chain; // Verify again that this cert has a private key. if (cert->HasPrivateKey() != true) { strOut.append("Certificate has no associated private key."); strOut.append("\r\n"); delete cert; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Prepare for signing... // Use this online tool to generate the following code from an already-signed XML sample: // Generate Code to Create an XML Signature CkXmlDSigGen gen; // Indicate where the Signature will be inserted. gen.put_SigLocation("SOAP-ENV:Envelope|SOAP-ENV:Header|wsse:Security"); // Add a reference to the fragment of the XML to be signed. gen.AddSameDocRef("Body","sha1","EXCL_C14N","",""); // (You can read about the SignedInfoPrefixList in the online reference documentation. It's optional..) gen.put_SignedInfoPrefixList("wsse SOAP-ENV"); // Provide the private key for signing via the certificate, and indicate that // we want the base64 of the certificate embedded in the KeyInfo. gen.put_KeyInfoType("X509Data"); gen.put_X509Type("Certificate"); // Note: Because our certificate was loaded from a JKS which also contained the private key, // Chilkat automatically knows and has the private key associated with the certificate. // We set bUsePrivateKey to tell the SetX509Cert method to automatically use the private key // associated with the certificate for signing. bool bUsePrivateKey = true; success = gen.SetX509Cert(*cert,bUsePrivateKey); if (success != true) { strOut.append(gen.lastErrorText()); strOut.append("\r\n"); delete cert; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } delete cert; // Everything's specified. Now create and insert the Signature CkStringBuilder sbXml; xml.GetXmlSb(sbXml); success = gen.CreateXmlDSigSb(sbXml); if (success != true) { strOut.append(gen.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Examine the XML with the digital signature inserted strOut.append(sbXml.getAsString()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.