Metadata-Version: 1.1
Name: sjcl
Version: 0.1.3
Summary: 
Decrypt and encrypt messages compatible to the "Stanford Javascript Crypto
Library (SJCL)" message format.

This module was created while programming and testing the encrypted
blog platform on cryptedblog.com which is based on sjcl.

Home-page: https://github.com/elastic/sjcl
Author: Ulf Bartel
Author-email: ulf.bartel@gmail.com
License: LICENSE.txt
Description: ===========
        Python-SJCL
        ===========
        
        Decrypt and encrypt messages compatible to the "Stanford Javascript Crypto
        Library (SJCL)" message format.
        
        This module was created while programming and testing the encrypted
        blog platform on cryptedblog.com which is based on sjcl.
        
        Typical usage often looks like this:
        
            #!/usr/bin/env python
        
            from sjcl import SJCL
        
            cyphertext = SJCL().encrypt("secret message to encrypt", "shared_secret")
        
            print cyphertext
            print SJCL().decrypt(cyphertext, "shared_secret")
        
        
        
        v0.1.1, 2014-05-21 -- Initial public release.
        
Keywords: SJCL,AES,encyption,pycrypto,Javascript
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
