decaf377_rdsa/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!("../README.md")]

mod domain;
mod error;
mod hash;
use hash::HStar;
mod signature;

mod signing_key;
mod verification_key;

pub use domain::{Binding, Domain, SpendAuth};
pub use error::Error;
pub use signature::Signature;
pub use signing_key::SigningKey;
pub use verification_key::{VerificationKey, VerificationKeyBytes};

pub use decaf377::Fr;

#[cfg(feature = "std")]
pub mod batch;