You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@milagro.apache.org by jo...@apache.org on 2019/12/19 11:14:18 UTC

[incubator-milagro-crypto-c] 01/01: Merge pull request #59 from apache/develop

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

johnmcw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-crypto-c.git

commit 4ee4d471287398c052dfb87dff3a2e735bbdd8ae
Merge: e3fc6b6 f12d344
Author: John McCane-Whitney <jo...@espians.com>
AuthorDate: Thu Dec 19 11:14:06 2019 +0000

    Merge pull request #59 from apache/develop
    
    release 2.0.0

 CMakeLists.txt                                     |   70 +-
 DISCLAIMER                                         |   11 +-
 Dockerfile                                         |   40 +-
 LICENSE                                            |    4 +-
 Makefile                                           |   41 +-
 README.md                                          |   93 +-
 VERSION                                            |    2 +-
 benchmark/CMakeLists.txt                           |    6 +
 benchmark/benchtest_paillier.c.in                  |  313 +++
 cmake/PythonSiteDirs.cmake                         |   11 -
 config.mk                                          |    5 +-
 doc/Doxyfile                                       | 2648 +++++++++++++-------
 examples/CMakeLists.txt                            |    9 +
 examples/example_bls_ZZZ.c.in                      |   55 +-
 examples/example_bls_sss_ZZZ.c.in                  |  245 ++
 examples/example_paillier.c                        |  230 ++
 include/bls.h.in                                   |   53 +-
 include/bls192.h.in                                |   42 +-
 include/bls256.h.in                                |   42 +-
 include/ff.h.in                                    |   82 +-
 include/paillier.h                                 |  175 ++
 {wrappers/python => python}/CMakeLists.txt         |    6 +-
 {wrappers/python => python}/README.md              |    0
 .../python => python}/TestMPINInstall_ZZZ.py.in    |   37 +-
 {wrappers/python => python}/TimeMPIN_ZZZ.py.in     |  221 +-
 {wrappers/python => python}/bls_ZZZ.py.in          |  107 +-
 {wrappers/python => python}/mpin_ZZZ.py.in         |  301 +--
 {wrappers/python => python}/wcc_ZZZ.py.in          |  124 +-
 src/big.c.in                                       |   84 +
 src/bls.c.in                                       |  215 +-
 src/bls192.c.in                                    |  216 +-
 src/bls256.c.in                                    |  216 +-
 src/ff.c.in                                        |  162 +-
 src/fp12.c.in                                      |    2 +-
 src/fp24.c.in                                      |    2 +-
 src/fp48.c.in                                      |    2 +-
 src/paillier.c                                     |  315 +++
 src/rsa.c.in                                       |    4 +-
 test/CMakeLists.txt                                |   26 +
 test/test_bls_ZZZ.c.in                             |   40 +-
 test/test_bls_sss_ZZZ.c.in                         |  244 ++
 test/test_ff_consistency_WWW.c.in                  |  287 +++
 test/test_output_functions_ZZZ.c.in                |    2 +-
 test/test_paillier_add.c                           |  155 ++
 test/test_paillier_consistency.c                   |  220 ++
 test/test_paillier_decrypt.c                       |  199 ++
 test/test_paillier_encrypt.c                       |  167 ++
 test/test_paillier_keygen.c                        |  287 +++
 test/test_paillier_mult.c                          |  155 ++
 testVectors/paillier/add.txt                       |  700 ++++++
 testVectors/paillier/decrypt.txt                   |   99 +
 testVectors/paillier/encrypt.txt                   |   87 +
 testVectors/paillier/keygen.txt                    |  100 +
 testVectors/paillier/mult.txt                      |   76 +
 54 files changed, 7437 insertions(+), 1598 deletions(-)