Metadata-Version: 2.4
Name: eggcrypt
Version: 1.2.3
Summary: A pretty secure (yet inneficient) encryption program. Has key(), hash(), encrypt() and decrypt().
Author: Egglord
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file
Dynamic: requires-python

# eggcrypt

A pretty secure (yet inneficient) encryption program.

This is my fifth python library :D

Commands:

eggcrypt.encrypt("") # Returns an encrypted string.

eggcrypt.decrypt("") # Returns a non-encrypted string.

eggcrypt.key() # Returns a random key/seed.

eggcrypt.ehash("") # Uses a custom method to hash a string. It is ehash and not hadh for 2 reasons: PyPI doesn't like hash and ehash is short for egghash (eggcrypt.egghash("") doesn't work).

# !NB!

Use: pip install eggcrypt

But, to import it: import eggcrypt
