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 DLL) Duplicate openssl dgst -sha256 -verify pubKey.pem -signature signature.sig in.datDemonstrates how to duplicate this OpenSSL command: openssl dgst -sha256 -verify pubKey.pem -signature signature.sig in.datThe in.dat file contains the original data that was signed, and can contain text or binary data of any type. The above OpenSSL command does the following:
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, BinData, Rsa, PublicKey; ... procedure TForm1.Button1Click(Sender: TObject); var pubKey: HCkPublicKey; success: Boolean; bdFileData: HCkBinData; bdSig: HCkBinData; rsa: HCkRsa; begin // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. pubKey := CkPublicKey_Create(); // Load the public key from an PEM file: success := CkPublicKey_LoadFromFile(pubKey,'pubKey.pem'); if (success <> True) then begin Memo1.Lines.Add(CkPublicKey__lastErrorText(pubKey)); Exit; end; // Load the data of the original file that was signed. bdFileData := CkBinData_Create(); success := CkBinData_LoadFile(bdFileData,'in.dat'); // Load the signature. bdSig := CkBinData_Create(); success := CkBinData_LoadFile(bdSig,'signature.sig'); rsa := CkRsa_Create(); // Import the public key into the RSA component: success := CkRsa_ImportPublicKeyObj(rsa,pubKey); if (success <> True) then begin Memo1.Lines.Add(CkRsa__lastErrorText(rsa)); Exit; end; // OpenSSL uses big-endian. CkRsa_putLittleEndian(rsa,False); success := CkRsa_VerifyBd(rsa,bdFileData,'sha256',bdSig); if (success <> True) then begin Memo1.Lines.Add(CkRsa__lastErrorText(rsa)); Memo1.Lines.Add('The signature was invalid.'); Exit; end; Memo1.Lines.Add('The signature was verified.'); CkPublicKey_Dispose(pubKey); CkBinData_Dispose(bdFileData); CkBinData_Dispose(bdSig); CkRsa_Dispose(rsa); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.