ibs/
lib.rs

1//! Identity-based signatures (IBS) library.
2//!
3//! Currently this library contains only _one_ IBS scheme: Galindo-Garcia (GG).
4
5#![no_std]
6#![deny(missing_debug_implementations, missing_docs)]
7#![forbid(unsafe_code)]
8
9#[cfg(test)]
10extern crate std;
11
12pub mod gg;