Skip to main content

ReplyBuildInput

Struct ReplyBuildInput 

Source
pub struct ReplyBuildInput<'a> {
    pub cert_der: &'a [u8],
    pub permissions: &'a [u8],
    pub pdata: &'a [u8],
    pub dsign_algo: &'a str,
    pub kagree_algo: &'a str,
    pub dh2: &'a [u8],
    pub challenge2: &'a [u8; 32],
    pub hash_c1: &'a [u8; 32],
    pub dh1: &'a [u8],
    pub challenge1: &'a [u8; 32],
    pub ocsp_status: &'a [u8],
    pub signature: &'a [u8],
}
Expand description

Eingaben zum Bauen des Reply-Tokens.

Fields§

§cert_der: &'a [u8]

Replier-Cert-DER.

§permissions: &'a [u8]

Replier-Permissions.

§pdata: &'a [u8]

Replier-pdata.

§dsign_algo: &'a str

Replier-c.dsign_algo.

§kagree_algo: &'a str

Replier-c.kagree_algo (Echo des Initiator-Werts).

§dh2: &'a [u8]

Replier-DH-Public.

§challenge2: &'a [u8; 32]

Replier-Challenge.

§hash_c1: &'a [u8; 32]

Echo hash_c1.

§dh1: &'a [u8]

Echo dh1.

§challenge1: &'a [u8; 32]

Echo challenge1.

§ocsp_status: &'a [u8]

OCSP-Status.

§signature: &'a [u8]

Replier-Signatur ueber signing_bytes.

Auto Trait Implementations§

§

impl<'a> Freeze for ReplyBuildInput<'a>

§

impl<'a> RefUnwindSafe for ReplyBuildInput<'a>

§

impl<'a> Send for ReplyBuildInput<'a>

§

impl<'a> Sync for ReplyBuildInput<'a>

§

impl<'a> Unpin for ReplyBuildInput<'a>

§

impl<'a> UnsafeUnpin for ReplyBuildInput<'a>

§

impl<'a> UnwindSafe for ReplyBuildInput<'a>

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