Metadata-Version: 2.1
Name: encdec_sfmh
Version: 0.0.2
Summary: A simple encryption tool
Author: Thato Matona
Project-URL: Github, https://github.com/ScifiMegaHype
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: License.txt

EncDec
==========

**EncDec** is a package that allows users to encrypt and decrypt string data using a unique key of your choice. 

Here is a simple example:

.. code-block:: python

   from encdec_sfmh.encdec import *

   original = 'rusksarenice'

   print(f'Original: {original}')

   # Keyless encryption and decryption
   print(f'\nEncryptedv1: {encsimple(original)}')
   print(f'Decryptedv1: {decsimple(encsimple(original))}')

   # Complex encryption and decryption with a key
   toPrint = enccomplex(original,key='coffee')
   print('\nEncryptedv2:', toPrint)
   print('Decryptedv2:', deccomplex(toPrint,key='coffee'))

**Giving developers more control over their encryptions**
