Metadata-Version: 2.1
Name: cryptojsaesdecrypt
Version: 0.0.3
Summary: Decrypt cryptojs encrytped ciphers
Home-page: https://github.com/limistah/cryptojs-decrypt
Author: Aleem Isiaka
Author-email: aleemisiaka@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/limistah/cryptojsaesdecryptissues
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3
Description-Content-Type: text/markdown


# CryptoJS Decrypt

This is a Python module that makes it possible and easier to decrypt ciphers generated with [NodeJS CryptoJS Package](https://www.npmjs.com/package/crypto-js)

## Installation

```
pip install cryptojsaesdecrypt
```

## Usage

```python
from aesdecrypt import decryptCipher

crytojs_cipher_text = ""
crytojs_passphrase = "".encode()

dec = decryptCipher(crytojs_cipher_text, crytojs_passphrase)
```







## Credits

The CryptoJS source code for showing how the encryption is done, generating passphrase.


