Revert "Implement a FROST algorithm for Schnorrkel"

This reverts commit 8ef8b5ca6f.
This commit is contained in:
Luke Parker
2023-01-13 18:57:07 -05:00
parent 8ef8b5ca6f
commit be05e0dd47
6 changed files with 3 additions and 258 deletions

View File

@@ -1,14 +0,0 @@
use rand_core::OsRng;
use frost::tests::{key_gen, algorithm_machines, sign};
use crate::Schnorrkel;
#[test]
fn test() {
let keys = key_gen(&mut OsRng);
const CONTEXT: &[u8] = b"FROST Schnorrkel Test";
let machines = algorithm_machines(&mut OsRng, Schnorrkel::new(CONTEXT), &keys);
const MSG: &[u8] = b"Hello, World!";
sign(&mut OsRng, Schnorrkel::new(CONTEXT), keys, machines, MSG);
}