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

Reply via email to