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
(Delphi ActiveX) SII XML Digital SignatureExample for SII XML Digital Signature.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB; ... procedure TForm1.Button1Click(Sender: TObject); var success: Integer; xmlToSign: TChilkatXml; gen: TChilkatXmlDSigGen; xml1: TChilkatXml; cert: TChilkatCert; sbXml: TChilkatStringBuilder; verifier: TChilkatXmlDSig; numSigs: Integer; verifyIdx: Integer; verified: Integer; begin success := 1; // Load the XML to be signed. xmlToSign := TChilkatXml.Create(Self); success := xmlToSign.LoadXmlFile('c:/aaworkarea/eduardo/sii_unsigned.xml'); if (success = 0) then begin Memo1.Lines.Add(xmlToSign.LastErrorText); Exit; end; // The sample XML to be signed looks like this: // <?xml version="1.0" encoding="ISO-8859-1"?> // <EnvioDTE xmlns="http://www.sii.cl/SiiDte" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sii.cl/SiiDte EnvioDTE_v10.xsd" version="1.0"> // <SetDTE ID="SetDocF0T33_20240425_170512"> // <Caratula version="1.0"> // <RutEmisor>99999999-4</RutEmisor> // <RutEnvia>12345678-6</RutEnvia> // <RutReceptor>888888000-K</RutReceptor> // <FchResol>2014-08-22</FchResol> // <NroResol>80</NroResol> // <TmstFirmaEnv>2024-04-25T17:05:13</TmstFirmaEnv> // <SubTotDTE> // <TpoDTE>33</TpoDTE> // <NroDTE>1</NroDTE> // </SubTotDTE> // </Caratula> // <DTE version="1.0"> // <Documento ID="F555T55"> // ... // </Documento> // </EnvioDTE> gen := TChilkatXmlDSigGen.Create(Self); gen.SigLocation := 'EnvioDTE|SetDTE|DTE'; gen.SigLocationMod := 0; gen.SigNamespacePrefix := ''; gen.SigNamespaceUri := 'http://www.w3.org/2000/09/xmldsig#'; gen.SignedInfoCanonAlg := 'C14N'; gen.SignedInfoDigestMethod := 'sha1'; // -------- Reference 1 -------- xml1 := TChilkatXml.Create(Self); xml1.Tag := 'Transforms'; xml1.UpdateAttrAt('Transform',1,'Algorithm','http://www.w3.org/TR/2001/REC-xml-c14n-20010315'); gen.AddSameDocRef2('F511T33','sha1',xml1.ControlInterface,''); // Provide a certificate + private key. (PFX password is test123) cert := TChilkatCert.Create(Self); success := cert.LoadPfxFile('qa_data/pfx/cert_test123.pfx','test123'); if (success <> 1) then begin Memo1.Lines.Add(cert.LastErrorText); Exit; end; gen.SetX509Cert(cert.ControlInterface,1); gen.KeyInfoType := 'X509Data+KeyValue'; gen.X509Type := 'Certificate'; // Load XML to be signed... sbXml := TChilkatStringBuilder.Create(Self); xmlToSign.GetXmlSb(sbXml.ControlInterface); gen.Behaviors := 'IndentedSignature'; // Sign the XML... success := gen.CreateXmlDSigSb(sbXml.ControlInterface); if (success <> 1) then begin Memo1.Lines.Add(gen.LastErrorText); Exit; end; // ----------------------------------------------- // Save the signed XML to a file. success := sbXml.WriteFile('c:/temp/qa_output/signedXml.xml','utf-8',0); Memo1.Lines.Add(sbXml.GetAsString()); // ---------------------------------------- // Verify the signatures we just produced... verifier := TChilkatXmlDSig.Create(Self); success := verifier.LoadSignatureSb(sbXml.ControlInterface); if (success <> 1) then begin Memo1.Lines.Add(verifier.LastErrorText); Exit; end; numSigs := verifier.NumSignatures; verifyIdx := 0; while verifyIdx < numSigs do begin verifier.Selector := verifyIdx; verified := verifier.VerifySignature(1); if (verified <> 1) then begin Memo1.Lines.Add(verifier.LastErrorText); Exit; end; verifyIdx := verifyIdx + 1; end; Memo1.Lines.Add('All signatures were successfully verified.'); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.