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 15:57:04 UTC

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

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 e26c94a  Merge pull request #6 from apache/add-full-example
     add 743bbb4  Add wrapper for Schnorr Proof
     add 30602c6  First cleanup and move src into module
     add 25e1117  Refactor tests
     add 92df5e8  Refactor examples
     add 33ea100  Refactor benchmarks
     add 942c67b  remove copied .so files to python dir
     add 07c2bc5  Factor out core amcl utils and reuse the same ffi instance
     add cc38357  unexport ffi variables
     add d6ba378  make tests run in parallel
     add 74caf6d  Point to amcl develop in build
     add c506fc6  Merge branch 'issue7-schnorr-python-wrapper' of github.com:apache/incubator-milagro-MPC into issue7-schnorr-python-wrapper
     add 7d3416a  make amcl tests run in parallel
     new 62b9eaf  Merge pull request #15 from apache/issue7-schnorr-python-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:
 Dockerfile                                 |   5 +-
 README.md                                  |   1 -
 python/CMakeLists.txt                      |  35 +-
 python/README.md                           |  45 +-
 python/amcl/CMakeLists.txt                 |  19 +
 python/amcl/__init__.py                    |   0
 python/amcl/core_utils.py                  | 181 +++++++
 python/amcl/mpc.py                         | 621 +++++++++++++++++++++++
 python/amcl/schnorr.py                     | 219 +++++++++
 python/amcl_mpc.py                         | 764 -----------------------------
 python/bench_mpc.py                        | 105 ----
 python/benchmark/CMakeLists.txt            |  17 +
 python/benchmark/bench.py                  |  62 +++
 python/benchmark/bench_mta.py              |  76 +++
 python/benchmark/bench_schnorr.py          |  57 +++
 python/example_ecdsa.py                    | 142 ------
 python/examples/CMakeLists.txt             |  17 +
 python/{ => examples}/example_dump_keys.py |  70 +--
 python/examples/example_ecdsa.py           | 121 +++++
 python/{ => examples}/example_mta.py       |  83 ++--
 python/{ => examples}/example_r.py         | 110 ++---
 python/{ => examples}/example_s.py         | 117 ++---
 python/examples/example_schnorr.py         |  79 +++
 python/test/CMakeLists.txt                 |  53 ++
 python/test/test_ecdsa.py                  | 128 +++++
 python/{ => test}/test_mta.py              |  50 +-
 python/test/test_r.py                      |  93 ++++
 python/test/test_s.py                      | 100 ++++
 python/test/test_schnorr.py                | 149 ++++++
 python/test_ecdsa.py                       | 149 ------
 python/test_r.py                           |  87 ----
 python/test_s.py                           |  98 ----
 scripts/build.sh                           |   2 +-
 scripts/buildAMCL.sh                       |   3 +-
 scripts/test.sh                            |   2 +-
 src/CMakeLists.txt                         |   8 -
 36 files changed, 2225 insertions(+), 1643 deletions(-)
 create mode 100644 python/amcl/CMakeLists.txt
 create mode 100644 python/amcl/__init__.py
 create mode 100644 python/amcl/core_utils.py
 create mode 100644 python/amcl/mpc.py
 create mode 100644 python/amcl/schnorr.py
 delete mode 100755 python/amcl_mpc.py
 delete mode 100755 python/bench_mpc.py
 create mode 100644 python/benchmark/CMakeLists.txt
 create mode 100644 python/benchmark/bench.py
 create mode 100755 python/benchmark/bench_mta.py
 create mode 100755 python/benchmark/bench_schnorr.py
 delete mode 100755 python/example_ecdsa.py
 create mode 100644 python/examples/CMakeLists.txt
 rename python/{ => examples}/example_dump_keys.py (83%)
 create mode 100755 python/examples/example_ecdsa.py
 rename python/{ => examples}/example_mta.py (82%)
 rename python/{ => examples}/example_r.py (89%)
 rename python/{ => examples}/example_s.py (89%)
 create mode 100755 python/examples/example_schnorr.py
 create mode 100644 python/test/CMakeLists.txt
 create mode 100755 python/test/test_ecdsa.py
 rename python/{ => test}/test_mta.py (53%)
 create mode 100755 python/test/test_r.py
 create mode 100755 python/test/test_s.py
 create mode 100755 python/test/test_schnorr.py
 delete mode 100755 python/test_ecdsa.py
 delete mode 100755 python/test_r.py
 delete mode 100755 python/test_s.py


[incubator-milagro-MPC] 01/01: Merge pull request #15 from apache/issue7-schnorr-python-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 62b9eafe0e37d2791028d041b7d44404dc19d835
Merge: e26c94a 7d3416a
Author: samuele-andreoli <sa...@yahoo.it>
AuthorDate: Wed Feb 19 15:56:56 2020 +0000

    Merge pull request #15 from apache/issue7-schnorr-python-wrapper
    
    Issue7 schnorr python wrapper

 Dockerfile                                 |   5 +-
 README.md                                  |   1 -
 python/CMakeLists.txt                      |  35 +-
 python/README.md                           |  45 +-
 python/amcl/CMakeLists.txt                 |  19 +
 python/amcl/__init__.py                    |   0
 python/amcl/core_utils.py                  | 181 +++++++
 python/amcl/mpc.py                         | 621 +++++++++++++++++++++++
 python/amcl/schnorr.py                     | 219 +++++++++
 python/amcl_mpc.py                         | 764 -----------------------------
 python/bench_mpc.py                        | 105 ----
 python/benchmark/CMakeLists.txt            |  17 +
 python/benchmark/bench.py                  |  62 +++
 python/benchmark/bench_mta.py              |  76 +++
 python/benchmark/bench_schnorr.py          |  57 +++
 python/example_ecdsa.py                    | 142 ------
 python/examples/CMakeLists.txt             |  17 +
 python/{ => examples}/example_dump_keys.py |  70 +--
 python/examples/example_ecdsa.py           | 121 +++++
 python/{ => examples}/example_mta.py       |  83 ++--
 python/{ => examples}/example_r.py         | 110 ++---
 python/{ => examples}/example_s.py         | 117 ++---
 python/examples/example_schnorr.py         |  79 +++
 python/test/CMakeLists.txt                 |  53 ++
 python/test/test_ecdsa.py                  | 128 +++++
 python/{ => test}/test_mta.py              |  50 +-
 python/test/test_r.py                      |  93 ++++
 python/test/test_s.py                      | 100 ++++
 python/test/test_schnorr.py                | 149 ++++++
 python/test_ecdsa.py                       | 149 ------
 python/test_r.py                           |  87 ----
 python/test_s.py                           |  98 ----
 scripts/build.sh                           |   2 +-
 scripts/buildAMCL.sh                       |   3 +-
 scripts/test.sh                            |   2 +-
 src/CMakeLists.txt                         |   8 -
 36 files changed, 2225 insertions(+), 1643 deletions(-)