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/08/27 09:05:51 UTC

[incubator-milagro-crypto-c] branch develop updated (09f4a37 -> b625ef6)

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 09f4a37  Merge pull request #45 from jaromil/develop
     add a1b9897  added BLS multiplication functions
     add d4cba59  Merge branch 'develop' into bls-sss
     add db8d27d  added BLS SSS to BLS library
     add b1f7797  fix Makefile
     new b625ef6  Merge pull request #47 from apache/bls-sss

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:
 Makefile                          |  28 ++---
 VERSION                           |   2 +-
 examples/CMakeLists.txt           |   4 +
 examples/example_bls_ZZZ.c.in     |  16 ++-
 examples/example_bls_sss_ZZZ.c.in | 242 +++++++++++++++++++++++++++++++++++
 include/bls.h.in                  |  63 +++++++++-
 include/bls192.h.in               |  52 ++++++++
 include/bls256.h.in               |  52 ++++++++
 src/bls.c.in                      | 256 ++++++++++++++++++++++++++++++++++++++
 src/bls192.c.in                   | 256 ++++++++++++++++++++++++++++++++++++++
 src/bls256.c.in                   | 256 ++++++++++++++++++++++++++++++++++++++
 test/CMakeLists.txt               |   1 +
 test/test_bls_ZZZ.c.in            |   6 +-
 test/test_bls_sss_ZZZ.c.in        | 243 ++++++++++++++++++++++++++++++++++++
 wrappers/python/bls_ZZZ.py.in     |  87 +++++++++++++
 15 files changed, 1535 insertions(+), 29 deletions(-)
 create mode 100644 examples/example_bls_sss_ZZZ.c.in
 create mode 100644 test/test_bls_sss_ZZZ.c.in


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

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 b625ef6330d8b2e4c263d6be1ec4dbbd59a1383a
Merge: 09f4a37 b1f7797
Author: Brian Spector <sp...@users.noreply.github.com>
AuthorDate: Tue Aug 27 11:05:46 2019 +0200

    Merge pull request #47 from apache/bls-sss
    
    BLS SSS

 Makefile                          |  28 ++---
 VERSION                           |   2 +-
 examples/CMakeLists.txt           |   4 +
 examples/example_bls_ZZZ.c.in     |  16 ++-
 examples/example_bls_sss_ZZZ.c.in | 242 +++++++++++++++++++++++++++++++++++
 include/bls.h.in                  |  63 +++++++++-
 include/bls192.h.in               |  52 ++++++++
 include/bls256.h.in               |  52 ++++++++
 src/bls.c.in                      | 256 ++++++++++++++++++++++++++++++++++++++
 src/bls192.c.in                   | 256 ++++++++++++++++++++++++++++++++++++++
 src/bls256.c.in                   | 256 ++++++++++++++++++++++++++++++++++++++
 test/CMakeLists.txt               |   1 +
 test/test_bls_ZZZ.c.in            |   6 +-
 test/test_bls_sss_ZZZ.c.in        | 243 ++++++++++++++++++++++++++++++++++++
 wrappers/python/bls_ZZZ.py.in     |  87 +++++++++++++
 15 files changed, 1535 insertions(+), 29 deletions(-)