This project hopes to provide you and the world with forms of possibly secure encryption. All cipher programs read input from ede.txt, & all keys are in the form of input functions. Some encryption algorithms are slow intentionally, to reduce the chance of brute-forcing.
Most, if not all, of the programs are of the format-
import necessary libraries
charset = "The character set"
txt = read(ede.txt)
key = input("Input key, please: ")
algorithm = lambda text, key, characterset : run algorithm
print(algorithm(txt, input, charset))
Please report all issues & enjoy 😃