"4012",
"VK_VERSION" => "008",
"VK_SND_ID" => "uid100049",
"VK_REC_ID" => "LHV",
"VK_NONCE" => "3",
"VK_RETURN" => "http://127.0.0.1:52355/auth/complete/",
"VK_DATETIME" => "2020-12-29T13:49:27+0000",
"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! LHV 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"] . /* 4012 */
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"] . /* uid100049 */
str_pad (mb_strlen($fields["VK_REC_ID"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_REC_ID"] . /* LHV */
str_pad (mb_strlen($fields["VK_NONCE"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_NONCE"] . /* 3 */
str_pad (mb_strlen($fields["VK_RETURN"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_RETURN"] . /* http://127.0.0.1:52355/auth/complete/ */
str_pad (mb_strlen($fields["VK_DATETIME"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_DATETIME"] . /* 2020-12-29T13:49:27+0000 */
str_pad (mb_strlen($fields["VK_RID"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_RID"]; /* */
/* $data = "0044012003008009uid100049003LHV0013037http://127.0.0.1:52355/auth/complete/0242020-12-29T13:49:27+0000000"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* o1IE5L32iIh/xiuH5CNehSsNO+LNsXqplS8QonUrf0JKHmv93RGKPwmQ/lHHwvey4pFy1KztiYxSN8TKqc79WDpDWo36dkYYIIfqgh+yAE1T/NBMi9g1iMbRgRjkzxchLrsRA7giXmyrmfK483uO9pYKdihyRLHf/bVW/wrtCRey/sMfcws9N3b5ClXnRc68vfgPEH4/i8hcXbmlMSca6JrFTaTuFGi67N8gLtPe11WuM+/PW/7A0B/09zuOZevCL563XTr7b15Mqh9kgo/0RtKXx09gyXJLIPbEpwj878LqPcgQ2u0Al8UwytjNwb8dB61WhNIZcP5iOhbFHxepSA== */
$fields["VK_MAC"] = base64_encode($signature);
// STEP 5. Generate POST form with payment data that will be sent to the bank
// ==========================================================================
?>
Autentimise näidisrakendus "LHV"