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) HMAC MD5 to Match RFC 2022 Test VectorsDemonstrates using Chilkat in PowerBuilder to computer HMAC MD5 message authentication codes to match the test vectors given by RFC 2202.
integer li_rc oleobject loo_Crypt string ls_Mac // This example assumes 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 // The output will be Hex, so set the EncodingMode: loo_Crypt.EncodingMode = "hex" // Set the hash algorithm: // Choices are: md5, sha-1, sha256, sha384, sha512, md2, haval loo_Crypt.HashAlgorithm = "md5" // Set the HMAC key: loo_Crypt.SetHmacKeyEncoded("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b","hex") ls_Mac = loo_Crypt.HmacStringENC("Hi There") Write-Debug ls_Mac loo_Crypt.SetHmacKeyEncoded("Jefe","ansi") ls_Mac = loo_Crypt.HmacStringENC("what do ya want for nothing?") Write-Debug ls_Mac destroy loo_Crypt |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.