Struct Operation

Source
pub struct Operation {
    pub key_name: String,
    pub alg: Cipher,
    pub ciphertext: Zeroizing<Vec<u8>>,
}
Expand description

Native object for cipher decryption operations.

Fields§

§key_name: String

Defines which key should be used for the decryption operation.

§alg: Cipher

An cipher encryption algorithm to be used for decryption, that is compatible with the type of key.

§ciphertext: Zeroizing<Vec<u8>>

The short encrypted message to be decrypted.

Implementations§

Source§

impl Operation

Source

pub fn validate(&self, key_attributes: Attributes) -> Result<()>

Validate the contents of the operation against the attributes of the key it targets

This method checks that:

  • the key policy allows decrypting messages
  • the key policy allows the decryption algorithm requested in the operation
  • the key type is compatible with the requested algorithm
  • the message to decrypt is valid (not length 0)

Trait Implementations§

Source§

impl Debug for Operation

Source§

fn fmt(&self, __f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Operation> for NativeOperation

Source§

fn from(op: Operation) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.