frost-ed448 0.5.0

A Schnorr signature scheme over Ed448 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::<Ed448Shake256, _>(rng);
}

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

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