Struct c509_certificate::tbs_cert::TbsCert

source ·
pub struct TbsCert {
    c509_certificate_type: u8,
    certificate_serial_number: UnwrappedBigUint,
    issuer: Name,
    validity_not_before: Time,
    validity_not_after: Time,
    subject: Name,
    subject_public_key_algorithm: SubjectPubKeyAlgorithm,
    subject_public_key: Vec<u8>,
    extensions: Extensions,
    issuer_signature_algorithm: IssuerSignatureAlgorithm,
}
Expand description

A struct represents a To Be Signed Certificate (TBS Certificate).

Fields§

§c509_certificate_type: u8

Certificate type.

§certificate_serial_number: UnwrappedBigUint

Serial number of the certificate.

§issuer: Name

Issuer

§validity_not_before: Time

Validity not before.

§validity_not_after: Time

Validity not after.

§subject: Name

Subject

§subject_public_key_algorithm: SubjectPubKeyAlgorithm

Subject Public Key Algorithm

§subject_public_key: Vec<u8>

Subject Public Key value

§extensions: Extensions

Extensions

§issuer_signature_algorithm: IssuerSignatureAlgorithm

Issuer Signature Algorithm

Implementations§

source§

impl TbsCert

source

pub fn new( c509_certificate_type: u8, certificate_serial_number: UnwrappedBigUint, issuer: Name, validity_not_before: Time, validity_not_after: Time, subject: Name, subject_public_key_algorithm: SubjectPubKeyAlgorithm, subject_public_key: Vec<u8>, extensions: Extensions, issuer_signature_algorithm: IssuerSignatureAlgorithm, ) -> Self

Create a new instance of TBS Certificate.

source

pub fn get_c509_certificate_type(&self) -> u8

Get the certificate type.

source

pub fn get_certificate_serial_number(&self) -> &UnwrappedBigUint

Get the certificate serial number.

source

pub fn get_issuer(&self) -> &Name

Get the issuer.

source

pub fn get_validity_not_before(&self) -> &Time

Get the validity not before.

source

pub fn get_validity_not_after(&self) -> &Time

Get the validity not after.

source

pub fn get_subject(&self) -> &Name

Get the subject.

source

pub fn get_subject_public_key_algorithm(&self) -> &SubjectPubKeyAlgorithm

Get the subject public key algorithm.

source

pub fn get_subject_public_key(&self) -> &[u8]

Get the subject public key.

source

pub fn get_extensions(&self) -> &Extensions

Get the extensions.

source

pub fn get_issuer_signature_algorithm(&self) -> &IssuerSignatureAlgorithm

Get the issuer signature algorithm.

Trait Implementations§

source§

impl Clone for TbsCert

source§

fn clone(&self) -> TbsCert

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 TbsCert

source§

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

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

impl Decode<'_, ()> for TbsCert

source§

fn decode(d: &mut Decoder<'_>, ctx: &mut ()) -> Result<Self, Error>

Decode a value using the given Decoder. Read more
§

fn nil() -> Option<Self>

If possible, return a nil value of Self. Read more
source§

impl<'de> Deserialize<'de> for TbsCert

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 Encode<()> for TbsCert

source§

fn encode<W: Write>( &self, e: &mut Encoder<W>, ctx: &mut (), ) -> Result<(), Error<W::Error>>

Encode a value of this type using the given Encoder. Read more
§

fn is_nil(&self) -> bool

Is this value of Self a nil value? Read more
source§

impl PartialEq for TbsCert

source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 Serialize for TbsCert

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

impl StructuralPartialEq for TbsCert

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
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

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, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> Same for T

source§

type Output = T

Should always be Self
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.
source§

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