Invert GMLscripts.com

Computation :: Data Encryption

cambridge_encode(str, alphabet)
Returns given string with the interior letters of each word scrambled.
rc4(str,key)
Returns the given string encrypted/decrypted with the RC4 algorithm using the given key.
rot13(str)
Returns the given text encrypted/decrypted with the rot13 algorithm.
vigenere_ascii(in,key,mode)
Returns the given string enciphered or deciphered using a simple Vigenere style cipher, and filtering out non-printable characters.
vigenere_cipher(in,key,mode)
Returns the given string enciphered or deciphered using a Vigenere style cipher.