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/10 11:11:28 UTC

[incubator-milagro-MPC] branch apache updated (75f2c35 -> 2e53314)

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

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


    from 75f2c35  fix typo
     add 877350c  Add double Schnorr proof
     add 7a81940  Add tests for double schnorr proof
     add 0fefe8c  add benchmakr and examples for double schnorr proof
     add 12f3277  Add support for interactive schnorr/double schnorr proofs
     add b8f064b  Fix schnorr documentation
     new 2e53314  Merge pull request #2 from apache/add-dschnorr-proof

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_schnorr.c => bench_d_schnorr.c}   |  66 +++++--
 examples/example_d_schnorr.c                       | 144 +++++++++++++++
 ...ple_schnorr.c => example_schnorr_interactive.c} |  12 +-
 include/amcl/schnorr.h                             |  63 ++++++-
 src/schnorr.c                                      | 195 +++++++++++++++++++--
 test/smoke/test_d_schnorr_smoke.c                  | 113 ++++++++++++
 ...rr_smoke.c => test_schnorr_interactive_smoke.c} |   4 +-
 test/unit/CMakeLists.txt                           |  14 +-
 ...norr_challenge.c => test_d_schnorr_challenge.c} |  13 +-
 ...st_schnorr_commit.c => test_d_schnorr_commit.c} |  31 +++-
 ...test_schnorr_prove.c => test_d_schnorr_prove.c} |  57 ++++--
 ...st_schnorr_verify.c => test_d_schnorr_verify.c} |  44 +++--
 testVectors/schnorr/dchallenge.json                |  72 ++++++++
 testVectors/schnorr/dchallenge.txt                 |  60 +++++++
 testVectors/schnorr/dcommit.json                   |  72 ++++++++
 testVectors/schnorr/dcommit.txt                    |  60 +++++++
 testVectors/schnorr/dprove.json                    | 102 +++++++++++
 testVectors/schnorr/dprove.txt                     |  90 ++++++++++
 testVectors/schnorr/dverify.json                   |  92 ++++++++++
 testVectors/schnorr/dverify.txt                    |  80 +++++++++
 20 files changed, 1297 insertions(+), 87 deletions(-)
 copy benchmark/{bench_schnorr.c => bench_d_schnorr.c} (60%)
 create mode 100644 examples/example_d_schnorr.c
 copy examples/{example_schnorr.c => example_schnorr_interactive.c} (87%)
 create mode 100644 test/smoke/test_d_schnorr_smoke.c
 copy test/smoke/{test_schnorr_smoke.c => test_schnorr_interactive_smoke.c} (95%)
 copy test/unit/{test_schnorr_challenge.c => test_d_schnorr_challenge.c} (86%)
 copy test/unit/{test_schnorr_commit.c => test_d_schnorr_commit.c} (69%)
 copy test/unit/{test_schnorr_prove.c => test_d_schnorr_prove.c} (59%)
 copy test/unit/{test_schnorr_verify.c => test_d_schnorr_verify.c} (68%)
 create mode 100644 testVectors/schnorr/dchallenge.json
 create mode 100644 testVectors/schnorr/dchallenge.txt
 create mode 100644 testVectors/schnorr/dcommit.json
 create mode 100644 testVectors/schnorr/dcommit.txt
 create mode 100644 testVectors/schnorr/dprove.json
 create mode 100644 testVectors/schnorr/dprove.txt
 create mode 100644 testVectors/schnorr/dverify.json
 create mode 100644 testVectors/schnorr/dverify.txt


[incubator-milagro-MPC] 01/01: Merge pull request #2 from apache/add-dschnorr-proof

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

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

commit 2e533148dadb3964019eb4f9d32b487c4114ac7b
Merge: 75f2c35 b8f064b
Author: samuele-andreoli <sa...@yahoo.it>
AuthorDate: Mon Feb 10 11:11:18 2020 +0000

    Merge pull request #2 from apache/add-dschnorr-proof
    
    Add dschnorr proof

 benchmark/bench_d_schnorr.c                 | 161 +++++++++++++++++++++++
 examples/example_d_schnorr.c                | 144 ++++++++++++++++++++
 examples/example_schnorr_interactive.c      | 103 +++++++++++++++
 include/amcl/schnorr.h                      |  63 ++++++++-
 src/schnorr.c                               | 195 ++++++++++++++++++++++++++--
 test/smoke/test_d_schnorr_smoke.c           | 113 ++++++++++++++++
 test/smoke/test_schnorr_interactive_smoke.c |  81 ++++++++++++
 test/unit/CMakeLists.txt                    |  14 +-
 test/unit/test_d_schnorr_challenge.c        | 106 +++++++++++++++
 test/unit/test_d_schnorr_commit.c           | 116 +++++++++++++++++
 test/unit/test_d_schnorr_prove.c            | 125 ++++++++++++++++++
 test/unit/test_d_schnorr_verify.c           | 135 +++++++++++++++++++
 testVectors/schnorr/dchallenge.json         |  72 ++++++++++
 testVectors/schnorr/dchallenge.txt          |  60 +++++++++
 testVectors/schnorr/dcommit.json            |  72 ++++++++++
 testVectors/schnorr/dcommit.txt             |  60 +++++++++
 testVectors/schnorr/dprove.json             | 102 +++++++++++++++
 testVectors/schnorr/dprove.txt              |  90 +++++++++++++
 testVectors/schnorr/dverify.json            |  92 +++++++++++++
 testVectors/schnorr/dverify.txt             |  80 ++++++++++++
 20 files changed, 1968 insertions(+), 16 deletions(-)