Struct aws_nitro_enclaves_cose::encrypt::CoseEncrypt0

source ·
pub struct CoseEncrypt0 { /* private fields */ }
Expand description

Implementation of the COSE_Encrypt0 structure as defined in RFC8152.

The COSE_Encrypt0 encrypted structure does not have the ability to specify recipients of the message. The structure assumes that the recipient of the object will already know the identity of the key to be used in order to decrypt the message. If a key needs to be identified to the recipient, the enveloped structure ought to be used.

The COSE_Encrypt0 structure can be encoded as either tagged or untagged depending on the context it will be used in. A tagged COSE_Encrypt0 structure is identified by the CBOR tag 16. The CDDL fragment that represents this is:

COSE_Encrypt0_Tagged = #6.16(COSE_Encrypt0)

The COSE_Encrypt0 structure is a CBOR array. The fields of the array in order are:

protected: This is as described in Section 3.

unprotected: This is as described in Section 3.

ciphertext: This is as described in Section 5.1.

The CDDL fragment that represents the above text for COSE_Encrypt0 follows.

COSE_Encrypt0 = [ Headers, ciphertext : bstr / nil, ]

Implementations§

source§

impl CoseEncrypt0

source

pub fn new<C: Encryption + Entropy>( payload: &[u8], cipher_config: CipherConfiguration, key: &[u8] ) -> Result<Self, CoseError>

Creates a new instance of the COSE_Encrypt0 structure and encrypts the provided payload. https://datatracker.ietf.org/doc/html/rfc8152#section-5.3

source

pub fn decrypt<C: Decryption>( &self, key: &[u8] ) -> Result<(HeaderMap, &HeaderMap, Vec<u8>), CoseError>

Decrypt the ciphertext in the COSE_Encrypt0 structure and returns both the protected and unprotected HeaderMap(s). https://datatracker.ietf.org/doc/html/rfc8152#section-5.3

source

pub fn as_bytes(&self, tagged: bool) -> Result<Vec<u8>, CoseError>

Serializes the structure for transport / storage. If tagged is true, the optional #6.16 tag is added to the output.

source

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

This function deserializes the structure, but doesn’t check the contents for correctness at all. Accepts untagged structures or structures with tag 16.

Trait Implementations§

source§

impl Clone for CoseEncrypt0

source§

fn clone(&self) -> CoseEncrypt0

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 CoseEncrypt0

source§

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

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

impl<'de> Deserialize<'de> for CoseEncrypt0

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 Serialize for CoseEncrypt0

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

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

§

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

§

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.
source§

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