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) RSA Encrypt with SHA-256 hash function and SHA-1 mask functionHow can this Javascript be duplicated using Chilkat? function a(e, t) { var r = s.pki.publicKeyFromPem(e) , n = r.encrypt(t, "RSA-OAEP", { md: s.md.sha256.create(), mgf1: { md: s.md.sha1.create() } }); return s.util.encode64(n) } Note: The OAEP padding uses random bytes in the padding, and therefore each time encryption happens, even using the same data and key, the result will be different -- but still valid. One should not expect to get the same output.
integer li_rc oleobject loo_Pubkey oleobject loo_SbPem integer li_BCrlf integer li_Success string ls_OriginalData oleobject loo_Crypt oleobject loo_Rsa integer li_BUsePrivateKey string ls_EncryptedStr // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. 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 loo_SbPem = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbPem.ConnectToNewObject("Chilkat.StringBuilder") li_BCrlf = 1 loo_SbPem.AppendLine("-----BEGIN PUBLIC KEY-----",li_BCrlf) loo_SbPem.AppendLine("MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA33TqqLR3eeUmDtHS89qF",li_BCrlf) loo_SbPem.AppendLine("3p4MP7Wfqt2Zjj3lZjLjjCGDvwr9cJNlNDiuKboODgUiT4ZdPWbOiMAfDcDzlOxA",li_BCrlf) loo_SbPem.AppendLine("04DDnEFGAf+kDQiNSe2ZtqC7bnIc8+KSG/qOGQIVaay4Ucr6ovDkykO5Hxn7OU7s",li_BCrlf) loo_SbPem.AppendLine("Jp9TP9H0JH8zMQA6YzijYH9LsupTerrY3U6zyihVEDXXOv08vBHk50BMFJbE9iwF",li_BCrlf) loo_SbPem.AppendLine("wnxCsU5+UZUZYw87Uu0n4LPFS9BT8tUIvAfnRXIEWCha3KbFWmdZQZlyrFw0buUE",li_BCrlf) loo_SbPem.AppendLine("f0YN3/Q0auBkdbDR/ES2PbgKTJdkjc/rEeM0TxvOUf7HuUNOhrtAVEN1D5uuxE1W",li_BCrlf) loo_SbPem.AppendLine("SwIDAQAB",li_BCrlf) loo_SbPem.AppendLine("-----END PUBLIC KEY-----",li_BCrlf) // Load the public key object from the PEM. li_Success = loo_Pubkey.LoadFromString(loo_SbPem.GetAsString()) if li_Success <> 1 then Write-Debug loo_Pubkey.LastErrorText destroy loo_Pubkey destroy loo_SbPem return end if ls_OriginalData = "This is the original data to be SHA-256 hashed and RSA encrypted." // First we SHA-256 hash the original data. loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") loo_Crypt.HashAlgorithm = "SHA-256" loo_HashBytes = loo_Crypt.HashString(ls_OriginalData) // Now to RSA encrypt using OAEP padding with SHA-1 for the mask function. loo_Rsa = create oleobject // Use "Chilkat_9_5_0.Rsa" for versions of Chilkat < 10.0.0 li_rc = loo_Rsa.ConnectToNewObject("Chilkat.Rsa") loo_Rsa.OaepPadding = 1 loo_Rsa.OaepHash = "SHA1" loo_Rsa.ImportPublicKeyObj(loo_Pubkey) loo_Rsa.EncodingMode = "base64" // Note: The OAEP padding uses random bytes in the padding, and therefore each time encryption happens, // even using the same data and key, the result will be different -- but still valid. One should not expect // to get the same output. li_BUsePrivateKey = 0 ls_EncryptedStr = loo_Rsa.EncryptBytesENC(loo_HashBytes,li_BUsePrivateKey) if loo_Rsa.LastMethodSuccess <> 1 then Write-Debug loo_Rsa.LastErrorText destroy loo_Pubkey destroy loo_SbPem destroy loo_Crypt destroy loo_Rsa return end if Write-Debug "Base64 RSA encrypted output: " + ls_EncryptedStr destroy loo_Pubkey destroy loo_SbPem destroy loo_Crypt destroy loo_Rsa |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.