Added JavaScript implementationg

This commit is contained in:
KyleBanks 2013-10-06 16:13:22 -04:00
parent 5fe7d2481d
commit 9149a65457
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
function encryptDecrypt(input) {
var key = ['K', 'C', 'Q']; //Can be any chars, and any size array
var output = [];
for (var i = 0; i < input.length; i++) {
var charCode = input.charCodeAt(i) ^ key[i % key.length].charCodeAt(0);
output.push(String.fromCharCode(charCode));
}
return output.join("");
}
var encrypted = encryptDecrypt("kylewbanks.com");
console.log("Encrypted:"+encrypted);
var decrypted = encryptDecrypt(encrypted);
console.log("Decrypted:"+decrypted);