"1012",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100036",
"VK_STAMP" => "66536",
"VK_AMOUNT" => "34.5",
"VK_CURR" => "EUR",
"VK_REF" => "665364",
"VK_MSG" => "Pangalink: 66536",
"VK_RETURN" => "http://localhost/payment/callback/order/bank",
"VK_CANCEL" => "http://localhost/payment/callback/order/bank",
"VK_DATETIME" => "2022-08-17T18:29:31+0300",
"VK_LANG" => "EST",
"VK_ACC" => "EE171010123456789017",
"VK_NAME" => "Veebimajutus",
"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"] . /* 66536 */
str_pad (mb_strlen($fields["VK_AMOUNT"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_AMOUNT"] . /* 34.5 */
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"] . /* 665364 */
str_pad (mb_strlen($fields["VK_MSG"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_MSG"] . /* Pangalink: 66536 */
str_pad (mb_strlen($fields["VK_RETURN"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_RETURN"] . /* http://localhost/payment/callback/order/bank */
str_pad (mb_strlen($fields["VK_CANCEL"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_CANCEL"] . /* http://localhost/payment/callback/order/bank */
str_pad (mb_strlen($fields["VK_DATETIME"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_DATETIME"]; /* 2022-08-17T18:29:31+0300 */
/* $data = "0041012003008009uid1000360056653600434.5003EUR006665364016Pangalink: 66536044http://localhost/payment/callback/order/bank044http://localhost/payment/callback/order/bank0242022-08-17T18:29:31+0300"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* atUy9fnC9P1S26LhiybhWbfTFiGo81u5smr6mosBmtd+FECcpHruoTktd7YGFyl4ym6P3Vi37bLBpNFOgn0SlD8KelPcxuc2hQ7HtPUxPxWQN/T96Yr1J2HhRRstiuZp7/kD+8zFUffQinCX3yE1wTBwwTHP/V63WndjqdSSa/I2nlDcPHiMwRshqI+i72Tw5VKEBJifGWH1U7kY5C1bxXxOIvMvYIjup9sWEzX1oEz71GFY0mz0Dvu9WdReqgrwS+7GH5fZcLff38RGwuUia3hChSYlAI2g7B3T84ARymalEPR/dDZ8GD7cQ/UUbfcujmjLs9PifRyb/BQed1cwXA== */
$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"