frost-p256 2.0.0

A Schnorr signature scheme over the NIST P-256 curve that supports FROST.
Documentation
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);
}

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

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