pub struct CoseRecipient {
    pub protected: ProtectedHeader,
    pub unprotected: Header,
    pub ciphertext: Option<Vec<u8>>,
    pub recipients: Vec<CoseRecipient>,
}
Expand description

Structure representing the recipient of encrypted data.

 COSE_Recipient = [
     Headers,
     ciphertext : bstr / nil,
     ? recipients : [+COSE_recipient]
 ]

Fields

protected: ProtectedHeaderunprotected: Headerciphertext: Option<Vec<u8>>recipients: Vec<CoseRecipient>

Implementations

Decrypt the ciphertext value, using cipher to decrypt the cipher text and combined AAD.

Panics

This function will panic if no ciphertext is available. It will also panic if the context parameter does not refer to a recipient context.

Trait Implementations

Convert a Value into an instance of the type.

Convert the object into a Value, consuming it along the way.

Create an object instance from serialized CBOR data in a slice.

Serialize this object to a vector, consuming it along the way.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.