Delphi ActiveX
Delphi ActiveX
ECDSA Sign and Verify
See more ECC Examples
Demonstrates how to create an ECDSA signature on the SHA256 hash of some data, and then verify.Chilkat Delphi ActiveX Downloads
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;
privKey: TPrivateKey;
bd: TChilkatBinData;
crypt: TChilkatCrypt2;
hashStr: WideString;
ecdsa: TChilkatEcc;
prng: TChilkatPrng;
sig: WideString;
asn: TChilkatAsn;
xml: TChilkatXml;
r: WideString;
s: WideString;
pubKey: TPublicKey;
ecc2: TChilkatEcc;
result: Integer;
xml2: TChilkatXml;
asn2: TChilkatAsn;
encodedSig: WideString;
begin
success := 0;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// First load an ECDSA private key to be used for signing.
privKey := TPrivateKey.Create(Self);
success := privKey.LoadEncryptedPemFile('qa_data/ecc/secp256r1-key-pkcs8-secret.pem','secret');
if (success = 0) then
begin
Memo1.Lines.Add(privKey.LastErrorText);
Exit;
end;
// Sign the SHA256 hash of some data.
bd := TChilkatBinData.Create(Self);
success := bd.LoadFile('qa_data/hamlet.xml');
if (success = 0) then
begin
Memo1.Lines.Add('Failed to load file to be hashed.');
Exit;
end;
crypt := TChilkatCrypt2.Create(Self);
crypt.HashAlgorithm := 'sha256';
crypt.EncodingMode := 'base64';
hashStr := crypt.HashBdENC(bd.ControlInterface);
ecdsa := TChilkatEcc.Create(Self);
prng := TChilkatPrng.Create(Self);
// Returns ASN.1 signature as a base64 string.
sig := ecdsa.SignHashENC(hashStr,'base64',privKey.ControlInterface,prng.ControlInterface);
Memo1.Lines.Add('sig = ' + sig);
// The signature is in ASN.1 format (which may be described as the "encoded DSS signature").
// SEQUENCE (2 elem)
// INTEGER (255 bit) 4849395540832462044300553275435608522154141569743642905628579547100940...
// INTEGER (255 bit) 3680701124244788134409868118208591399799457104230118295614152238560005...
// If you wish, you can get the r and s components of the signature like this:
asn := TChilkatAsn.Create(Self);
asn.LoadEncoded(sig,'base64');
xml := TChilkatXml.Create(Self);
xml.LoadXml(asn.AsnToXml());
Memo1.Lines.Add(xml.GetXml());
// We now have this:
// <?xml version="1.0" encoding="utf-8"?>
// <sequence>
// <int>6650D422D86BA4A228B5617604E59052591B9B2C32EF324C44D09EF67E5F0060</int>
// <int>0CFD9F6AC85042FC70F672C141BA6B2A4CAFBB906C3D907BCCC1BED62B28326F</int>
// </sequence>
// Get the "r" and "s" as hex strings
r := xml.GetChildContentByIndex(0);
s := xml.GetChildContentByIndex(1);
Memo1.Lines.Add('r = ' + r);
Memo1.Lines.Add('s = ' + s);
// --------------------------------------------------------------------
// Now verify against the hash of the original data.
// Get the corresponding public key.
pubKey := TPublicKey.Create(Self);
success := pubKey.LoadFromFile('qa_data/ecc/secp256r1-pub.pem');
if (success = 0) then
begin
Memo1.Lines.Add(pubKey.LastErrorText);
Exit;
end;
// We already have the SHA256 hash of the original data (hashStr) so no need to re-do it..
ecc2 := TChilkatEcc.Create(Self);
result := ecc2.VerifyHashENC(hashStr,sig,'base64',pubKey.ControlInterface);
if (result <> 1) then
begin
Memo1.Lines.Add(ecc2.LastErrorText);
Exit;
end;
Memo1.Lines.Add('Verified!');
// Note: If we have only r,s and wish to reconstruct the ASN.1 signature, we do it like this:
xml2 := TChilkatXml.Create(Self);
xml2.Tag := 'sequence';
xml2.NewChild2('int',r);
xml2.NewChild2('int',s);
asn2 := TChilkatAsn.Create(Self);
asn2.LoadAsnXml(xml2.GetXml());
encodedSig := asn2.GetEncodedDer('base64');
Memo1.Lines.Add('encoded DSS signature: ' + encodedSig);
// You can go to https://lapo.it/asn1js/ and copy/paste the base64 encodedSig into the online tool, then press the "decode" button.
// You will see the ASN.1 such as this:
// SEQUENCE (2 elem)
// INTEGER (255 bit) 4849395540832462044300553275435608522154141569743642905628579547100940...
// INTEGER (255 bit) 3680701124244788134409868118208591399799457104230118295614152238560005...
end;