Struct ore_rs::CipherText
source · [−]pub struct CipherText<S: ORECipher, const N: usize> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock, {
pub left: Left<S, N>,
pub right: Right<S, N>,
}
Fields
left: Left<S, N>
right: Right<S, N>
Implementations
sourceimpl<S: ORECipher, const N: usize> CipherText<S, N> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock,
impl<S: ORECipher, const N: usize> CipherText<S, N> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock,
Trait Implementations
sourceimpl<S: Clone + ORECipher, const N: usize> Clone for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock,
impl<S: Clone + ORECipher, const N: usize> Clone for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock,
sourcefn clone(&self) -> CipherText<S, N>
fn clone(&self) -> CipherText<S, N>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<S: Debug + ORECipher, const N: usize> Debug for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock,
impl<S: Debug + ORECipher, const N: usize> Debug for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock,
sourceimpl<const N: usize> Ord for CipherText<OREAES128, N>
impl<const N: usize> Ord for CipherText<OREAES128, N>
sourceimpl<const N: usize> PartialEq<CipherText<OREAES128, N>> for CipherText<OREAES128, N>
impl<const N: usize> PartialEq<CipherText<OREAES128, N>> for CipherText<OREAES128, N>
sourceimpl<const N: usize> PartialOrd<CipherText<OREAES128, N>> for CipherText<OREAES128, N>
impl<const N: usize> PartialOrd<CipherText<OREAES128, N>> for CipherText<OREAES128, N>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<S: Copy + ORECipher, const N: usize> Copy for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: CipherTextBlock,
<S as ORECipher>::RightBlockType: CipherTextBlock,
impl<const N: usize> Eq for CipherText<OREAES128, N>
Auto Trait Implementations
impl<S, const N: usize> RefUnwindSafe for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: RefUnwindSafe,
<S as ORECipher>::RightBlockType: RefUnwindSafe,
impl<S, const N: usize> Send for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: Send,
<S as ORECipher>::RightBlockType: Send,
impl<S, const N: usize> Sync for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: Sync,
<S as ORECipher>::RightBlockType: Sync,
impl<S, const N: usize> Unpin for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: Unpin,
<S as ORECipher>::RightBlockType: Unpin,
impl<S, const N: usize> UnwindSafe for CipherText<S, N> where
<S as ORECipher>::LeftBlockType: UnwindSafe,
<S as ORECipher>::RightBlockType: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more