-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b296b2
commit e3a7b72
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule libBLS
updated
31 files
+1 −1 | .clang-format | |
+37 −0 | .github/workflows/cla.yml | |
+14 −0 | .github/workflows/clang-format-check.yml | |
+19 −0 | .github/workflows/issue_check.yml | |
+11 −12 | .github/workflows/nightly.yml | |
+1 −1 | .github/workflows/publish.yml | |
+271 −232 | .github/workflows/test.yml | |
+59 −57 | CMakeLists.txt | |
+2 −1 | bls/BLSPrivateKeyShare.cpp | |
+8 −2 | bls/BLSPublicKey.cpp | |
+4 −2 | bls/BLSPublicKey.h | |
+103 −2 | bls/bls.cpp | |
+22 −1 | bls/bls.h | |
+1 −1 | cmake/BlsFindClangFormat.cmake | |
+3 −0 | deps/build.sh | |
+1 −6 | dkg/dkg.cpp | |
+0 −2 | dkg/dkg.h | |
+27 −26 | python/dkgpython.cpp | |
+4 −4 | test/test_TE_wrappers.cpp | |
+131 −6 | test/test_bls.cpp | |
+67 −15 | test/unit_tests_bls.cpp | |
+4 −4 | test/unit_tests_dkg.cpp | |
+2 −0 | test/unit_tests_te.cpp | |
+2 −2 | third_party/cryptlite/base64.cpp | |
+5 −5 | third_party/cryptlite/sha1.h | |
+6 −6 | third_party/cryptlite/sha256.h | |
+272 −193 | third_party/json.hpp | |
+0 −1 | threshold_encryption/CMakeLists.txt | |
+3 −3 | threshold_encryption/threshold_encryption.cpp | |
+13 −7 | tools/utils.cpp | |
+9 −1 | tools/utils.h |