Sample code for 30+ languages & platforms
PowerBuilder

HMAC SHA-1 to Match RFC 2022 Test Vectors

See more Encryption Examples

Demonstrates using Chilkat in _LANGUAGE_ to computer HMAC SHA-1 message authentication codes to match the test vectors given by RFC 2202.

Chilkat PowerBuilder Downloads

PowerBuilder
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
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 = "sha-1"
loo_Crypt.MacAlgorithm = "hmac"

// Set the HMAC key:
loo_Crypt.SetMacKeyEncoded("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b","hex")
ls_Mac = loo_Crypt.MacStringENC("Hi There")
Write-Debug ls_Mac

loo_Crypt.SetMacKeyEncoded("Jefe","ansi")
ls_Mac = loo_Crypt.MacStringENC("what do ya want for nothing?")
Write-Debug ls_Mac


destroy loo_Crypt