Skip to main content

AeadEnvelope

Struct AeadEnvelope 

Source
pub struct AeadEnvelope<Algorithm: AeadAlgorithm, Nonce, Mac, Data> { /* private fields */ }
Expand description

Authenticated encrypted data with its nonce stored alongside it.

The byte representation for the supported algorithms is nonce || ciphertext || tag.

Implementations§

Source§

impl<Nonce: NewByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NPUBBYTES> + Zeroize, Mac: NewByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_ABYTES> + Zeroize, Data: NewBytes + ResizableBytes + Zeroize> AeadEnvelope<XChaCha20Poly1305Ietf, Nonce, Mac, Data>

Source

pub fn seal<Message: Bytes + ?Sized, SecretKey: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_KEYBYTES>>( message: &Message, associated_data: Option<&[u8]>, key: &SecretKey, ) -> Result<Self, Error>

Encrypts a message with a generated nonce and stores that nonce with the ciphertext and tag.

§Errors

Returns an error if the message exceeds the construction’s maximum length or the output storage does not resize to the message length.

§Panics

Panics if the operating system’s random number generator fails.

Source§

impl<'a, Nonce: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NPUBBYTES> + TryFrom<&'a [u8]> + Zeroize, Mac: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_ABYTES> + TryFrom<&'a [u8]> + Zeroize, Data: Bytes + From<&'a [u8]> + Zeroize> AeadEnvelope<XChaCha20Poly1305Ietf, Nonce, Mac, Data>

Source

