From 17db7e1c46fc799c74f5adcdd554b800b46b8c5f Mon Sep 17 00:00:00 2001 From: sinu <65924192+sinui0@users.noreply.github.com> Date: Wed, 17 Jan 2024 11:03:58 -0800 Subject: [PATCH] rename dangling mocks --- ot/mpz-ot/src/ideal/mod.rs | 2 +- ot/mpz-ot/src/ideal/shared.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 {