Decrypt and encrypt messages compatible to the 'Stanford Javascript Crypto Library (SJCL)' message format.
Project description
Python-SJCL
===========
[![Travis CI](https://travis-ci.org/berlincode/sjcl.svg?branch=master&style=flat)](https://travis-ci.org/berlincode/sjcl)
[![Python versions](https://img.shields.io/pypi/pyversions/sjcl.svg)](https://pypi.python.org/pypi/sjcl/)
[![new-style BSD](https://img.shields.io/pypi/l/sjcl.svg)](https://github.com/berlincode/sjcl/blob/master/LICENSE.txt)
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:
```python
#!/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")
```
Public repository
-----------------
[https://github.com/berlincode/sjcl](https://github.com/berlincode/sjcl)
License
-------
Code and documentation copyright Ulf Bartel. Code is licensed under the
[new-style BSD license](./LICENSE.txt).
v0.1.1, 2014-05-21 -- Initial public release.
v0.1.4, 2016-04-17 -- Re-init of repository after homepage changed.
v0.1.5, 2016-07-12 -- Python3 compat
v0.1.6, 2017-07-31 -- Now dependent on pycryptodome
v0.2.0, 2018-02-22 -- AES-GCM mode support
v0.2.1, 2018-08-16 -- Fixed README.md (missing 'b' prefix for use with python3)
===========
[![Travis CI](https://travis-ci.org/berlincode/sjcl.svg?branch=master&style=flat)](https://travis-ci.org/berlincode/sjcl)
[![Python versions](https://img.shields.io/pypi/pyversions/sjcl.svg)](https://pypi.python.org/pypi/sjcl/)
[![new-style BSD](https://img.shields.io/pypi/l/sjcl.svg)](https://github.com/berlincode/sjcl/blob/master/LICENSE.txt)
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:
```python
#!/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")
```
Public repository
-----------------
[https://github.com/berlincode/sjcl](https://github.com/berlincode/sjcl)
License
-------
Code and documentation copyright Ulf Bartel. Code is licensed under the
[new-style BSD license](./LICENSE.txt).
v0.1.1, 2014-05-21 -- Initial public release.
v0.1.4, 2016-04-17 -- Re-init of repository after homepage changed.
v0.1.5, 2016-07-12 -- Python3 compat
v0.1.6, 2017-07-31 -- Now dependent on pycryptodome
v0.2.0, 2018-02-22 -- AES-GCM mode support
v0.2.1, 2018-08-16 -- Fixed README.md (missing 'b' prefix for use with python3)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sjcl-0.2.1.tar.gz
(5.5 kB
view details)
File details
Details for the file sjcl-0.2.1.tar.gz
.
File metadata
- Download URL: sjcl-0.2.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.8.1 pkginfo/1.2.1 requests/2.12.4 setuptools/33.1.1 requests-toolbelt/0.7.0 clint/0.5.1 CPython/3.5.3 Linux/4.9.0-7-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3761ba01f9f049eaa2f67516054b7bfb2e27fe8bc7c9c630da7168fba58f0c57 |
|
MD5 | 1a3bbeb45fc754d1a0ac516cc85ab501 |
|
BLAKE2b-256 | 167068ec8c51690e450f878a22adea5e10c5e554cf6fa952de2240f1f5a4d484 |