limistah / cryptojsaesdecrypt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CryptoJS Decrypt

This is a Python module that makes it possible and easier to decrypt ciphers generated with NodeJS CryptoJS Package

Installation

pip install cryptojsaesdecrypt

Usage

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.

About


Languages

Language:Python 100.0%