arcis-compiler 0.9.7

A framework for writing secure multi-party computation (MPC) circuits to be executed on the Arcium network.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod finalize;
pub mod init;
mod test;
pub mod utils;

/// Number of Rescue base field ciphertexts for the encrypted MXE keys.
///  - 1 for the x25519 private key
///  - 5 for the Rescue scalar field key
///  - 1 for the AES-128 key
///  - 1 for the AES-192 key
///  - 2 for the AES-256 key
///  - 2 for the ed25519 secret key
///  - 1 for the ElGamal secret key
pub const MXE_KEYS_ENC_COUNT: usize = 13;