"1012",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100036",
"VK_STAMP" => "66433",
"VK_AMOUNT" => "8.7",
"VK_CURR" => "EUR",
"VK_REF" => "664336",
"VK_MSG" => "Order nr. 66433",
"VK_RETURN" => "http://localhost/payment/callback/order/bank",
"VK_CANCEL" => "http://localhost/payment/callback/order/bank",
"VK_DATETIME" => "2022-06-02T10:42:38+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"] . /* 66433 */
str_pad (mb_strlen($fields["VK_AMOUNT"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_AMOUNT"] . /* 8.7 */
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"] . /* 664336 */
str_pad (mb_strlen($fields["VK_MSG"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_MSG"] . /* Order nr. 66433 */
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-06-02T10:42:38+0300 */
/* $data = "0041012003008009uid100036005664330038.7003EUR006664336015Order nr. 66433044http://localhost/payment/callback/order/bank044http://localhost/payment/callback/order/bank0242022-06-02T10:42:38+0300"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* VG9T/S99U/7IQr+XoFO4UnsVk72/xew97YqOul3vT+ysrHShz9o4Go13b9QK3ZCYOdkK+2P6YadF95oCuSI1AuK+P5tzG5bDO8S5Tsu5wHHtSZh/yXk8XjFwNTz/xX0e2ZCqtoS6+b5U6CjsCZxbhmqTTxPAGHd9nlFLanOjdOTAbC6u6AvG3hEJ69axT7XbMb4ZW0YMiR3aLmeCKH5dDEX2/neGh5HSd/OLeRKVKflUPNxXDcEzZhVVHc7OOF0w3Ph0MB6/DRbZWUkbRwB638kfM4sJ0aokJ/o+pzPlBFeJ3tobnTxtZQzxHAQQ8tbt9n7PtpHlJrjdiYlx68hZQg== */
$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"