Python Elliptical Curve Cryptography module
Go to file
R. Tyler Croy 392002484d Merge pull request #2 from bithin/patch-1
StringIO was imported twice.
2012-02-09 12:30:37 -08:00
seccure Build a dylib on Darwin 2009-07-12 17:26:10 -07:00
.gitignore Add a .gitignore file 2009-06-22 09:10:40 -07:00
LICENCE.LGPL Relicense Slide-developed code as LGPLv2.1 2009-06-22 09:18:53 -07:00
README.rst Author info 2009-07-07 14:55:33 -07:00
_pyecc.c Remove NULL returns in non-exception error conditions 2009-07-08 14:56:47 -07:00
_pyecc.h Rename libecc to libseccure, updating all references (except comments) 2009-06-19 15:59:29 -07:00
py_objects.c
pyecc.py Forgot to remove the no-longer necessary assertion in ECC.encrypt() 2009-07-07 11:20:10 -07:00
setup.py Updating setup.py to build properly on FreeBSD 2010-03-22 05:03:40 -07:00
tests.py Add a couple error condition tests 2009-07-07 11:16:22 -07:00
xmlrunner.py StringIO was imported twice. 2012-02-09 16:05:16 +05:30

README.rst

PyECC: Python Elliptical Curve Cryptography
============================================

PyECC is a Python module wrapped around the ``libseccure`` library which itself is 
based off of code developed originally for the `seccure(1) utility <http://point-at-infinity.org/seccure/>`_.

Build and Install
-----------------

Since PyECC uses `setuptools <http://pypi.python.org/pypi/setuptools>`_ to build and 
install the PyECC module and corresponding library, you need to run:: 
    
    % sudo python setup.py install


Author(s)
---------

PyECC was developed by R. Tyler Ballance (``tyler@slide.com``) at `Slide, Inc. <http://slide.com>`_. 
The original seccure(1) binary however was developed by B. Poettering.