diff --git a/ot/mpz-ot/src/ideal/mod.rs b/ot/mpz-ot/src/ideal/mod.rs index c2252022..a36242f6 100644 --- a/ot/mpz-ot/src/ideal/mod.rs +++ b/ot/mpz-ot/src/ideal/mod.rs @@ -1,4 +1,4 @@ -//! Mock implementations of the OT protocols. +//! Ideal implementations of the OT protocols. mod owned; mod shared; diff --git a/ot/mpz-ot/src/ideal/shared.rs b/ot/mpz-ot/src/ideal/shared.rs index fcd6fbc8..cd1e62c9 100644 --- a/ot/mpz-ot/src/ideal/shared.rs +++ b/ot/mpz-ot/src/ideal/shared.rs @@ -29,7 +29,7 @@ pub fn ideal_ot_shared_pair() -> (IdealSharedOTSender, IdealSharedOTReceiver) { (sender, receiver) } -/// A mock oblivious transfer sender. +/// A ideal oblivious transfer sender. #[derive(Clone, Debug)] #[allow(clippy::type_complexity)] pub struct IdealSharedOTSender { @@ -66,7 +66,7 @@ impl CommittedOTSenderShared } } -/// A mock oblivious transfer receiver. +/// A ideal oblivious transfer receiver. #[derive(Clone, Debug)] #[allow(clippy::type_complexity)] pub struct IdealSharedOTReceiver {