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 2019/12/12 13:07:25 UTC

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

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-crypto-c.git

commit ae39f248b7927ae8ce3bdc3b26533c011c656f39
Merge: 95cbea2 dcaa299
Author: samuele-andreoli <sa...@yahoo.it>
AuthorDate: Thu Dec 12 13:07:14 2019 +0000

    Merge pull request #56 from apache/issue51
    
    Issue51

 CMakeLists.txt                    |  68 +++-
 Makefile                          |  11 +-
 README.md                         |   6 +-
 benchmark/CMakeLists.txt          |   6 +
 benchmark/benchtest_paillier.c.in | 313 +++++++++++++++++
 config.mk                         |   5 +-
 examples/CMakeLists.txt           |   5 +
 examples/example_paillier.c       | 230 +++++++++++++
 include/ff.h.in                   |  82 +++--
 include/paillier.h                | 175 ++++++++++
 src/big.c.in                      |  84 +++++
 src/ff.c.in                       | 162 ++++-----
 src/paillier.c                    | 315 +++++++++++++++++
 src/rsa.c.in                      |   4 +-
 test/CMakeLists.txt               |  25 ++
 test/test_ff_consistency_WWW.c.in | 287 ++++++++++++++++
 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 +++++
 27 files changed, 3896 insertions(+), 127 deletions(-)