Sample code for 30+ languages & platforms
PowerBuilder

HMAC with SHA256

See more Encryption Examples

Demonstrates how to compute a HMAC SHA256 keyed-hash message authentication code.

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 = "sha256"
loo_Crypt.MacAlgorithm = "hmac"

// Set the HMAC key:
loo_Crypt.SetMacKeyEncoded("The_API_Secret","ascii")
ls_Mac = loo_Crypt.MacStringENC("The quick brown fox jumps over the lazy dog")
Write-Debug ls_Mac


destroy loo_Crypt