Skip to content

Commit

Permalink
Minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
apratimshukla6 committed Sep 14, 2020
1 parent 051837c commit a58eabd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ print(test.encrypted)

## To decrypt:
```python
from enyo.enyoencryption import EnyoDecryption
from enyo.enyodecryption import EnyoDecryption
# Third parameter is optional partition (by default 2)
test = EnyoDecryption("SQpaSN","secretkey")
# To print the decrypted text
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup_args = dict(
name='enyo',
version='0.0.1',
version='0.0.4',
description='Enyo is a lightweight multistage partition based encryption algorithm.',
long_description_content_type="text/markdown",
long_description=README + '\n\n' + HISTORY,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_enyodecryption.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from enyo.enyoencryption import EnyoDecryption
from enyo.enyodecryption import EnyoDecryption

# Third parameter is optional partition (by default 2)
test = EnyoDecryption("SQpaSN","secretkey")
Expand Down

0 comments on commit a58eabd

Please sign in to comment.