These two files, encrypt and decrypt, will convert a string (any length) and a secret key into a list of numbers. The only way to decrypt is to use the decrypt function to convert back to a string. See readme for more info/instructions.

syntax:

encrypt(string, key)
	-string is the string to be translated
	-key is the key that you need to decrypt the string
	-returns a list of numbers that can only be decrypted by following program:

decrypt(list, key)
	-list is the list of numbers that was returned from encrypt()
	-key must be the same key that was used to encrypt
	-returns the original string