Skip to content

Instantly share code, notes, and snippets.

@aalfiann
Created February 10, 2018 16:18
Show Gist options
  • Save aalfiann/4470cdbdd7bd7e02e9ac23f45ca89707 to your computer and use it in GitHub Desktop.
Save aalfiann/4470cdbdd7bd7e02e9ac23f45ca89707 to your computer and use it in GitHub Desktop.
JS Simple encryption
var key = "SXGWLZPDOKFIVUHJYTQBNMACERxswgzldpkoifuvjhtybqmncare";
// matches ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ
function encodeStr(uncoded) {
uncoded = uncoded.toUpperCase().replace(/^\s+|\s+$/g,"");
var coded = "";
var chr;
for (var i = uncoded.length - 1; i >= 0; i--) {
chr = uncoded.charCodeAt(i);
coded += (chr >= 65 && chr <= 90) ?
key.charAt(chr - 65 + 26*Math.floor(Math.random()*2)) :
String.fromCharCode(chr);
}
return encodeURIComponent(coded);
}
function decodeStr(coded) {
coded = decodeURIComponent(coded);
var uncoded = "";
var chr;
for (var i = coded.length - 1; i >= 0; i--) {
chr = coded.charAt(i);
uncoded += (chr >= "a" && chr <= "z" || chr >= "A" && chr <= "Z") ?
String.fromCharCode(65 + key.indexOf(chr) % 26) :
chr;
}
return uncoded;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment