Certificate

Struct Certificate 

Source
pub struct Certificate {
    pub cert_type: CertType,
    pub type_int: u8,
    pub value: Vec<u8>,
}
Expand description

A relay certificate as defined in tor-spec section 4.2.

Certificates are used in CERTS cells to authenticate relays during the link handshake. Each certificate has a type and a variable-length value containing the actual certificate data.

§Wire Format

+----------+------------+------------------+
| Type (1) | Length (2) | Value (Len bytes)|
+----------+------------+------------------+

Note that the length field is 2 bytes (unlike Address which uses 1 byte).

§Example

use stem_rs::client::datatype::{Certificate, CertType};

// Create a certificate
let cert = Certificate::new(CertType::Link, vec![0x01, 0x02, 0x03]);
assert_eq!(cert.cert_type, CertType::Link);

// Pack and unpack
let packed = cert.pack();
let (unpacked, _) = Certificate::pop(&packed).unwrap();
assert_eq!(cert, unpacked);

Fields§

§cert_type: CertType

The type of this certificate.

§type_int: u8

The raw type byte (preserved for unknown types).

§value: Vec<u8>

The certificate data.

Implementations§

Source§

impl Certificate

Source

pub fn new(cert_type: CertType, value: Vec<u8>) -> Self

Creates a new certificate with the given type and value.

§Arguments
  • cert_type - The certificate type
  • value - The certificate data
Source

pub fn from_int(cert_type: u8, value: Vec<u8>) -> Self

Creates a certificate from a raw type byte and value.

This is used when parsing certificates from the wire format.

§Arguments
  • cert_type - The raw certificate type byte
  • value - The certificate data
Source

pub fn pack(&self) -> Vec<u8>

Packs the certificate into its wire format.

§Returns

A Vec<u8> containing: [type (1), length (2), value...]

Source

pub fn pop(content: &[u8]) -> Result<(Self, &[u8]), Error>

Unpacks a certificate from the start of a byte slice, returning the remainder.

§Arguments
  • content - The byte slice to read from
§Returns

A tuple of (Certificate, remainder).

§Errors

Returns Error::Protocol if:

  • The data is too short for the header
  • The specified length exceeds the available data

Trait Implementations§

Source§

impl Clone for Certificate

Source§

fn clone(&self) -> Certificate

Returns a duplicate 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 Certificate

Source§

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

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

impl PartialEq for Certificate

Source§

fn eq(&self, other: &Certificate) -> 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 Eq for Certificate

Source§

impl StructuralPartialEq for Certificate

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