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
(PowerBuilder) Verify the RSA Signature of a SHA256 HashSee more RSA ExamplesDemonstrates how to verify an RSA signature of a SHA256 hash.
integer li_rc oleobject loo_PubKey integer li_Success oleobject loo_Rsa oleobject loo_BdHash oleobject loo_BdSig string ls_Enc // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Let's say you have a file containing the 32-bytes of a SHA256 hash, // and a file that is an RSA signature of those 32 bytes. // Here's how you verify using the RSA public key found in a PEM. loo_PubKey = create oleobject // Use "Chilkat_9_5_0.PublicKey" for versions of Chilkat < 10.0.0 li_rc = loo_PubKey.ConnectToNewObject("Chilkat.PublicKey") if li_rc < 0 then destroy loo_PubKey MessageBox("Error","Connecting to COM object failed") return end if li_Success = loo_PubKey.LoadFromFile("rsaPubKey.pem") if li_Success = 0 then Write-Debug loo_PubKey.LastErrorText destroy loo_PubKey return end if loo_Rsa = create oleobject // Use "Chilkat_9_5_0.Rsa" for versions of Chilkat < 10.0.0 li_rc = loo_Rsa.ConnectToNewObject("Chilkat.Rsa") // Get the public key. li_Success = loo_Rsa.ImportPublicKeyObj(loo_PubKey) if li_Success = 0 then Write-Debug loo_Rsa.LastErrorText destroy loo_PubKey destroy loo_Rsa return end if // Get the 32-byte SHA256 hash. loo_BdHash = create oleobject // Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0 li_rc = loo_BdHash.ConnectToNewObject("Chilkat.BinData") li_Success = loo_BdHash.LoadFile("myHash.sha256") if li_Success = 0 then Write-Debug "Failed to load SHA256 hash." destroy loo_PubKey destroy loo_Rsa destroy loo_BdHash return end if // Get the RSA signature to be validated. loo_BdSig = create oleobject // Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0 li_rc = loo_BdSig.ConnectToNewObject("Chilkat.BinData") li_Success = loo_BdSig.LoadFile("mySig.sig") if li_Success = 0 then Write-Debug "Failed to load RSA signature." destroy loo_PubKey destroy loo_Rsa destroy loo_BdHash destroy loo_BdSig return end if // Verify the signature against the SHA256 hash. ls_Enc = "base64" loo_Rsa.EncodingMode = ls_Enc li_Success = loo_Rsa.VerifyHashENC(loo_BdHash.GetEncoded(ls_Enc),"sha256",loo_BdSig.GetEncoded(ls_Enc)) if li_Success = 0 then Write-Debug loo_Rsa.LastErrorText destroy loo_PubKey destroy loo_Rsa destroy loo_BdHash destroy loo_BdSig return end if Write-Debug "Signature validated." destroy loo_PubKey destroy loo_Rsa destroy loo_BdHash destroy loo_BdSig |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.