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) Encrypting or Hashing Hex or Base64 Encoded Binary DataThis example demonstrates how to encrypt binary input data that is in an encoded string form, such as "hex" or "base64". The goal is to do the following:
integer li_rc oleobject loo_Crypt string ls_SHexBinary string ls_Hash string ls_IvHex string ls_KeyHex string ls_EncStr string ls_DecStr // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") if li_rc < 0 then destroy loo_Crypt MessageBox("Error","Connecting to COM object failed") return end if ls_SHexBinary = "9D4203A3FF07791A1CD7FB0075D179E14E8B9DBEBFDE24F6D04613B8397B328E" // The input is hex-encoded binary data, so set the Charset property = "hex" // The Charset can also be "base64". loo_Crypt.Charset = "hex" // The output will be encoded to hex also. loo_Crypt.EncodingMode = "hex" loo_Crypt.HashAlgorithm = "ripemd160" ls_Hash = loo_Crypt.HashStringENC(ls_SHexBinary) Write-Debug "RIPEMD160: " + ls_Hash // Important: This example requires Chilkat v9.5.0.49 or greater to work correctly. // The same can be accomplished w/ encryption: loo_Crypt.CryptAlgorithm = "aes" loo_Crypt.CipherMode = "cbc" loo_Crypt.KeyLength = 256 loo_Crypt.PaddingScheme = 0 loo_Crypt.Charset = "hex" loo_Crypt.EncodingMode = "hex" ls_IvHex = "000102030405060708090A0B0C0D0E0F" loo_Crypt.SetEncodedIV(ls_IvHex,"hex") ls_KeyHex = "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F" loo_Crypt.SetEncodedKey(ls_KeyHex,"hex") ls_EncStr = loo_Crypt.EncryptStringENC(ls_SHexBinary) Write-Debug ls_EncStr // Important: This example requires Chilkat v9.5.0.49 or greater to work correctly. ls_DecStr = loo_Crypt.DecryptStringENC(ls_EncStr) Write-Debug ls_DecStr destroy loo_Crypt |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.