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) RSASSA-PSS Algorithm with SHA256 HashingRSA encrypt a SHA256 hash with OAEP padding.
integer li_rc oleobject loo_Privkey integer li_Success oleobject loo_Rsa string ls_SigStr // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Privkey = create oleobject // Use "Chilkat_9_5_0.PrivateKey" for versions of Chilkat < 10.0.0 li_rc = loo_Privkey.ConnectToNewObject("Chilkat.PrivateKey") if li_rc < 0 then destroy loo_Privkey MessageBox("Error","Connecting to COM object failed") return end if // Load the private key object from a PEM file. // (To load from a PEM string, call LoadPem instead.) li_Success = loo_Privkey.LoadPemFile("somePath/myPrivateKey.pem") if li_Success <> 1 then Write-Debug loo_Privkey.LastErrorText destroy loo_Privkey 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") // Use RSA-PSS by setting OaepPadding = 1 loo_Rsa.OaepPadding = 1 // Use SHA256 loo_Rsa.OaepHash = "SHA-256" loo_Rsa.ImportPrivateKeyObj(loo_Privkey) // Generate a base64 signature. loo_Rsa.EncodingMode = "base64" ls_SigStr = loo_Rsa.SignStringENC("String to be signed","SHA-256") if loo_Rsa.LastMethodSuccess <> 1 then Write-Debug loo_Rsa.LastErrorText destroy loo_Privkey destroy loo_Rsa return end if Write-Debug "Signature: " + ls_SigStr destroy loo_Privkey destroy loo_Rsa |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.