https://www.tootukassa.ee/sites/all/themes/tk_theme/js/tkUi.js?pn4jj2
// TODO: decryptEmail should not encrypt!
function decryptEmail(publKey){
$.each($(".mailSend"), function(index, value) {
var oldMail = $(this).html();
var newMail = convertEmail(oldMail, publKey);
$(this).html(newMail);
$(this).attr("href", "mailto:" + newMail);
$(this).removeClass('mailSend');
$(this).addClass('decryptedMail');
$(this).show();
});
}
var convertEmail = function (encyptEmail, publKey) {
var a = publKey;
var b = a.split("").sort().join("");
var c = encyptEmail;
var d = "";
for (var e = 0; e < c.length; e++)
d += b.charAt(a.indexOf(c.charAt(e)));
return d;
};
decryptEmail("lIdsõ-AP9+öBFJ50ÖCviÜo.wuR1cHÄK7X8Ltp2_b6z3UDmZkfäOÕhgTeyYNqü@jVQSx4aGErWnM");
вон все есть, функции, ключ, декодируй )