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
//! Scalar type arithmetic with shared authenticated, shared non-authenticated,
//! and plaintext types
#![allow(clippy::module_inception)]

mod authenticated_scalar;
mod mpc_scalar;
mod scalar;

pub use authenticated_scalar::*;
pub use mpc_scalar::*;
pub use scalar::*;

#[cfg(feature = "test_helpers")]
pub use authenticated_scalar::test_helpers as scalar_test_helpers;