frost-p256 2.0.0

A Schnorr signature scheme over the NIST P-256 curve that supports FROST.
Documentation
1
2
3
4
5
6
7
8
9
10
use frost_p256::P256Sha256;
use rand::thread_rng;

#[test]
fn check_randomized_sign_with_dealer() {
    let rng = thread_rng();

    let (_msg, _group_signature, _group_pubkey) =
        frost_rerandomized::tests::check_randomized_sign_with_dealer::<P256Sha256, _>(rng);
}