Encrypting strings in python with no knowledge of cryptography -
is there library allows me encrypt strings in python, without knowledge in cryptography?
try https://pypi.python.org/pypi/simple-crypt
from simplecrypt import encrypt, decrypt ciphertext = encrypt('password', plaintext) plaintext = decrypt('password', ciphertext)
python python-3.x encryption
No comments:
Post a Comment