"1012",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100036",
"VK_STAMP" => "2429981",
"VK_AMOUNT" => "15.9",
"VK_CURR" => "EUR",
"VK_REF" => "24299813",
"VK_MSG" => "Pangalink: 2429981",
"VK_RETURN" => "http://localhost/payment/callback/order/bank",
"VK_CANCEL" => "http://localhost/payment/callback/order/bank",
"VK_DATETIME" => "2022-08-24T18:28:46+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"] . /* 2429981 */
str_pad (mb_strlen($fields["VK_AMOUNT"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_AMOUNT"] . /* 15.9 */
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"] . /* 24299813 */
str_pad (mb_strlen($fields["VK_MSG"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_MSG"] . /* Pangalink: 2429981 */
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-24T18:28:46+0300 */
/* $data = "0041012003008009uid100036007242998100415.9003EUR00824299813018Pangalink: 2429981044http://localhost/payment/callback/order/bank044http://localhost/payment/callback/order/bank0242022-08-24T18:28:46+0300"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* EjGPbmjI+nM36hzNjcSIleTi9UsxJUzM6ayOZPGlfLdvsSLrL++pavA9mEYUDu0UaB5Tw1tNwoVQra4QeFItspTfFcduym7IoRQy9LAobJKkbh8DMzD/YyIo7jzbL5ApOx2+qpl1AeAie8zGXIq0mnVW03XkNr6RP+K3ImIgkgH7McSM+wo4d5B27Px18ZbpoMEkZYHdMVp7G6k6ZGHQ2Ovu50tg3OcL/8pVp3xxaoXiY6Zp0M7Fb0sv4/zoYcQCgIjbbLZhf1lefNh/jXoyTNEmG9WdG3L4jjhhMHqWnX7rEcMbI80NBfwcu1Aqhm39z/J9tqt6f/9kuyeE16JfMQ== */
$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"