-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the spec #128
Merged
Merged
Update the spec #128
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
03db649
Update DKGs
survived 0a77309
Update
survived c7193cb
Update aux gen protocol
survived 02e4e62
Use real security params in the doc example
survived 8037a49
Update spec
survived def88fb
Update shell.nix
survived e12cc16
Update algos styles
survived 3cba8fb
Update spec
survived 5d6a6fe
Update proof_enc
survived a6956e4
Update proof_{aff-g}
survived 98a4354
Update proof_mod
survived b2241cd
Update proof_log*
survived 0624a30
Update proof_sch
survived 78d8d26
Update protocols
survived e7e2c31
Update protocols
survived c00dd14
Address suggestions from Slack
survived 410efe5
Update protocols description
survived 6c98ce9
Use byte notation
survived 7e2e38e
Fix typo
survived 44bae10
Address review suggestions
survived 404c212
Address review suggestion
survived File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -1,26 +1,17 @@ | ||
let # Rust | ||
pkgs = import <nixpkgs> { overlays = [ rustOverlay ]; }; | ||
lib = pkgs.lib; | ||
isDarwin = pkgs.hostPlatform.isDarwin; | ||
# shell for compiling latex spec | ||
|
||
rustVersion = "1.75.0"; | ||
rustOverlay = import (builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"); | ||
let | ||
pkgs = import <nixpkgs> {}; | ||
|
||
rust = pkgs.rust-bin.stable.${rustVersion}.default.override { | ||
extensions = [ | ||
"rust-src" # for rust-analyzer | ||
]; | ||
}; | ||
# Latex | ||
tex = (pkgs.texlive.combine { | ||
inherit (pkgs.texlive) scheme-small | ||
collection-mathscience preprint amsmath; | ||
collection-mathscience preprint amsmath enumitem placeins; | ||
}); | ||
|
||
in pkgs.stdenv.mkDerivation { | ||
name = "signers-env"; | ||
nativeBuildInputs = [ | ||
rust pkgs.rust-analyzer tex pkgs.gnum4 | ||
tex | ||
]; | ||
buildInputs = lib.optionals isDarwin [pkgs.darwin.apple_sdk.frameworks.Security]; | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: previous params set has failed on CI: https://github.com/LFDT-Lockness/cggmp21/actions/runs/12690901369/job/35372765003