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/20 15:46:23 UTC

[incubator-milagro-MPC] branch develop updated (62b9eaf -> b591d66)

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

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


    from 62b9eaf  Merge pull request #15 from apache/issue7-schnorr-python-wrapper
     add 33e0128  Add NM commit wrappers with test, benchmark and example
     add 7553c2d  format code
     add 3e5e138  use same ffi instance in commitments
     new b591d66  Merge pull request #16 from apache/issue8-nm-commit-wrapper

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 benchmark/bench.h                                  |   2 +-
 examples/example_dump_keys.c                       |   4 +-
 python/amcl/commitments.py                         | 115 +++++++++++++++++++++
 python/amcl/core_utils.py                          |   2 -
 .../{bench_schnorr.py => bench_nm_commit.py}       |  32 ++----
 python/examples/example_nm_commit.py               |  54 ++++++++++
 python/test/CMakeLists.txt                         |  16 ++-
 python/test/test_nm_commit.py                      |  90 ++++++++++++++++
 test/smoke/test_dump_keys_smoke.c                  |   6 +-
 testVectors/commitments/nm_commit.json             |  62 +++++++++++
 10 files changed, 349 insertions(+), 34 deletions(-)
 create mode 100644 python/amcl/commitments.py
 copy python/benchmark/{bench_schnorr.py => bench_nm_commit.py} (55%)
 create mode 100755 python/examples/example_nm_commit.py
 create mode 100755 python/test/test_nm_commit.py
 create mode 100644 testVectors/commitments/nm_commit.json


[incubator-milagro-MPC] 01/01: Merge pull request #16 from apache/issue8-nm-commit-wrapper

Posted by sa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sandreoli pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-MPC.git

commit b591d661e1394971c148be037f5c6bf3e13fe158
Merge: 62b9eaf 3e5e138
Author: samuele-andreoli <sa...@yahoo.it>
AuthorDate: Thu Feb 20 15:46:13 2020 +0000

    Merge pull request #16 from apache/issue8-nm-commit-wrapper
    
    Issue8 nm commit wrapper

 benchmark/bench.h                      |   2 +-
 examples/example_dump_keys.c           |   4 +-
 python/amcl/commitments.py             | 115 +++++++++++++++++++++++++++++++++
 python/amcl/core_utils.py              |   2 -
 python/benchmark/bench_nm_commit.py    |  47 ++++++++++++++
 python/examples/example_nm_commit.py   |  54 ++++++++++++++++
 python/test/CMakeLists.txt             |  16 +++--
 python/test/test_nm_commit.py          |  90 ++++++++++++++++++++++++++
 test/smoke/test_dump_keys_smoke.c      |   6 +-
 testVectors/commitments/nm_commit.json |  62 ++++++++++++++++++
 10 files changed, 385 insertions(+), 13 deletions(-)