Implement Schnorr half-aggregation from https://eprint.iacr.org/2021/350.pdf

Relevant to https://github.com/serai-dex/serai/issues/99.
This commit is contained in:
Luke Parker
2022-11-04 08:03:29 -04:00
parent 8e53522780
commit 5977aeb489
4 changed files with 215 additions and 7 deletions

View File

@@ -13,6 +13,8 @@ use multiexp::BatchVerifier;
use ciphersuite::Ciphersuite;
pub mod aggregate;
#[cfg(test)]
mod tests;