Metadata-Version: 2.1
Name: eq-encrypt
Version: 0.0.2
Summary: A Django app to help you encrypt passwords.
Home-page: UNKNOWN
Author: Equality
Author-email: germanchiocchia@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

=====
eq-encrypt version 0.0.2
=====

'eq-encrypt' is a Django reusable app to help you encrypt passwords.


Quick start
-----------
1. pip install eq-encrypt==<version>
2. Add "eq-encrypt" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        'eq-encrypt',
    ]

And that's all.

Usage:

Encript:
1. Run ./manage.py encrypt <password>
    It will display the encrypted result in command window.


