wolfssl/wrapper/python
Moisés Guimarães 69ac477976 updates docs template
2016-04-29 16:25:53 -03:00
..
docs updates docs template 2016-04-29 16:25:53 -03:00
test importing wolfcrypt-py repo 2016-04-28 13:20:10 -03:00
wolfcrypt importing wolfcrypt-py repo 2016-04-28 13:20:10 -03:00
.gitignore adds python ignored files 2016-04-28 13:26:59 -03:00
README.rst updates python README 2016-04-28 13:36:41 -03:00
requirements-testing.txt updates docs template 2016-04-29 16:25:53 -03:00
setup.py updates docs template 2016-04-29 16:25:53 -03:00
tox.ini importing wolfcrypt-py repo 2016-04-28 13:20:10 -03:00

wolfcrypt: the wolfSSL Crypto Engine
====================================


A Python wrapper which encapsulates the wolfCrypt API from wolfSSL library


1. Clone the repository and install wolfssl::


    $ git clone git@github.com:wolfssl/wolfssl.git
    $ cd wolfssl
    $ ./autogen.sh
    $ ./configure
    $ make
    $ sudo make install


2. Make sure that ``cffi``, ``py.test``, and ``tox`` are installed::


    $ cd wrappers/python
    $ pip install -r requirements-testing.txt


3. Run ``python setup.py install`` to build and install wolfcrypt-py::


    $ python setup.py install
    ...
    Finished processing dependencies for wolfcrypt==0.1


4. Test locally with ``tox``::


    $ tox
    ...
    _________________________________ summary _________________________________
    py27: commands succeeded
    congratulations :)