Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meyt/py3rijndael
Rijndael algorithm library for Python3
https://github.com/meyt/py3rijndael
Last synced: 19 days ago
JSON representation
Rijndael algorithm library for Python3
- Host: GitHub
- URL: https://github.com/meyt/py3rijndael
- Owner: meyt
- License: mit
- Created: 2017-11-20T00:24:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T05:59:59.000Z (over 5 years ago)
- Last Synced: 2024-10-13T09:31:31.152Z (about 1 month ago)
- Language: Python
- Size: 23.4 KB
- Stars: 16
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
py3rijndael
===========.. image:: https://travis-ci.org/meyt/py3rijndael.svg?branch=master
:target: https://travis-ci.org/meyt/py3rijndael.. image:: https://coveralls.io/repos/github/meyt/py3rijndael/badge.svg?branch=master
:target: https://coveralls.io/github/meyt/py3rijndael?branch=master.. image:: https://img.shields.io/pypi/pyversions/py3rijndael.svg
:target: https://pypi.python.org/pypi/py3rijndaelRijndael algorithm library for Python3.
Rijndael is the key algorithm of `AES `_,
and there is some of implementations already exist:- `pycrypto `_: Very old and not written in python.
- `pycryptodome `_: In road of ``pycrypto`` but alive.
- `python-cryptoplus `_:
Tested and works fine. but, not in Python 3, also depend on ``pycrypto``.
- `RijndaelPbkdf `_:
Tested and works fine. but, old PyPi release and not active (i have no time to wait for maintainer).
- https://gist.github.com/jeetsukumaran/1291836 : The gist i borrowed initial source.Installation
------------.. code:: bash
pip install py3rijndael
Usage
-----Follow the tests.