"1012",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100036",
"VK_STAMP" => "7",
"VK_AMOUNT" => "2.58",
"VK_CURR" => "EUR",
"VK_REF" => "71",
"VK_MSG" => "Plastok tellimus 26.02.2021 11:59 Ref.:7",
"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-26T11:59:46+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! SEB 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"] . /* uid100036 */
str_pad (mb_strlen($fields["VK_STAMP"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_STAMP"] . /* 7 */
str_pad (mb_strlen($fields["VK_AMOUNT"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_AMOUNT"] . /* 2.58 */
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"] . /* 71 */
str_pad (mb_strlen($fields["VK_MSG"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_MSG"] . /* Plastok tellimus 26.02.2021 11:59 Ref.:7 */
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-26T11:59:46+0000 */
/* $data = "0041012003008009uid10003600170042.58003EUR00271040Plastok tellimus 26.02.2021 11:59 Ref.:7066https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/066https://api.plastok.pastel.thorgate.eu/d/banks/thorbanks_response/0242021-02-26T11:59:46+0000"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* yWmVCWSy9a1p+te0AJ6plBfyV99M97HaxM/h5372NWqGDBZPMl+d58EC7zzzarfozkWcNN6SRmFYMlhV5JlQBMgNX7pGjGSW5iFXMScNvialNU1iVNMRbUsclqcYwGwQzIjvLkgqfZfXvrsZvZP+zyHPNQcu9OHd1bx+rsHfzcCOukH11ruYWf0f6h4PSLiS5GZba98caPQzeDEN2td7kB8DmHrYEYDJD9nh5poPUOsDk/NaW03oe7coPg/Cq20P53tk+HztvMPCawOVOGJ0YzIwGlThvWqHW2cBT3hfWCjcEhyjlKYbD/cMm1JBgvb7FJVMbP3/XebYHk+ybMitzQ== */
$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 "SEB"