fhe 0.1.1

Fully Homomorphic Encryption in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![crate_name = "fhe"]
#![crate_type = "lib"]
#![warn(missing_docs, unused_imports)]
#![doc = include_str!("../README.md")]

mod errors;

pub mod bfv;
pub mod mbfv;
pub mod proto;
pub use errors::{Error, ParametersError, Result, SerializationError};

// Test the source code included in the README.
#[macro_use]
extern crate doc_comment;
doctest!("../README.md");