Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

DataFlex Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(DataFlex) Verify an XML Signature with Multiple References

Demonstrates how to verify an XML digital signature that contains multiple references.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Variant vSbXml
    Handle hoSbXml
    Boolean iSuccess
    Handle hoVerifier
    Boolean iVerifyReferenceDigests
    Boolean iVerified
    Boolean iSignedInfoVerified
    Integer iNumRefs
    Integer i
    Boolean iRefDigestVerified
    String sTemp1

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    // An example of an enveloping XML signature with mulitple references is available at
    // https://www.chilkatsoft.com/exampleData/envelopedMultipleRefs.xml

    // This example will show how to verify the signature and all references, and also how
    // to verify each reference individually.  This is useful to distinguish which part
    // of the XML signature validation failed.  It could be that one or more of the references
    // failed because of a hash computation mismatch.  Or it could be that the signature over
    // the SignedInfo failed.  

    // First, let's grab the sample XML signature.
    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End
    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbXml
    If (Not(IsComObjectCreated(hoSbXml))) Begin
        Send CreateComObject of hoSbXml
    End
    Get pvComObject of hoSbXml to vSbXml
    Get ComQuickGetSb Of hoHttp "https://www.chilkatsoft.com/exampleData/envelopedMultipleRefs.xml" vSbXml To iSuccess
    If (iSuccess <> True) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Load the XML containing the signature to be verified.
    Get Create (RefClass(cComChilkatXmlDSig)) To hoVerifier
    If (Not(IsComObjectCreated(hoVerifier))) Begin
        Send CreateComObject of hoVerifier
    End
    Get pvComObject of hoSbXml to vSbXml
    Get ComLoadSignatureSb Of hoVerifier vSbXml To iSuccess
    If (iSuccess <> True) Begin
        Get ComLastErrorText Of hoVerifier To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Move True To iVerifyReferenceDigests

    // The quick way to validate all references and the signature over the SignedInfo
    // is to call VerifySignature with verifyReferenceDigests equal to True.
    Get ComVerifySignature Of hoVerifier iVerifyReferenceDigests To iVerified
    Showln "Signature and all reference digests verified = " iVerified

    // Let's pretend the call to VerifySignature returned False.  Something did not validate.
    // Was it one or more of the References that did not hash to the correct value?
    // Or was it the signature over the SignedInfo that failed?
    // We can check just the signature over the SignedInfo by passing False to VerifySignature.
    // This allows us to skip the hashing and checking each Reference.  
    Move False To iVerifyReferenceDigests
    Get ComVerifySignature Of hoVerifier iVerifyReferenceDigests To iSignedInfoVerified
    Showln "Neglecting the reference hashes, the SignedInfo validation result = " iSignedInfoVerified

    // We can also verify each reference digest separately
    Get ComNumReferences Of hoVerifier To iNumRefs
    Move 0 To i
    While (i < iNumRefs)
        Get ComVerifyReferenceDigest Of hoVerifier i To iRefDigestVerified
        Showln "Reference " i " digest verified = " iRefDigestVerified
        Move (i + 1) To i
    Loop

    // For this sample XML signature with 3 References, we get the following output:

    // Signature and all reference digests verified = True
    // Neglecting the reference hashes, the SignedInfo validation result = True
    // Reference 0 digest verified = True
    // Reference 1 digest verified = True
    // Reference 2 digest verified = Tru


End_Procedure

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.