Struct Protocol

Source
pub struct Protocol { /* private fields */ }
Expand description

A stateful object providing fine-grained symmetric-key cryptographic services like hashing, message authentication codes, pseudo-random functions, authenticated encryption, and more.

Implementations§

Source§

impl Protocol

Source

pub fn new(domain: &str) -> Protocol

Creates a new protocol with the given domain.

Source

pub fn mix(&mut self, label: &str, input: &[u8])

Mixes the given label and slice into the protocol state.

Source

pub fn mix_writer<W: Write>(self, label: &str, inner: W) -> MixWriter<W>

Moves the protocol into a std::io::Write implementation, mixing all written data in a single operation and passing all writes to inner.

Equivalent to buffering all written data in a slice and passing it to Protocol::mix.

Use MixWriter::into_inner to finish the operation and recover the protocol and inner.

Source

pub fn derive(&mut self, label: &str, out: &mut [u8])

Derives pseudorandom output from the protocol’s current state, the label, and the output length, then ratchets the protocol’s state with the label and output length.

Source

pub fn derive_array<const N: usize>(&mut self, label: &str) -> [u8; N]

Derives output from the protocol’s current state and returns it as an N-byte array.

Source

pub fn encrypt(&mut self, label: &str, in_out: &mut [u8])

Encrypts the given slice in place using the protocol’s current state as the key, then ratchets the protocol’s state using the label and input.

Source

pub fn decrypt(&mut self, label: &str, in_out: &mut [u8])

Decrypts the given slice in place using the protocol’s current state as the key, then ratchets the protocol’s state using the label and input.

Source

pub fn seal(&mut self, label: &str, in_out: &mut [u8])

Encrypts the given slice in place using the protocol’s current state as the key, appending an authentication tag of TAG_LEN bytes, then ratchets the protocol’s state using the label and input.

Source

pub fn open<'ct>( &mut self, label: &str, in_out: &'ct mut [u8], ) -> Option<&'ct [u8]>

Decrypts the given slice in place using the protocol’s current state as the key, verifying the final TAG_LEN bytes as an authentication tag, then ratchets the protocol’s state using the label and input.

Returns the plaintext slice of in_out if the input was authenticated.

Trait Implementations§

Source§

impl Clone for Protocol

Source§

fn clone(&self) -> Protocol

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Protocol

Source§

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

Formats the value using the given formatter. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.