Created
February 10, 2018 16:18
-
-
Save aalfiann/4470cdbdd7bd7e02e9ac23f45ca89707 to your computer and use it in GitHub Desktop.
JS Simple encryption
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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