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:10 UTC

[incubator-milagro-crypto-c] branch develop updated (a91990c -> aa31e19)

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

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


    from a91990c  Merge pull request #8 from apache/check-coveralls
     add 71c2bed  add bls to library
     new aa31e19  Merge pull request #12 from apache/add-bls

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:
 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(-)
 create mode 100644 examples/testbls_ZZZ.c.in
 create mode 100644 include/bls.h.in
 create mode 100644 include/bls192.h.in
 create mode 100644 include/bls256.h.in
 create mode 100644 src/bls.c.in
 create mode 100644 src/bls192.c.in
 create mode 100644 src/bls256.c.in
 create mode 100644 test/test_bls_ZZZ.c.in


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

Posted by br...@apache.org.
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(-)