pub struct Randomized;
Expand description
This encryption strategy is guaranteed to always produce a random nonce, regardless of the payload, which will generate a different encrypted message every time.
This encryption strategy improves security by making crypto-analysis of encrypted messages harder, but makes querying them without decrypting all data impossible.
Trait Implementations§
Source§impl Debug for Randomized
impl Debug for Randomized
Source§impl PartialEq for Randomized
impl PartialEq for Randomized
Source§impl Strategy for Randomized
impl Strategy for Randomized
impl Eq for Randomized
impl StructuralPartialEq for Randomized
Auto Trait Implementations§
impl Freeze for Randomized
impl RefUnwindSafe for Randomized
impl Send for Randomized
impl Sync for Randomized
impl Unpin for Randomized
impl UnwindSafe for Randomized
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more