forked from Chia-Network/bls-signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip schemes * wip: all schemes tests pass * del relic in prep for submodule add * add relic submodule, major wip commit with basic functionality * manual merge hdkey, better logic for g1/g2 leading bits * fix compresspoint g2 * g1/g2 serialization correct * Get IETF branch building under MacOS and Linux (Chia-Network#120) * remove travis * bring the ci forward 2 months * bring setup.py forward * add flake8 ini * add mypi.ini * first attempt at FetchContent chia-relic-src * Final cmake fixes * Add lgtm.yml * explicit order of ops * clean up code for mypy/flake8 - black * enough to start looking at plotter * lgtm assignment operator * add 0x80 compression bit for 0 and 48 byte * reverted bit changes and commented out G2 tests * switch repos for relic * Remove Unknown distribution option: 'build_requires' warning * msvc fixes * Add libsodium to all platform wheels. README nit * Fix ARM, use nuget on Windows * Try libsodium-devel, bump verbosity to confirm sodium * ARM install epel first - Fix find sodium macos * no need for floor * add fingerprint, derive_child * fix __bytes__ * add n of n sigs in AugScheme, use MPL suffix * standardizing around __bytes__ * libsodium on linux (x86_64 & ARM) * allow agg sig of 0 msgs * alias g1/g2 element * Try find gmp from chiavdf * Build gmp and sodium from scratch * Fix ARM sodium and gmp - start debugging macos * delete dist dir on ARM shr's * Move all but Windows to build verbosity 0 * Changes required for chia-blockchain (deepcopy) * ADD hd keys tests * added gmp include folder to python-bindings cmake * pyecc tests * Move ci's to pytest * Add test vectors ietf * g2 elements start with 0b000 now * Use FromSeed * Revert bad test vectors Co-authored-by: Alex Wice <[email protected]> Co-authored-by: Gene Hoffman <[email protected]> Co-authored-by: Bill Blanke <[email protected]> Co-authored-by: Gene Hoffman <[email protected]>
- Loading branch information
1 parent
f4ffccd
commit c6010c8
Showing
677 changed files
with
4,651 additions
and
212,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
BasedOnStyle: Google | ||
UseTab: Never | ||
ColumnLimit: 80 | ||
IndentWidth: 4 | ||
TabWidth: 4 | ||
AllowShortIfStatementsOnASingleLine: false | ||
IndentCaseLabels: false | ||
AccessModifierOffset: -4 | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
AlignAfterOpenBracket: AlwaysBreak | ||
IndentCaseLabels: true | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
AfterFunction: true | ||
PenaltyReturnTypeOnItsOwnLine: 1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
exclude = ./typings/**/* | ||
exclude = ./typings/**/* python-impl/fields.py | ||
ignore = E203,W503 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,3 +53,6 @@ blsbench.* | |
*.pb.h | ||
|
||
**/.DS_Store | ||
|
||
*.whl | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "contrib/pybind11"] | ||
path = contrib/pybind11 | ||
url = https://github.com/pybind/pybind11.git | ||
[submodule "contrib/relic"] | ||
path = contrib/relic | ||
url = https://github.com/Chia-Network/relic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.