tss: new tss package and tss/frost threshold signature scheme#349
Open
armfazh wants to merge 3 commits into
Open
tss: new tss package and tss/frost threshold signature scheme#349armfazh wants to merge 3 commits into
armfazh wants to merge 3 commits into
Conversation
armfazh
force-pushed
the
secretSharing
branch
3 times, most recently
from
August 26, 2022 22:59
bb3e3e4 to
28db5bf
Compare
Contributor
Author
|
Hi folks, to move forward with this PR, please leave your comments to the latest changes. And approve if you are ok with the current status. |
armfazh
force-pushed
the
secretSharing
branch
from
October 10, 2022 20:24
da1ac24 to
1b68fea
Compare
armfazh
force-pushed
the
secretSharing
branch
from
October 19, 2022 08:38
98bfada to
b0a42cb
Compare
armfazh
force-pushed
the
secretSharing
branch
2 times, most recently
from
November 24, 2022 00:22
bbaa64a to
9c3d94b
Compare
armfazh
force-pushed
the
frostyflakes
branch
2 times, most recently
from
November 24, 2022 01:00
a3638fe to
735811d
Compare
bcessa
added a commit
to bryk-io/circl
that referenced
this pull request
Jun 12, 2023
Base implementation by @armfazh taken from this PR: cloudflare#349
️✅ There are no secrets present in this pull request anymore.If these secrets were true positive and are still valid, we highly recommend you to revoke them. 🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request. |
Changes: - The package tss will provide the threshold signature schemes. - The package tss/frost implements the FROST threshold signature scheme for Schnorr signatures. This scheme is under standardization process at IETF/CFRG [2]. Test vectors from [3] are passing for P256 and Ristretto255 groups. - Version supported: v11 References: [1] frost paper: https://eprint.iacr.org/2020/852 [2] draft-irtf-cfrg-frost: https://datatracker.ietf.org/doc/draft-irtf-cfrg-frost [3] test-vectors: https://github.com/cfrg/draft-irtf-cfrg-frost
armfazh
force-pushed
the
frostyflakes
branch
from
February 14, 2024 19:43
735811d to
cd6a307
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changes:
scheme for Schnorr signatures.
This scheme is under standardization process at IETF/CFRG [2].
Test vectors from [3] are passing for P256 and Ristretto255 groups.
References:
[1] frost paper: https://eprint.iacr.org/2020/852
[2] draft-irtf-cfrg-frost: https://datatracker.ietf.org/doc/draft-irtf-cfrg-frost
[3] test-vectors: https://github.com/cfrg/draft-irtf-cfrg-frost
Closes #316