sl-oblivious 1.1.0

OT protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Silence Laboratories Pte. Ltd. All Rights Reserved.
// This software is licensed under the Silence Laboratories License Agreement.

use thiserror::Error;

/// SoftSpokenOT errors
#[derive(Error, Debug)]
pub enum SoftSpokenOTError {
    /// Abort the protocol and ban the Receiver
    #[error("Abort the protocol and ban the Receiver")]
    AbortProtocolAndBanReceiver,
}