"1012",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100036",
"VK_STAMP" => "3513790",
"VK_AMOUNT" => "8.85",
"VK_CURR" => "EUR",
"VK_REF" => "35137906",
"VK_MSG" => "Pangalink: 3513790",
"VK_RETURN" => "http://localhost:81/payment/callback/order/bank",
"VK_CANCEL" => "http://localhost:81/payment/callback/order/bank",
"VK_DATETIME" => "2025-01-23T13:24:41+0200",
"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"] . /* 3513790 */
str_pad (mb_strlen($fields["VK_AMOUNT"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_AMOUNT"] . /* 8.85 */
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"] . /* 35137906 */
str_pad (mb_strlen($fields["VK_MSG"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_MSG"] . /* Pangalink: 3513790 */
str_pad (mb_strlen($fields["VK_RETURN"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_RETURN"] . /* http://localhost:81/payment/callback/order/bank */
str_pad (mb_strlen($fields["VK_CANCEL"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_CANCEL"] . /* http://localhost:81/payment/callback/order/bank */
str_pad (mb_strlen($fields["VK_DATETIME"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_DATETIME"]; /* 2025-01-23T13:24:41+0200 */
/* $data = "0041012003008009uid10003600735137900048.85003EUR00835137906018Pangalink: 3513790047http://localhost:81/payment/callback/order/bank047http://localhost:81/payment/callback/order/bank0242025-01-23T13:24:41+0200"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* YGVrIOLz3xtAvzFhc23ou6Oz3d/2j7lvRLOy4VBF687IEjVjtHvgCAf/8GpiTKCoV726NPR0oGo39guP6n/DtFaYdT5JjhjnC6j55nOLQaOybEV3p7IEagUZn+h8irb0dKa5T+qwWn+uo5uFivfVEMLnyNXrymQVFqtnVGVLEnh+VhZCGeOfLKiuSaQsPs07IauzTRf+PYON8WIVxt5QG0w6IILCDxIqeMl4AHuxKBftfjYsy3kuLYJ3/C1owngmUCiEVnthhTMZkDwtWgdjh+4cHNCs747+EQcSPPN7B/2WKaXyPtfFGo5b2DT93Xvlf4KAs8AyNxpDcS7kL+wJqQ== */
$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"