Struct aws_lc_rs::kem::DecapsulationKey

source ·
pub struct DecapsulationKey<Id = AlgorithmId>{ /* private fields */ }
Expand description

A serializable decapulsation key usable with KEMs. This can be randomly generated with DecapsulationKey::generate.

Implementations§

source§

impl<Id> DecapsulationKey<Id>

source

pub fn generate(alg: &'static Algorithm<Id>) -> Result<Self, Unspecified>

Generate a new KEM decapsulation key for the given algorithm.

§Errors

error::Unspecified when operation fails due to internal error.

source

pub fn algorithm(&self) -> &'static Algorithm<Id>

Return the algorithm associated with the given KEM decapsulation key.

source

pub fn encapsulation_key(&self) -> Result<EncapsulationKey<Id>, Unspecified>

Computes the KEM encapsulation key from the KEM decapsulation key.

§Errors

error::Unspecified when operation fails due to internal error.

source

pub fn decapsulate( &self, ciphertext: Ciphertext<'_> ) -> Result<SharedSecret, Unspecified>

Performs the decapsulate operation using this KEM decapsulation key on the given ciphertext.

ciphertext is the ciphertext generated by the encapsulate operation using the KEM encapsulation key associated with this KEM decapsulation key.

§Errors

Unspecified when operation fails due to internal error.

Trait Implementations§

source§

impl<Id> Debug for DecapsulationKey<Id>

source§

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

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

impl<Id> Send for DecapsulationKey<Id>

source§

impl<Id> Sync for DecapsulationKey<Id>

Auto Trait Implementations§

§

impl<Id> Freeze for DecapsulationKey<Id>

§

impl<Id> RefUnwindSafe for DecapsulationKey<Id>
where Id: RefUnwindSafe,

§

impl<Id> Unpin for DecapsulationKey<Id>

§

impl<Id> UnwindSafe for DecapsulationKey<Id>
where Id: RefUnwindSafe,

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>,

§

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>,

§

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.