You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@milagro.apache.org by sa...@apache.org on 2020/02/19 11:29:35 UTC

[incubator-milagro-MPC] branch issue7-schnorr-python-wrapper updated (942c67b -> 07c2bc5)

This is an automated email from the ASF dual-hosted git repository.

sandreoli pushed a change to branch issue7-schnorr-python-wrapper
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-MPC.git.


    from 942c67b  remove copied .so files to python dir
     add 07c2bc5  Factor out core amcl utils and reuse the same ffi instance

No new revisions were added by this update.

Summary of changes:
 python/amcl/core_utils.py            | 181 +++++++++++++++++++
 python/amcl/mpc.py                   | 326 ++++++++++-------------------------
 python/amcl/schnorr.py               | 190 ++++----------------
 python/benchmark/bench_mta.py        |  13 +-
 python/benchmark/bench_schnorr.py    |   8 +-
 python/benchmark/context.py          |  25 ---
 python/examples/context.py           |  25 ---
 python/examples/example_dump_keys.py |   7 +-
 python/examples/example_ecdsa.py     |  27 +--
 python/examples/example_mta.py       |  11 +-
 python/examples/example_r.py         |   9 +-
 python/examples/example_s.py         |   9 +-
 python/examples/example_schnorr.py   |   9 +-
 python/test/context.py               |  25 ---
 python/test/test_ecdsa.py            |  12 +-
 python/test/test_mta.py              |   8 +-
 python/test/test_r.py                |   9 +-
 python/test/test_s.py                |   9 +-
 python/test/test_schnorr.py          |  11 +-
 19 files changed, 395 insertions(+), 519 deletions(-)
 create mode 100644 python/amcl/core_utils.py
 delete mode 100644 python/benchmark/context.py
 delete mode 100644 python/examples/context.py
 delete mode 100644 python/test/context.py