2026-03-04 18:42:33 +03:00
|
|
|
#![expect(
|
|
|
|
|
clippy::multiple_inherent_impl,
|
|
|
|
|
reason = "We prefer to group methods by functionality rather than by type for encoding"
|
|
|
|
|
)]
|
2025-08-18 07:39:41 -03:00
|
|
|
|
2025-08-26 14:53:02 -03:00
|
|
|
pub use circuit_io::{PrivacyPreservingCircuitInput, PrivacyPreservingCircuitOutput};
|
2025-10-03 20:44:29 -03:00
|
|
|
pub use commitment::{
|
|
|
|
|
Commitment, CommitmentSetDigest, DUMMY_COMMITMENT, DUMMY_COMMITMENT_HASH, MembershipProof,
|
|
|
|
|
compute_digest_for_path,
|
|
|
|
|
};
|
2025-08-26 14:53:02 -03:00
|
|
|
pub use encryption::{EncryptionScheme, SharedSecretKey};
|
|
|
|
|
pub use nullifier::{Nullifier, NullifierPublicKey, NullifierSecretKey};
|
2025-08-19 10:39:47 -03:00
|
|
|
|
2026-03-04 18:42:33 +03:00
|
|
|
pub mod account;
|
|
|
|
|
mod circuit_io;
|
|
|
|
|
mod commitment;
|
|
|
|
|
mod encoding;
|
|
|
|
|
pub mod encryption;
|
|
|
|
|
mod nullifier;
|
|
|
|
|
pub mod program;
|
|
|
|
|
|
2025-08-19 10:39:47 -03:00
|
|
|
#[cfg(feature = "host")]
|
2025-08-26 14:53:02 -03:00
|
|
|
pub mod error;
|