Echoder
linear encryption software programmed with python
How does it work?
The text in the text section runs a function with two keys entered keys must be integers. A number is assigned to each letter and number.
ciphertext = (letter number)*(key 1)+(key 2)
It does the opposite when decrypting ciphertext.
text = ((ciphertext)-(key 2))/(key 1)