There's a CRC hash generator, that's about it. (you can recreate hashes in TorqueScript anyway)
Or people can just make them lol
One second let me make something.
$ExampleCharSet::In = "a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9 10 { } ;";
$ExampleCharSet::Ot = "f e d m r z q l a b 0 { g 2 8 9 c s u z y x h j 1 3 4 } ; 1 9 3 4 5 7 10 6 p d g";
function decryptcode(%code,%charin,%charout)
{
for(%i=0;%i<getWordCount(%charin);%i++)
%code = strReplace(%code,getWord(%charin,%i),getWord(%charout,%i));
return %code;
}
function encryptcode(%code,%charout,%charin)
{
for(%i=0;%i<getWordCount(%charout);%i++)
%code = strReplace(%code,getWord(%charout,%i),getWord(%charin,%i));
return %code;
}