frost-p256 0.5.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
11
12
13
14
15
16
17
use rand::thread_rng;

use crate::*;

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

    frost_core::tests::batch::batch_verify::<P256Sha256, _>(rng);
}

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

    frost_core::tests::batch::bad_batch_verify::<P256Sha256, _>(rng);
}