Cryptonic 0.1.2

This project includes a tensor library, utilities for FHE functionality and most importantly an FHE based ML library
Documentation
1
2
3
4
5
6
7
8
9
10
use Cryptonic::examples::example_net::and_gate_net;

fn main() {
    and_gate_net(true, true);
    and_gate_net(true, false);
    and_gate_net(false, true);
    and_gate_net(false, false);

}