Skip to main content

CryptoHeader

Struct CryptoHeader 

Source
pub struct CryptoHeader {
    pub transformation_id: CryptoTransformIdentifier,
    pub session_id: [u8; 4],
    pub init_vector_suffix: [u8; 8],
}
Expand description

Spec §10.5.2.3 CryptoHeader:

  struct CryptoHeader {
    CryptoTransformIdentifier transformation_id;
    CryptoSessionId           session_id;        // 4 byte
    CryptoInitVectorSuffix    init_vector_suffix; // 8 byte
  };

Total 8 + 4 + 8 = 20 Bytes.

Fields§

§transformation_id: CryptoTransformIdentifier

Transform identifier.

§session_id: [u8; 4]

Session ID (assigned by the plugin, 4 bytes).

§init_vector_suffix: [u8; 8]

IV suffix (8 bytes). Full IV = session_id || init_vector_suffix.

Implementations§

Source§

impl CryptoHeader

Source

pub const WIRE_SIZE: usize = 20

Wire-Size (Spec).

Source

pub fn to_bytes(&self) -> [u8; 20]

Encode to wire bytes (20 bytes).

Source

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

Decode 20 wire bytes.

§Errors

A static string if the wire buffer is the wrong length.

Source

pub fn full_iv(&self) -> [u8; 12]

Computes the full 12-byte IV (spec §10.5.2.3): session_id || init_vector_suffix. Used as the nonce in AES-GCM.

Trait Implementations§

Source§

impl Clone for CryptoHeader

Source§

fn clone(&self) -> CryptoHeader

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 Copy for CryptoHeader

Source§

impl Debug for CryptoHeader

Source§

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

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

impl Eq for CryptoHeader

Source§

impl PartialEq for CryptoHeader

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for CryptoHeader

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

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.