Cryptography Features.
Stores encryption in two ways. One is written to a file and the other is returned.
encrypted_string = encrypt.MAXIMUM_ENCRYPT(string_to_be_encrypted, filename) # filename for saved file
print(encrypted_string)
OUTPUT:
something like:
b'gAAAAABjFi_ctHNov4f8anfqh-aYGDqvB92Hm5WG1ujEI0YpVj3AEkwbJbvAh75z8md4E4JTfiVJ47vgNzcLEqadwFvJHluaZlpIUM-sSvwEQSVwLBGtoQ0='
decrypted_string = encrypt.MAXIMUM_DECRYPT(byte_string_to_be_decrypted, same_filename) # filename for saved file
print(decrypted_string)