Skip to content

Commit

Permalink
zkp: Add Musig2 module
Browse files Browse the repository at this point in the history
Signed-off-by: Sanket Kanjalkar <[email protected]>
  • Loading branch information
sanket1729 committed Jan 7, 2024
1 parent 163186a commit b54aa8d
Show file tree
Hide file tree
Showing 2 changed files with 1,525 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/zkp/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
mod ecdsa_adaptor;
mod generator;
#[cfg(feature = "std")]
pub mod musig;
#[cfg(feature = "std")]
pub use self::musig::new_musig_nonce_pair;

#[cfg(feature = "std")]
mod pedersen;
#[cfg(feature = "std")]
Expand All @@ -12,6 +17,8 @@ mod whitelist;
pub use self::ecdsa_adaptor::*;
pub use self::generator::*;
#[cfg(feature = "std")]
pub use self::musig::*;
#[cfg(feature = "std")]
pub use self::pedersen::*;
#[cfg(feature = "std")]
pub use self::rangeproof::*;
Expand Down
Loading

0 comments on commit b54aa8d

Please sign in to comment.