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/13 10:58:20 UTC

[incubator-milagro-MPC] branch develop updated (f73e9cb -> be7fb85)

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 f73e9cb  Merge pull request #3 from apache/apache
     add a643ae5  Add phase 5 API
     add ebad52d  Add phase 5 tests and test vectors
     add 72c37ec  Add phase 5 benchmark and example
     new be7fb85  Merge pull request #4 from apache/add-phase5-api

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_phase5.c                           | 197 +++++++++++++++++++
 examples/example_phase5.c                          | 208 +++++++++++++++++++++
 include/amcl/mpc.h                                 |  71 +++++++
 model/vectors/mpc/genPHASE5.py                     | 140 ++++++++++++++
 src/mpc.c                                          | 158 ++++++++++++++++
 test/smoke/test_phase5_smoke.c                     | 149 +++++++++++++++
 test/test.c                                        |   8 +
 test/unit/CMakeLists.txt                           |   9 +-
 ...test_d_schnorr_prove.c => test_phase5_commit.c} |  89 +++++----
 test/unit/test_phase5_prove.c                      | 200 ++++++++++++++++++++
 test/unit/test_phase5_verify.c                     | 160 ++++++++++++++++
 testVectors/mpc/phase5_commit.json                 |  92 +++++++++
 testVectors/mpc/phase5_commit.txt                  |  80 ++++++++
 testVectors/mpc/phase5_prove.json                  | 142 ++++++++++++++
 testVectors/mpc/phase5_prove.txt                   | 130 +++++++++++++
 testVectors/mpc/phase5_verify.json                 |  72 +++++++
 testVectors/mpc/phase5_verify.txt                  |  60 ++++++
 17 files changed, 1921 insertions(+), 44 deletions(-)
 create mode 100644 benchmark/bench_phase5.c
 create mode 100644 examples/example_phase5.c
 create mode 100755 model/vectors/mpc/genPHASE5.py
 create mode 100644 test/smoke/test_phase5_smoke.c
 copy test/unit/{test_d_schnorr_prove.c => test_phase5_commit.c} (51%)
 create mode 100644 test/unit/test_phase5_prove.c
 create mode 100644 test/unit/test_phase5_verify.c
 create mode 100644 testVectors/mpc/phase5_commit.json
 create mode 100644 testVectors/mpc/phase5_commit.txt
 create mode 100644 testVectors/mpc/phase5_prove.json
 create mode 100644 testVectors/mpc/phase5_prove.txt
 create mode 100644 testVectors/mpc/phase5_verify.json
 create mode 100644 testVectors/mpc/phase5_verify.txt


[incubator-milagro-MPC] 01/01: Merge pull request #4 from apache/add-phase5-api

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 be7fb852a04ea0c0ea955020a73806170706d2f9
Merge: f73e9cb 72c37ec
Author: samuele-andreoli <sa...@yahoo.it>
AuthorDate: Thu Feb 13 10:58:13 2020 +0000

    Merge pull request #4 from apache/add-phase5-api
    
    Add phase5 api

 benchmark/bench_phase5.c           | 197 +++++++++++++++++++++++++++++++++++
 examples/example_phase5.c          | 208 +++++++++++++++++++++++++++++++++++++
 include/amcl/mpc.h                 |  71 +++++++++++++
 model/vectors/mpc/genPHASE5.py     | 140 +++++++++++++++++++++++++
 src/mpc.c                          | 158 ++++++++++++++++++++++++++++
 test/smoke/test_phase5_smoke.c     | 149 ++++++++++++++++++++++++++
 test/test.c                        |   8 ++
 test/unit/CMakeLists.txt           |   9 +-
 test/unit/test_phase5_commit.c     | 132 +++++++++++++++++++++++
 test/unit/test_phase5_prove.c      | 200 +++++++++++++++++++++++++++++++++++
 test/unit/test_phase5_verify.c     | 160 ++++++++++++++++++++++++++++
 testVectors/mpc/phase5_commit.json |  92 ++++++++++++++++
 testVectors/mpc/phase5_commit.txt  |  80 ++++++++++++++
 testVectors/mpc/phase5_prove.json  | 142 +++++++++++++++++++++++++
 testVectors/mpc/phase5_prove.txt   | 130 +++++++++++++++++++++++
 testVectors/mpc/phase5_verify.json |  72 +++++++++++++
 testVectors/mpc/phase5_verify.txt  |  60 +++++++++++
 17 files changed, 2005 insertions(+), 3 deletions(-)