Xojo Plugin
Xojo Plugin
Plaza API (bol.com) HMAC-SHA256 Authentication
See more Encryption Examples
Demonstrates how to compute the Authorization header for bol.com using HMAC-SHA256.Chilkat Xojo Plugin Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Dim crypt As New Chilkat.Crypt2
crypt.EncodingMode = "base64"
crypt.HashAlgorithm = "sha256"
crypt.MacAlgorithm = "hmac"
Dim publicKey As String
publicKey = "oRNWbHFXtAECmhnZmEndcjLIaSKbRMVE"
Dim privateKey As String
privateKey = "MaQHPOnmYkPZNgeRziPnQyyOJYytUbcFBVJBvbMKoDdpPqaZbaOiLUTWzPAkpPsZFZbJHrcoltdgpZolyNcgvvBaKcmkqFjucFzXhDONTsPAtHHyccQlLUZpkOuywMiOycDWcCySFsgpDiyGnCWCZJkNTtVdPxbSUTWVIFQiUxaPDYDXRQAVVTbSVZArAZkaLDLOoOvPzxSdhnkkJWzlQDkqsXNKfAIgAldrmyfROSyCGMCfvzdQdUQEaYZTPEoA"
// The string to sign is this:
// http_verb +'\n\n'+ content_type +'\n'+ x_bol_date +'\n'+ 'x-bol-date:'+ x_bol_date +'\n'+ uri
Dim http_verb As String
http_verb = "GET"
Dim content_type As String
content_type = "application/xml"
Dim x_bol_date As String
x_bol_date = "Wed, 17 Feb 2016 00:00:00 GMT"
Dim uri As String
uri = "/services/rest/orders/v2"
// IMPORTANT: Notice the use of underscore and hyphen (dash) chars in x-bol-date vs. x_bol_date.
// In one place hypens are used. In two places, underscore chars are used.
Dim sb As New Chilkat.StringBuilder
Dim success As Boolean
success = sb.Append(http_verb)
success = sb.Append(EndOfLine.Unix + EndOfLine.Unix)
success = sb.Append(content_type)
success = sb.Append(EndOfLine.Unix)
success = sb.Append(x_bol_date)
success = sb.Append(EndOfLine.Unix + "x-bol-date:")
success = sb.Append(x_bol_date)
success = sb.Append(EndOfLine.Unix)
success = sb.Append(uri)
System.DebugLog("[" + sb.GetAsString() + "]")
// Set the HMAC key:
success = crypt.SetMacKeyEncoded(privateKey,"ascii")
Dim mac As String
mac = crypt.MacStringENC(sb.GetAsString())
// The answer should be: nqzLWvXI1eBhBXrRx5NF23V5hS8Q1xWCloJzPi/RAts=
System.DebugLog(mac)
// The last step is to append the public key with the signature
Dim sbHeader As New Chilkat.StringBuilder
success = sbHeader.Append(publicKey)
success = sbHeader.Append(":")
success = sbHeader.Append(mac)
Dim hdrValue As String
hdrValue = sbHeader.GetAsString()
System.DebugLog(hdrValue)