Skip to content
/ sjcl Public
forked from berlincode/sjcl

Decrypt and encrypt messages compatible to the "Stanford Javascript Crypto Library (SJCL)"

License

Notifications You must be signed in to change notification settings

arnuschky/sjcl

 
 

Repository files navigation

=========== 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"))

About

Decrypt and encrypt messages compatible to the "Stanford Javascript Crypto Library (SJCL)"

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%