ark-mpc 0.1.2

Malicious-secure SPDZ style two party secure computation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Defines curve types for shared authenticated, shared unauthenticated, and
//! plaintext curve points
#![allow(clippy::module_inception)]

mod authenticated_curve;
mod curve;
mod mpc_curve;

pub use authenticated_curve::*;
pub use curve::*;
pub use mpc_curve::*;

#[cfg(feature = "test_helpers")]
pub use authenticated_curve::test_helpers as curve_test_helpers;