Javascript Atbash Decrypter/Encrypter
Simply type the text you want to decrypt or encrypt in the text box below. The decrypted/encrypted text will appear as you type.
slashdotSource Code
<script language="Javascript">
function atbash(str) {
var ret = '';
for (i=0;i<str.length;i++) {
ret += String.fromCharCode(155 - str[i].toUpperCase().charCodeAt(0));
}
return ret;
}
}
</script>
del.icio.us
technorati
[more]