Skip to content

golemfactory/gMorph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gmorph

Fully homomorphic encryption library for gWasm.

Crates.io version Download docs.rs docs

gMorph is written entirely in Rust and is meant to be easily cross-compiled to WebAssembly for use in gWasm.

Disclaimer

gMorph is very much experimental in nature so things are expected to break unexpectedly. Also, please note that we make no claims about security of the encryption scheme. This work is provided as the Proof of Concept for FHE on gWASM, basically for demonstration purposes. If you find a bug, please file a bug report here.

# Cargo.toml
[dependencies]
gmorph = "0.1"

Example usage:

use gmorph::*;
use num_traits::Zero;

let key_pair = KeyPair::default();
let enc: Vec<_> = (1..10)
    .map(|x| Encoded::encode(x).encrypt(&key_pair))
    .collect();
let enc = enc.into_iter().fold(Encoded::zero(), |acc, x| acc + x);
let given = enc.decrypt(&key_pair).decode();
let expected: u32 = (1..10).sum();

assert_eq!(expected, given, "the sums should be equal, and equal to 45");

Examples

You can find some more examples in examples folder. For instance, to run examples/simple_mul.rs, invoke:

cargo run --release --example simple_mul

About

Fully Homomorphic Encryption library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages