"1012",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100052",
"VK_STAMP" => "8",
"VK_AMOUNT" => "375.12",
"VK_CURR" => "EUR",
"VK_REF" => "84",
"VK_MSG" => "Plastok tellimus 26.02.2021 12:26 Ref.:8",
"VK_RETURN" => "https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/",
"VK_CANCEL" => "https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/",
"VK_DATETIME" => "2021-02-26T12:26:27+0000",
"VK_LANG" => "EST",
"VK_ENCODING" => "UTF-8"
);
// STEP 3. Generate data to be signed
// ==================================
// Data to be signed is in the form of XXXYYYYY where XXX is 3 char
// zero padded length of the value and YYY the value itself
// NB! Swedbank expects symbol count, not byte count with UTF-8,
// so use `mb_strlen` instead of `strlen` to detect the length of a string
$data = str_pad (mb_strlen($fields["VK_SERVICE"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_SERVICE"] . /* 1012 */
str_pad (mb_strlen($fields["VK_VERSION"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_VERSION"] . /* 008 */
str_pad (mb_strlen($fields["VK_SND_ID"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_SND_ID"] . /* uid100052 */
str_pad (mb_strlen($fields["VK_STAMP"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_STAMP"] . /* 8 */
str_pad (mb_strlen($fields["VK_AMOUNT"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_AMOUNT"] . /* 375.12 */
str_pad (mb_strlen($fields["VK_CURR"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_CURR"] . /* EUR */
str_pad (mb_strlen($fields["VK_REF"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_REF"] . /* 84 */
str_pad (mb_strlen($fields["VK_MSG"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_MSG"] . /* Plastok tellimus 26.02.2021 12:26 Ref.:8 */
str_pad (mb_strlen($fields["VK_RETURN"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_RETURN"] . /* https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/ */
str_pad (mb_strlen($fields["VK_CANCEL"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_CANCEL"] . /* https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/ */
str_pad (mb_strlen($fields["VK_DATETIME"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_DATETIME"]; /* 2021-02-26T12:26:27+0000 */
/* $data = "0041012003008009uid1000520018006375.12003EUR00284040Plastok tellimus 26.02.2021 12:26 Ref.:8066https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/066https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/0242021-02-26T12:26:27+0000"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* b0VV9Ni/dv+tQ9uIc10A5u979nxDBL73bJtwdm45TH2n18jQrALG1A/9xZ3cSAZqe26Q2qsK/nJ8hPb/vTCj1DV4+Dk7fXZrZE3r1Vtf4j+0G3Ynkc4x9iAlp6N0a8c/CP2xOtZlq95o3EikYuDzyXQdvyei9Af3fCL4TX1ht+wQy1xlDi0k+LnBicUSqNh4PJB4ZgN08SPwPNz1WPtSMeGLMc2qdnsum3NjgknV6MXm80R1ywyfWbuZINnIzGioPOP5q1nH2b8dfH9Z9cml3Ra3O21pF3y9rvhqbOh3Y3lnEcdY3c8mg4iMSjnTIB3NAYxdHurUIe7ld6eM7g47aw== */
$fields["VK_MAC"] = base64_encode($signature);
// STEP 5. Generate POST form with payment data that will be sent to the bank
// ==========================================================================
?>
Makse teostamise näidisrakendus "Swedbank"