Metadata-Version: 2.1
Name: easycrypt
Version: 1.0.2
Summary: The easyest cryptography modle with AES
Home-page: UNKNOWN
Author: nathblade16@gmail.com
Author-email: nathblade16@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

to encrypt encoded strings use encrypt(data_to_encrypt, key)
to decrypt use decrypt(data_to_decrypt, key)
to encrypt decoded strings use encryptdecoded(data_to_encrypt, key)
to generate keys use keygen()
to generate keys with a password use keygenpassword(password, salt)
to generate a salt first import os and then use os.urandom(32)

