Rijndael 256-CBC Implementation with mcrypt, for developing API client of Idolmaster Cinderella Girls Starlight Stage
gcc >= 4.7
libmcrypt-dev
python3 setup.py install
Currently, the module is only tested on Python 3.5.
Import the module with:
import cgss_rijndael
Encrypt plaintext with:
cgss_rijndael.encrypt(Key, IV, plaintext)
Decrypt ciphertext with:
cgss_rijndael.decrypt(Key, IV, ciphertext)
Encrypt and Decrypt functions will return:
bytearray object for successful quit,
None for unsuccessful quit
Every key and IV must be 32 bytes long.
Distributed with MIT License.