pub enum PsaDecryptAlgorithm {
RsaPkcs1v15,
RsaOaepSha256,
}Expand description
Enumerates decrypt algorithms supported by PSA provider mappings.
Variants§
Trait Implementations§
Source§impl Clone for PsaDecryptAlgorithm
impl Clone for PsaDecryptAlgorithm
Source§fn clone(&self) -> PsaDecryptAlgorithm
fn clone(&self) -> PsaDecryptAlgorithm
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PsaDecryptAlgorithm
impl Debug for PsaDecryptAlgorithm
Source§impl PartialEq for PsaDecryptAlgorithm
impl PartialEq for PsaDecryptAlgorithm
Source§fn eq(&self, other: &PsaDecryptAlgorithm) -> bool
fn eq(&self, other: &PsaDecryptAlgorithm) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PsaDecryptAlgorithm
impl Eq for PsaDecryptAlgorithm
impl StructuralPartialEq for PsaDecryptAlgorithm
Auto Trait Implementations§
impl Freeze for PsaDecryptAlgorithm
impl RefUnwindSafe for PsaDecryptAlgorithm
impl Send for PsaDecryptAlgorithm
impl Sync for PsaDecryptAlgorithm
impl Unpin for PsaDecryptAlgorithm
impl UnsafeUnpin for PsaDecryptAlgorithm
impl UnwindSafe for PsaDecryptAlgorithm
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