pub fn from_bytes(bytes: &'a [u8]) -> Result<Self, Error>

Initializes an AeadEnvelope from nonce || ciphertext || tag.

§Errors

Returns an error if bytes is shorter than one nonce plus one authentication tag, or if either field cannot be converted to its target type.

Source§

impl<'a, Nonce: ByteArray<CRYPTO_AEAD_CHACHA20POLY1305_IETF_NPUBBYTES> + TryFrom<&'a [u8]> + Zeroize, Mac: ByteArray<CRYPTO_AEAD_CHACHA20POLY1305_IETF_ABYTES> + TryFrom<&'a [u8]> + Zeroize, Data: Bytes + From<&'a [u8]> + Zeroize> AeadEnvelope<ChaCha20Poly1305Ietf, Nonce, Mac, Data>

Source

pub fn from_bytes(bytes: &'a [u8]) -> Result<Self, Error>

Initializes an AeadEnvelope from nonce || ciphertext || tag.

§Errors

Returns an error if bytes is shorter than one nonce plus one authentication tag, or if either field cannot be converted to its target type.

Source§

impl<Nonce: ByteArray<CRYPTO_AEAD_CHACHA20POLY1305_IETF_NPUBBYTES>, Mac: ByteArray<CRYPTO_AEAD_CHACHA20POLY1305_IETF_ABYTES>, Data: Bytes> AeadEnvelope<ChaCha20Poly1305Ietf, Nonce, Mac, Data>

Source

pub fn open<Output: ResizableBytes + NewBytes, SecretKey: ByteArray<CRYPTO_AEAD_CHACHA20POLY1305_IETF_KEYBYTES>>( &self, associated_data: Option<&[u8]>, key: &SecretKey, ) -> Result<Output, Error>

Decrypts this envelope using key and optional associated data.

§Errors

Returns an error if the ciphertext exceeds the construction’s maximum length, the output storage has the wrong length, or authentication fails. Authentication fails when the key, associated data, stored nonce, ciphertext, or tag does not match the value used during encryption.

Source§

impl AeadEnvelope<ChaCha20Poly1305Ietf, Nonce, Mac, Vec<u8>>

Source

pub fn open_to_vec<SecretKey: ByteArray<CRYPTO_AEAD_CHACHA20POLY1305_IETF_KEYBYTES>>( &self, associated_data: Option<&[u8]>, key: &SecretKey, ) -> Result<Vec<u8>, Error>

Decrypts this envelope and returns the plaintext as a Vec.

§Errors

Returns an error if the ciphertext exceeds the construction’s maximum length or authentication fails because the key, associated data, stored nonce, ciphertext, or tag does not match.

Source

pub fn into_vec(self) -> Vec<u8>

Consumes this envelope and returns it as nonce || ciphertext || tag.

Source§

impl<Algorithm: AeadAlgorithm, Nonce, Mac, Data> AeadEnvelope<Algorithm, Nonce, Mac, Data>

Source

pub fn from_parts(nonce: Nonce, tag: Mac, data: Data) -> Self

Returns a new AEAD envelope from nonce, tag, and ciphertext data.

Source

pub fn nonce(&self) -> &Nonce

Returns the stored nonce.

Source

pub fn tag(&self) -> &Mac

Returns the authentication tag.

Source

pub fn data(&self) -> &Data

Returns the ciphertext.

Source

pub fn into_parts(self) -> (Nonce, Mac, Data)

Moves the nonce, tag, and ciphertext out of this instance.

Source§

impl<Algorithm: AeadAlgorithm, Nonce: Bytes, Mac: Bytes, Data: Bytes> AeadEnvelope<Algorithm, Nonce, Mac, Data>

Source

pub fn to_vec(&self) -> Vec<u8>

Copies self into a new Vec.

Source

pub fn to_bytes<Output: NewBytes + ResizableBytes>(&self) -> Output

Copies self into the target as nonce || ciphertext || tag.

Source§

impl<Nonce: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NPUBBYTES>, Mac: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_ABYTES>, Data: Bytes> AeadEnvelope<XChaCha20Poly1305Ietf, Nonce, Mac, Data>

Source

pub fn open<Output: ResizableBytes + NewBytes, SecretKey: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_KEYBYTES>>( &self, associated_data: Option<&[u8]>, key: &SecretKey, ) -> Result<Output, Error>

Decrypts this envelope using key and optional associated data.

§Errors

Returns an error if the ciphertext exceeds the construction’s maximum length, the output storage has the wrong length, or authentication fails. Authentication fails when the key, associated data, stored nonce, ciphertext, or tag does not match the value used during encryption.

Source§

impl AeadEnvelope<XChaCha20Poly1305Ietf, StackByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NPUBBYTES>, StackByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_ABYTES>, Vec<u8>>

Source

pub fn seal_to_vec<Message: Bytes + ?Sized, SecretKey: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_KEYBYTES>>( message: &Message, associated_data: Option<&[u8]>, key: &SecretKey, ) -> Result<Self, Error>

Encrypts a message with a generated nonce and returns a VecEnvelope.

§Errors

Returns an error if the message exceeds the construction’s maximum length.

§Panics

Panics if the operating system’s random number generator fails.

Source

pub fn open_to_vec<SecretKey: ByteArray<CRYPTO_AEAD_XCHACHA20POLY1305_IETF_KEYBYTES>>( &self, associated_data: Option<&[u8]>, key: &SecretKey, ) -> Result<Vec<u8>, Error>

Decrypts this envelope and returns the plaintext as a Vec.

§Errors

Returns an error if the ciphertext exceeds the construction’s maximum length or authentication fails because the key, associated data, stored nonce, ciphertext, or tag does not match.

Source

pub fn into_vec(self) -> Vec<u8>

Consumes this envelope and returns it as nonce || ciphertext || tag.

Source§

impl<'a, Algorithm: AeadAlgorithm, Nonce, Mac, Data: From<&'a [u8]>> AeadEnvelope<Algorithm, Nonce, Mac, Data>

Source

pub fn with_nonce_data_and_mac(nonce: Nonce, tag: Mac, input: &'a [u8]) -> Self

Returns a new envelope with nonce and tag consumed and ciphertext copied from input.

Trait Implementations§

Source§

impl<Algorithm: Clone + AeadAlgorithm, Nonce: Clone, Mac: Clone, Data: Clone> Clone for AeadEnvelope<Algorithm, Nonce, Mac, Data>

Source§

fn clone(&self) -> AeadEnvelope<Algorithm, Nonce, Mac, Data>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<Algorithm: Debug + AeadAlgorithm, Nonce: Debug, Mac: Debug, Data: Debug> Debug for AeadEnvelope<Algorithm, Nonce, Mac, Data>

Source§

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

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

impl<'de, Algorithm: AeadAlgorithm, Nonce, Mac, Data> Deserialize<'de> for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: Deserialize<'de>, Mac: Deserialize<'de>, Data: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<Algorithm: AeadAlgorithm, Nonce: Bytes, Mac: Bytes, Data: Bytes> PartialEq for AeadEnvelope<Algorithm, Nonce, Mac, Data>

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<Algorithm: AeadAlgorithm, Nonce, Mac, Data> Serialize for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: Serialize, Mac: Serialize, Data: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<Algorithm: AeadAlgorithm, Nonce: Zeroize, Mac: Zeroize, Data: Zeroize> Zeroize for AeadEnvelope<Algorithm, Nonce, Mac, Data>

Source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.

Auto Trait Implementations§

§

impl<Algorithm, Nonce, Mac, Data> Freeze for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: Freeze, Mac: Freeze, Data: Freeze,

§

impl<Algorithm, Nonce, Mac, Data> RefUnwindSafe for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: RefUnwindSafe, Mac: RefUnwindSafe, Data: RefUnwindSafe, Algorithm: RefUnwindSafe,

§

impl<Algorithm, Nonce, Mac, Data> Send for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: Send, Mac: Send, Data: Send, Algorithm: Send,

§

impl<Algorithm, Nonce, Mac, Data> Sync for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: Sync, Mac: Sync, Data: Sync, Algorithm: Sync,

§

impl<Algorithm, Nonce, Mac, Data> Unpin for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: Unpin, Mac: Unpin, Data: Unpin, Algorithm: Unpin,

§

impl<Algorithm, Nonce, Mac, Data> UnsafeUnpin for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: UnsafeUnpin, Mac: UnsafeUnpin, Data: UnsafeUnpin,

§

impl<Algorithm, Nonce, Mac, Data> UnwindSafe for AeadEnvelope<Algorithm, Nonce, Mac, Data>
where Nonce: UnwindSafe, Mac: UnwindSafe, Data: UnwindSafe, Algorithm: UnwindSafe,

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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.