"4011",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100010",
"VK_REPLY" => "3012",
"VK_RETURN" => "https://banks.pastel.thorgate.eu/project/ivcWCcFZX07kEGjc?auth_action=success",
"VK_DATETIME" => "2025-01-15T09:20:07+0000",
"VK_RID" => "1736932807586",
"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! Danske 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"] . /* 4011 */
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"] . /* uid100010 */
str_pad (mb_strlen($fields["VK_REPLY"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_REPLY"] . /* 3012 */
str_pad (mb_strlen($fields["VK_RETURN"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_RETURN"] . /* https://banks.pastel.thorgate.eu/project/ivcWCcFZX07kEGjc?auth_action=success */
str_pad (mb_strlen($fields["VK_DATETIME"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_DATETIME"] . /* 2025-01-15T09:20:07+0000 */
str_pad (mb_strlen($fields["VK_RID"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_RID"]; /* 1736932807586 */
/* $data = "0044011003008009uid1000100043012077https://banks.pastel.thorgate.eu/project/ivcWCcFZX07kEGjc?auth_action=success0242025-01-15T09:20:07+00000131736932807586"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* S3nbE9QDsn3ptMDBubm6rv49Cwmd+osfCWE7nl0t3U1z9NhPGTLaR02fV25pfwiikGz3W8EoYD37RqOUMplMOmtU77Zh66X+3fTBwQZOQl44bnffSyXRl7c33PqYRkGPbchOy7HARAysfrp6dL89qLdwZS0jy5vQBOtWHWtF/WHCkEzQoAOBaglokGyt30hWsyodM1MyuA/LHNAZxBYfrpTpfuP/m+Xv5QK2dPYJboLcG3VYVCb1mFt/ujtXXSCVn8XncayjhZffRdfeVcBZhCcXxunmLHm8ww5q+epzzaiQnzRvwNEoi5XhVBjILOmR0R93yBRmnfsdPw6p0G81nA== */
$fields["VK_MAC"] = base64_encode($signature);
// STEP 5. Generate POST form with payment data that will be sent to the bank
// ==========================================================================
?>
Autentimise näidisrakendus "Danske"