Crates.io | frost-rerandomized |
lib.rs | frost-rerandomized |
version | |
source | src |
created_at | 2023-03-09 14:42:02.755109+00 |
updated_at | 2025-01-15 16:39:53.479368+00 |
description | Types and traits to support implementing a re-randomized variant of Flexible Round-Optimized Schnorr Threshold signature schemes (FROST). |
homepage | |
repository | https://github.com/ZcashFoundation/frost |
max_upload_size | |
id | 805693 |
Cargo.toml error: | TOML parse error at line 23, column 1 | 23 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Base traits and types in Rust that implement 'Two-Round Threshold Schnorr Signatures with
FROST' generically for
frost-core::Ciphersuite
implementations, with support for Zcash-compatible
RedDSA re-randomized signatures.
The FROST specification is not yet finalized, and this codebase has not yet been audited or
released. The APIs and types in frost-rerandomized
are subject to change.
frost-rerandomized
is similar to frost-core
, but provides different
sign()
and aggregate()
functions adding support for re-randomized signatures.
End-users should not use frost-rerandomized
if they want to sign and verify signatures, they
should use the crate specific to their ciphersuite/curve parameters that uses frost-rerandomized
as a
dependency, such as reddsa
.
See ciphersuite-specific modules, e.g. the ones in reddsa
.