Struct SealingKeyPreparedNonce

Source
pub struct SealingKeyPreparedNonce<'a, N: NonceSequence> { /* private fields */ }
Expand description

A key operation with a precomputed nonce from a key’s associated NonceSequence.

Implementations§

Source§

impl<N: NonceSequence> SealingKeyPreparedNonce<'_, N>

Source

pub fn nonce(&self) -> &Nonce

Returns the prepared Nonce that is used for key methods invoked on Self.

Source§

impl<N: NonceSequence> SealingKeyPreparedNonce<'_, N>

Source

pub fn seal_in_place_append_tag<A, InOut>( self, aad: Aad<A>, in_out: &mut InOut, ) -> Result<(), Unspecified>
where A: AsRef<[u8]>, InOut: AsMut<[u8]> + for<'in_out> Extend<&'in_out u8>,

Encrypts and signs (“seals”) data in place, appending the tag to the resulting ciphertext.

See SealingKey::seal_in_place_append_tag for additional API information.

§Errors

error::Unspecified when nonce_sequence cannot be advanced.

Source

pub fn seal_in_place_separate_tag<A>( self, aad: Aad<A>, in_out: &mut [u8], ) -> Result<Tag, Unspecified>
where A: AsRef<[u8]>,

Encrypts and signs (“seals”) data in place.

See SealingKey::seal_in_place_separate_tag for additional API information.

§Errors

error::Unspecified when nonce_sequence cannot be advanced.

Trait Implementations§

Source§

impl<N: NonceSequence> Debug for SealingKeyPreparedNonce<'_, N>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, N> Freeze for SealingKeyPreparedNonce<'a, N>

§

impl<'a, N> RefUnwindSafe for SealingKeyPreparedNonce<'a, N>
where N: RefUnwindSafe,

§

impl<'a, N> Send for SealingKeyPreparedNonce<'a, N>
where N: Send,

§

impl<'a, N> Sync for SealingKeyPreparedNonce<'a, N>
where N: Sync,

§

impl<'a, N> Unpin for SealingKeyPreparedNonce<'a, N>

§

impl<'a, N> !UnwindSafe for SealingKeyPreparedNonce<'a, N>

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.