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
(Swift 3,4,5...) Plaza API (bol.com) HMAC-SHA256 AuthenticationDemonstrates how to compute the Authorization header for bol.com using HMAC-SHA256.
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let crypt = CkoCrypt2()! crypt.encodingMode = "base64" crypt.hashAlgorithm = "sha256" crypt.macAlgorithm = "hmac" var publicKey: String? = "oRNWbHFXtAECmhnZmEndcjLIaSKbRMVE" var privateKey: String? = "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 var http_verb: String? = "GET" var content_type: String? = "application/xml" var x_bol_date: String? = "Wed, 17 Feb 2016 00:00:00 GMT" var uri: String? = "/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. let sb = CkoStringBuilder()! sb.append(http_verb) sb.append("\n\n") sb.append(content_type) sb.append("\n") sb.append(x_bol_date) sb.append("\nx-bol-date:") sb.append(x_bol_date) sb.append("\n") sb.append(uri) print("[\(sb.getAsString()!)]") // Set the HMAC key: crypt.setMacKeyEncoded(privateKey, encoding: "ascii") var mac: String? = crypt.macStringENC(sb.getAsString()) // The answer should be: nqzLWvXI1eBhBXrRx5NF23V5hS8Q1xWCloJzPi/RAts= print("\(mac!)") // The last step is to append the public key with the signature let sbHeader = CkoStringBuilder()! sbHeader.append(publicKey) sbHeader.append(":") sbHeader.append(mac) var hdrValue: String? = sbHeader.getAsString() print("\(hdrValue!)") } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.