signcryption 0.1.3

Library implementing the Toorani-Beheshti signcryption scheme instantiated over Ristretto255 or Ed25519
Documentation
mod signcrypt;
mod consts;
mod keypair;
mod sign;
mod verify;
mod error;
mod curve;
mod utils;
mod state;

pub use consts::*;
pub use sign::*;
pub use verify::*;
pub use signcrypt::*;
pub use keypair::*;
pub use error::*;
pub use curve::*;
pub use state::*;
use utils::*;