Decrypt and encrypt messages compatible to the "Stanford Javascript Crypto Library (SJCL)" message format. This is a wrapper around pycrypto.
This module was created while programming and testing the encrypted blog platform on cryptedblog.com which is based on sjcl.
Typical usage may look like this:
#!/usr/bin/env python
from sjcl import SJCL
cyphertext = SJCL().encrypt(b"secret message to encrypt", "shared_secret")
print cyphertext
print SJCL().decrypt(cyphertext, "shared_secret")
https://github.com/berlincode/sjcl
Code and documentation copyright Ulf Bartel. Code is licensed under the new-style BSD license.