Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keybase/python-triplesec
A Python port of the triplesec library.
https://github.com/keybase/python-triplesec
Last synced: 16 days ago
JSON representation
A Python port of the triplesec library.
- Host: GitHub
- URL: https://github.com/keybase/python-triplesec
- Owner: keybase
- License: bsd-3-clause
- Created: 2013-10-28T19:45:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T17:59:11.000Z (about 1 year ago)
- Last Synced: 2024-12-18T22:09:04.261Z (24 days ago)
- Language: Python
- Size: 672 KB
- Stars: 81
- Watchers: 18
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - python-triplesec - A Python port of the triplesec library. (Python)
README
python-triplesec
================.. image:: https://travis-ci.org/keybase/python-triplesec.png
:alt: Build Status
:target: https://travis-ci.org/keybase/python-triplesec.. image:: https://coveralls.io/repos/keybase/python-triplesec/badge.png
:alt: Coverage Status
:target: https://coveralls.io/r/keybase/python-triplesec.. image:: https://img.shields.io/pypi/v/TripleSec.svg
:alt: PyPi version
:target: https://crate.io/packages/TripleSec.. image:: https://img.shields.io/pypi/dm/TripleSec.svg
:alt: PyPi downloads
:target: https://crate.io/packages/TripleSecA Python port of the TripleSec_ library. See also the JS implementation_.
Compatible with Python 2.7 and 3.6+.
.. _TripleSec: https://keybase.io/triplesec/
.. _implementation: https://github.com/keybase/triplesec/Installation
------------::
pip install TripleSec
Note: You may get an OpenSSL error while installing
the scrypt dependency on older operating systems.
On Ubuntu/Debian, run
::
# apt-get install libssl-dev
On OS X, follow the instructions at https://github.com/ethereum/pyethapp/issues/209#issuecomment-308466232.Usage
-----Instantiate a ``triplesec.TripleSec(key=None)`` object, with or without a key (if omitted it will have to be specified at each use), then use the ``encrypt(message, key=None)`` and ``decrypt(ciphertext, key=None)`` methods.
All values must be binary strings (``str`` on Python 2, ``bytes`` on Python 3)
Shortcuts
~~~~~~~~~The (unkeyed) functions ``encrypt`` and ``decrypt`` are exposed at the module level.
Command line tool
-----------------TripleSec offers a ``triplesec`` command line tool to encrypt and decrypt messages from the terminal.
Here is the help::
Command-line TripleSec encryption-decryption tool
usage: triplesec [-h] [-b | --hex] [-k KEY] {enc|dec} [data]
positional arguments:
{enc|dec} enc: encrypt and sign a message with TripleSec; by
default output a hex encoded ciphertext (see -b and
--hex) -- dec: decrypt and verify a TripleSec ciphertext
data the TripleSec message or ciphertext; if not specified it
will be read from stdin; by default ciphertexts will be
considered hex encoded (see -b and --hex)optional arguments:
-h, --help show this help message and exit
-b, --binary consider all input (key, plaintext, ciphertext) to be
plain binary data and output everything as binary data -
this turns off smart decoding/encoding - if you pipe
data, you should use this
--hex consider all input (key, plaintext, ciphertext) to be hex
encoded; hex encode all output
-k KEY, --key KEY the TripleSec key; if not specified will check the
TRIPLESEC_KEY env variable, then prompt the user for it
--compatibility Use Keccak instead of SHA3 for the second MAC and reverse
endianness of Salsa20 in version 1. Only effective in
versions before 4.Changes in 0.5
-----------------------
For message authentication, the Triplesec spec uses the Keccak SHA3 proposal function for versions 1 through 3, but for some time, this library used the standardized SHA3-512 function instead. Thus, by default, the Python implementation for versions 1 through 3 is incompatible with the JavaScript and Golang implementations.
From version 4 and going forward, the spec will use only the standardized SHA3-512 function (provided, for example, by `hashlib` in Python), and the Python, JavaScript, and Golang implementations will be compatible.If you would like to use Keccak with versions 1 through 3 (and thus achieve compatibility with the Node and Go packages), you can pass in `compatibility=True` to `encrypt` and `decrypt`, or on the commandline as detailed in the above section.
Additionally, encryptions that do not specify a version will now use version 4 by default, which is not compatible with previous versions.
Example
------->>> import triplesec
>>> x = triplesec.encrypt(b"IT'S A YELLOW SUBMARINE", b'* password *')
>>> print(triplesec.decrypt(x, b'* password *').decode())
IT'S A YELLOW SUBMARINE>>> from triplesec import TripleSec
>>> T = TripleSec(b'* password *')
>>> x = T.encrypt(b"IT'S A YELLOW SUBMARINE")
>>> print(T.decrypt(x).decode())
IT'S A YELLOW SUBMARINE