JCryptoris used toEncryptandDecrypt.JCryptorlatest version 0.1.70
from jcryptor import JCryptor
cryptor = JCryptor()
encrypt = cryptor.encrypt_text(original_text, print_it=True)>> <[\\o Vo|\@from jcryptor import JCryptor
cryptor = JCryptor()
original_text = "Hello World"
encrypt = cryptor.encrypt_text(original_text)
decrypt = cryptor.decrypt_text(encrypt, print_it=True)>> Hello World
On Windows:
$ pip install JCryptor
$ pip install jcryptor==0.1.50