tree: bd6527a3d4a5f9aa266934a8ba89f37e79c292c3 [path history] [tgz]
  1. amcl/
  2. benchmark/
  3. examples/
  4. test/
  5. CMakeLists.txt
  6. README.md
python/README.md

Python wrapper

This directory contains the C code wrapper for Python.

Tests

Automatic run

The simplest way to run the wrapper tests is using the Makefile in the build directory or in the python build directory

make test

Manual run

Individual tests can be executed after installation using

./test_mta.py

To run individual tests manually before installation add the build src directory to your system dynamic library path.

e.g. for Linux

export LD_LIBRARY_PATH=<build_dir>/src/:$LD_LIBRARY_PATH

Benchmark and examples

Individual benchmarks or examples can be executed after installation using

./example_ecdsa.py

To run individual benchmarks and examples manually before installation add the build src directory to your system dynamic library path.

e.g. for Linux

export LD_LIBRARY_PATH=<build_dir>/src/:$LD_LIBRARY_PATH