Metadata-Version: 2.4
Name: pycipher
Version: 0.5.2
Summary: Several simple cipher algorithms
Home-page: https://github.com/jameslyons/pycipher
Author: James Lyons
Author-email: james.lyons0@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: summary

pycipher
========

Common classical ciphers implemented in Python.
Documentation is available at http://pycipher.readthedocs.org/en/latest/ .

Install
-------

::

    pip install git+git://github.com/jameslyons/pycipher


Example usage
-------------

::

    >>> from pycipher import ADFGVX
    >>> adfgvx = ADFGVX(key='PH0QG64MEA1YL2NOFDXKR3CVS5ZW7BJ9UTI8', keyword='GERMAN')
    >>> adfgvx.encipher("Hello world!")
    'FVFDAGXAFFFFGFAGADFG'
    >>> adfgvx.decipher(_)
    'HELLOWORLD'


Feedback
--------

The code is hosted on GitHub: https://github.com/jameslyons/pycipher

If you find any bugs make an issue or create a pull request.

To run the test suite::

    python setup.py test

