"4012",
        "VK_VERSION"     => "008",
        "VK_SND_ID"      => "uid100049",
        "VK_REC_ID"      => "LHV",
        "VK_NONCE"       => "3",
        "VK_RETURN"      => "http://127.0.0.1:34189/auth/complete/",
        "VK_DATETIME"    => "2020-12-29T13:54:12+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:34189/auth/complete/ */
        str_pad (mb_strlen($fields["VK_DATETIME"], "UTF-8"), 3, "0", STR_PAD_LEFT) . $fields["VK_DATETIME"] .   /* 2020-12-29T13:54:12+0000 */
        str_pad (mb_strlen($fields["VK_RID"], "UTF-8"),     3, "0", STR_PAD_LEFT) . $fields["VK_RID"];         /*  */
/* $data = "0044012003008009uid100049003LHV0013037http://127.0.0.1:34189/auth/complete/0242020-12-29T13:54:12+0000000"; */
// STEP 4. Sign the data with RSA-SHA1 to generate MAC code
// ========================================================
openssl_sign ($data, $signature, $private_key, OPENSSL_ALGO_SHA1);
/* zX4u6vSjgfpj7MjUJJ81ttidBAZQ/ctuD7S0X6bufpV4O9itv+aqAbvje6SytEO7u7Y6wW9++gRJDtG7YYsilj05acnI6HFvOqKEW7iLuHyRM0BpRSXuYlAeKDnleADlojIGaq1Vefitjd8sH8euI2O25y8Fn+R6S07wwNO/ORPyEPr9cYyObXGiu1QLQuC5mGEZpjJEu2nqqJenEldFrIR/mC2A2r51oFqgn2ZAxnO8xfNiS63ejsFHR7c2Y0DKWei44s/bT4WLT2VJmEW4nWENeE2IFutDFFJ7clrCKfZS0vYEAHu2ZM/3zRoWTQMrQVd7sCNtCDltzkdMACEYOw== */
$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"