Struct Operation

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

Native object for AEAD decryption operations.

Fields§

§key_name: String

Defines which key should be used for the decryption operation.

§alg: Aead

An AEAD encryption algorithm that is compatible with the key type.

§nonce: Zeroizing<Vec<u8>>

Nonce or IV to use.

§additional_data: Zeroizing<Vec<u8>>

Additional data that has been authenticated but not encrypted.

§ciphertext: Zeroizing<Vec<u8>>

Data that has been authenticated and encrypted. For algorithms where the encrypted data and the authentication tag are defined as separate inputs, the buffer must contain the encrypted data followed by the authentication tag.

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 encryption algorithm requested in the operation
  • the key type is compatible with the requested algorithm
  • the message to decrypt is valid (not length 0)
  • the nonce 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.