Struct cryptographic_message_syntax::asn1::rfc3161::TimeStampReq
source · pub struct TimeStampReq {
pub version: Integer,
pub message_imprint: MessageImprint,
pub req_policy: Option<TsaPolicyId>,
pub nonce: Option<Integer>,
pub cert_req: Option<bool>,
pub extensions: Option<Extensions>,
}
Expand description
A time-stamp request.
TimeStampReq ::= SEQUENCE {
version INTEGER { v1(1) },
messageImprint MessageImprint,
--a hash algorithm OID and the hash value of the data to be
--time-stamped
reqPolicy TSAPolicyId OPTIONAL,
nonce INTEGER OPTIONAL,
certReq BOOLEAN DEFAULT FALSE,
extensions [0] IMPLICIT Extensions OPTIONAL }
Fields§
§version: Integer
§message_imprint: MessageImprint
§req_policy: Option<TsaPolicyId>
§nonce: Option<Integer>
§cert_req: Option<bool>
§extensions: Option<Extensions>
Implementations§
source§impl TimeStampReq
impl TimeStampReq
pub fn take_from<S: Source>( cons: &mut Constructed<'_, S> ) -> Result<Self, DecodeError<S::Error>>
pub fn encode_ref(&self) -> impl Values + '_
Trait Implementations§
source§impl Clone for TimeStampReq
impl Clone for TimeStampReq
source§fn clone(&self) -> TimeStampReq
fn clone(&self) -> TimeStampReq
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TimeStampReq
impl Debug for TimeStampReq
source§impl PartialEq for TimeStampReq
impl PartialEq for TimeStampReq
source§fn eq(&self, other: &TimeStampReq) -> bool
fn eq(&self, other: &TimeStampReq) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TimeStampReq
impl StructuralEq for TimeStampReq
impl StructuralPartialEq for TimeStampReq
Auto Trait Implementations§
impl RefUnwindSafe for TimeStampReq
impl Send for TimeStampReq
impl Sync for TimeStampReq
impl Unpin for TimeStampReq
impl UnwindSafe for TimeStampReq
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.