You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@milagro.apache.org by br...@apache.org on 2019/06/17 15:35:11 UTC

[incubator-milagro-crypto-c] 01/01: Merge pull request #12 from apache/add-bls

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

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

commit aa31e19d39bf0f5b1e3e3b34c8246b0da24d1aa2
Merge: a91990c 71c2bed
Author: Brian Spector <sp...@users.noreply.github.com>
AuthorDate: Mon Jun 17 16:35:06 2019 +0100

    Merge pull request #12 from apache/add-bls
    
    add bls to library

 CMakeLists.txt                      |  60 ++++++++++++++-
 Makefile                            |   1 +
 config.mk                           |   5 +-
 examples/CMakeLists.txt             |   6 ++
 examples/testbls_ZZZ.c.in           | 140 ++++++++++++++++++++++++++++++++++
 examples/testmpin_ZZZ.c.in          |   2 +-
 examples/testwcc_ZZZ.c.in           |   5 +-
 include/bls.h.in                    |  75 +++++++++++++++++++
 include/bls192.h.in                 |  75 +++++++++++++++++++
 include/bls256.h.in                 |  75 +++++++++++++++++++
 include/ecp4.h.in                   |  22 +-----
 include/ecp8.h.in                   |  20 +----
 include/fp24.h.in                   |   2 +-
 include/fp48.h.in                   |   2 +-
 include/mpin192.h.in                |  10 ++-
 include/mpin256.h.in                |  10 ++-
 src/bls.c.in                        |  93 +++++++++++++++++++++++
 src/bls192.c.in                     |  91 ++++++++++++++++++++++
 src/bls256.c.in                     |  92 +++++++++++++++++++++++
 test/CMakeLists.txt                 |   7 ++
 test/test_bls_ZZZ.c.in              | 145 ++++++++++++++++++++++++++++++++++++
 test/test_fp12_arithmetics_YYY.c.in |  58 +++++++--------
 test/test_fp24_arithmetics_YYY.c.in |  50 ++++++-------
 test/test_fp_arithmetics_YYY.c.in   |  34 ++++-----
 24 files changed, 961 insertions(+), 119 deletions(-)