Metadata-Version: 1.1
Name: py3rijndael
Version: 0.3.0
Summary: Rijndael algorithm library for Python3.
Home-page: https://github.com/meyt/py3rijndael
Author: Mahdi Ghanea.g
Author-email: UNKNOWN
License: MIT License
Description-Content-Type: UNKNOWN
Description: 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/py3rijndael
        
        Rijndael algorithm library for Python3.
        
        Rijndael is the key algorithm of `AES <https://en.wikipedia.org/wiki/Advanced_Encryption_Standard>`_,
        and there is some of implementations already exist:
        
        - `pycrypto <https://github.com/dlitz/pycrypto>`_: Very old and not written in python.
        - `pycryptodome <https://github.com/Legrandin/pycryptodome>`_: In road of `pycrypto` but alive.
        - `python-cryptoplus <https://github.com/doegox/python-cryptoplus>`_:
          Tested and works fine. but, not in Python 2, also depend on `pycrypto`.
        - `RijndaelPbkdf <https://github.com/dsoprea/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.
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Topic :: Security :: Cryptography
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
