Metadata-Version: 2.1
Name: enyo
Version: 0.0.2
Summary: Enyo is a lightweight multistage partition based encryption algorithm.
Home-page: https://github.com/apratimshukla6/enyo
Author: Apratim Shukla, Mayank Tolani, Dipan Polley, Abhishek TK
Author-email: apratimshukla6@gmail.com
License: MIT
Download-URL: https://pypi.org/project/enyo/
Keywords: Enyo,EnyoCipher,EnyoEncryption
Platform: UNKNOWN
Description-Content-Type: text/markdown

Enyo is a lightweight multistage partition based encryption algorithm

# Description

It consists of two main modules:

- `enyoencryption`: Enyo Encryption algorithm module
- `enyodecryption`: Enyo Decryption algorithm module

# Usage

## To encrypt:
```python
from enyo.enyoencryption import EnyoEncryption
# Third parameter is optional partition (by default 2)
test = EnyoEncryption("test","secretkey")
# To print the encrypted text
print(test.encrypted)
```

## To decrypt:
```python
from enyo.enyoencryption import EnyoDecryption
# Third parameter is optional partition (by default 2)
test = EnyoDecryption("SQpaSN","secretkey")
# To print the decrypted text
print(test.decrypted)
```

# Installation

## Normal installation

```bash
pip install enyo
```

## Development installation

```bash
git clone https://github.com/apratimshukla6/enyo.git
cd enyo
pip install --editable .
```

# Change log

## [0.0.1] - 2020-09-15
- Updated README
- Added initial files for Enyo


