rabe 0.4.2

ABE Schemes implemented in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!
//! The following tools are used in the rabe library

/// Symmetric encryption
pub mod aes;
/// Hash to [`rabe-bn::Fr`] and Hash to [`rabe-bn::G1`] or [`rabe-bn::G2`]
pub mod hash;
/// Language (human and json) and Policy parsers (in msp and dnf)
pub mod policy;
/// Secret sharing utilities
pub mod secretsharing;
/// various functions
pub mod tools;
/// File operations
pub mod file;