"1002",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100010",
"VK_STAMP" => "15",
"VK_AMOUNT" => "0.01",
"VK_CURR" => "EUR",
"VK_ACC" => "LT657300010135270430",
"VK_NAME" => "BIGBANK AS FILIALAS",
"VK_REF" => "152",
"VK_MSG" => "5925d881f526d3be9c44fd02b229a54e",
"VK_RETURN" => "https://localhost:8002/r",
"VK_CANCEL" => "https://localhost:8002/r",
"VK_LANG" => "LIT",
"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! Swedbank Lithuania 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"] . /* 1002 */
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"] . /* uid100010 */
str_pad (mb_strlen($fields["VK_STAMP"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_STAMP"] . /* 15 */
str_pad (mb_strlen($fields["VK_AMOUNT"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_AMOUNT"] . /* 0.01 */
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"] . /* 152 */
str_pad (mb_strlen($fields["VK_MSG"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_MSG"]; /* 5925d881f526d3be9c44fd02b229a54e */
/* $data = "0041002003008009uid100010002150040.01003EUR0031520325925d881f526d3be9c44fd02b229a54e"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* Prp1hekr9F/0Y/kBEwxxzbybI+Gm27U9+pTZwVhe/JtVzETyQ7/sa2IjLCkIRJJF6BN/RnfaKOi16TTv8Jn9QojcwOd3MqAGmsJKMV8CdH5ItSEqFDo5tTx0DGFPwLmAnfDhGTpRDmiobwllREAKoovTB2KVbjgrJsUZSxoNB+ngto7V3pQWNd45oWoZwi2LKMe1Hf6lorvoPIXSfnkUATUqHc69bgBZndVzAd54PW3fTHBmFJ5tHOsCjDJjODkN3iS/Sg3vqP7avQcpIHMOstm60h+xsp+lZQC/2ehztDACf15pvqRwmLCuHY3Vt6uDhks0h9kqdIGHGNfvldcTUg== */
$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 "Swedbank Lithuania"