Metadata-Version: 2.1
Name: quick-secure
Version: 0.2.1.1
Summary: UNKNOWN
Home-page: https://github.com/ahmadfaizalbh/quick_secure
Author: Ahmad Faizal B H
Author-email: ahmadfaizalbh726@gmail.com
License: MIT
Keywords: Quick secure is for encryption and decryption of string
Platform: Windows
Platform: Linux
Platform: Solaris
Platform: Mac OS-X
Platform: Unix

Quick Secure
============

String encryption


Install
=======

.. code:: sh

    pip install quick-secure



Usage
=====

.. code:: python


    import quick_secure

    message = "sample message for encryption"
    password = "confidential"

    # Encrypt message
    encrypted_message = quick_secure.encrypt(message, password)
    print(encrypted_message)

    # Decrypt message
    decrypted_message = quick_secure.decrypt(encrypted_message, password)
    print(decrypted_message)









