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) DSA R,S Signature Values

See more DSA Examples

Creates a DSA signature. Gets r,s values from the signature. Re-creates the DSA signature ASN.1 from the r,s values. Then verifies the signature using the re-created ASN.1 DSA signature.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoCrypt
    String sHashStr
    Handle hoDsa
    String sPemPrivateKey
    Boolean iSuccess
    String sAsnSig
    Handle hoAsn
    Handle hoXml
    String r
    String s
2    Handle hoDsa2
    String sPemPublicKey
    String sTemp1

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

    Get Create (RefClass(cComChilkatCrypt2)) To hoCrypt
    If (Not(IsComObjectCreated(hoCrypt))) Begin
        Send CreateComObject of hoCrypt
    End

    Set ComEncodingMode Of hoCrypt To "hex"
    Set ComHashAlgorithm Of hoCrypt To "sha-1"

    Get ComHashFileENC Of hoCrypt "qa_data/hamlet.xml" To sHashStr
    Showln "hash to sign: " sHashStr

    Get Create (RefClass(cComChilkatDsa)) To hoDsa
    If (Not(IsComObjectCreated(hoDsa))) Begin
        Send CreateComObject of hoDsa
    End

    Get ComLoadText Of hoDsa "qa_data/dsa/dsaPrivKey2.pem" To sPemPrivateKey
    Get ComFromPem Of hoDsa sPemPrivateKey To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoDsa To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Load the hash to be signed into the DSA object:
    Get ComSetEncodedHash Of hoDsa "hex" sHashStr To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoDsa To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Sign the hash.
    Get ComSignHash Of hoDsa To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoDsa To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Get the ASN.1 signature.
    Get ComGetEncodedSignature Of hoDsa "base64" To sAsnSig
    Showln "Signature: " sAsnSig

    // Examine the details of the ASN.1 signature.
    // We want to get the r,s values as hex strings..
    Get Create (RefClass(cComChilkatAsn)) To hoAsn
    If (Not(IsComObjectCreated(hoAsn))) Begin
        Send CreateComObject of hoAsn
    End
    Get ComLoadEncoded Of hoAsn sAsnSig "base64" To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoAsn To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Get the ASN.1 as XML.
    Get Create (RefClass(cComChilkatXml)) To hoXml
    If (Not(IsComObjectCreated(hoXml))) Begin
        Send CreateComObject of hoXml
    End
    Get ComAsnToXml Of hoAsn To sTemp1
    Get ComLoadXml Of hoXml sTemp1 To iSuccess
    Showln "Signature as XML: "
    Get ComGetXml Of hoXml To sTemp1
    Showln sTemp1

    // Sample XML shown here.
    // The r and s values are the two hex strings in the XML.

    // <?xml version="1.0" encoding="utf-8"?>
    // <sequence>
    //     <int>2C187F3AB6E47A66497B86CE97BB39E2133810F5</int>
    //     <int>588E53D3F7B69636B48FD7175E99A3961BD7D775</int>
    // </sequence>

    // Pretend we're starting with r,s
    Move "2C187F3AB6E47A66497B86CE97BB39E2133810F5" To r
    Move "588E53D3F7B69636B48FD7175E99A3961BD7D775" To s

    // Build the XML that will be converted to ASN.1
    Send ComClear To hoXml
    Set ComTag Of hoXml To "sequence"
    Send ComNewChild2 To hoXml "int" r
    Send ComNewChild2 To hoXml "int" s

    // Convert the XML to ASN.1
    Get ComGetXml Of hoXml To sTemp1
    Get ComLoadAsnXml Of hoAsn sTemp1 To iSuccess

    // Emit the signature as DER encoded ASN.1 (base64)
    Get ComGetEncodedDer Of hoAsn "base64" To sAsnSig

    // --------------------------------------------------------------------
    // Verify the signature using the asnSig we built from the r,s values
    // --------------------------------------------------------------------

    Get Create (RefClass(cComChilkatDsa)) To hoDsa2
    If (Not(IsComObjectCreated(hoDsa2))) Begin
        Send CreateComObject of hoDsa2
    End

    // Load the DSA public key to be used for verification:

    Get ComLoadText Of hoDsa2 "qa_data/dsa/dsaPubKey2.pem" To sPemPublicKey
    Get ComFromPublicPem Of hoDsa2 sPemPublicKey To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoDsa2 To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Load the hash to be verified.
    Get ComSetEncodedHash Of hoDsa2 "hex" sHashStr To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoDsa2 To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Load the ASN.1 signature:
    Get ComSetEncodedSignature Of hoDsa2 "base64" sAsnSig To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoDsa2 To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Verify:
    Get ComVerify Of hoDsa2 To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoDsa2 To sTemp1
        Showln sTemp1
    End
    Else Begin
        Showln "DSA Signature Verified!"
    End



End_Procedure

 

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