chaum_pedersen_auth 0.1.9

An implementation of ZKP(Zero Knowledge Proof) using chaum pedersen algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    tonic_build::configure()
        .build_server(true)
        .out_dir("examples/protos/") // you can change the generated code's location
        .compile_protos(
            &["examples/protos/zkp_protocol.proto"],
            &["examples/protos/"], // specify the root location to search proto dependencies
        )
        .unwrap();
}