TrustList

Struct TrustList 

Source
pub struct TrustList { /* private fields */ }
Expand description

Struct used to index all the available public keys which can be used to validate the signature on a given certificate.

Keys are indexed by their kid (Key ID) which is an arbitrary sequence of bytes.

Implementations§

Source§

impl TrustList

Source

pub fn get_key(&self, kid: &[u8]) -> Option<&[u8]>

Returns the public key with the specified key identifier or None if there is no key with that key ID.

Source

pub fn new() -> Self

Creates a new empty trustlist

Source

pub fn add(&mut self, kid: &[u8], key: Vec<u8>)

Adds a raw public key to the TrustList

Source

pub fn add_key_from_certificate( &mut self, base64_x509_cert: &str, ) -> Result<(), KeyParseError>

Adds a public key from a X509 certificate encoded in Base64 (certificate data only, without delimiters). When using a certificate the KID are the first 8 bytes of the SHA256 hash of the certificate data (source).

Source

pub fn add_key_from_base64( &mut self, kid: &[u8], base64_key: &str, ) -> Result<(), KeyParseError>

Adds a base64 encoded raw key with the specified kid to the trust list

Trait Implementations§

Source§

impl Debug for TrustList

Source§

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

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

impl Default for TrustList

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl TryFrom<Value> for TrustList

Source§

type Error = TrustListFromJsonError

The type returned in the event of a conversion error.
Source§

fn try_from(data: Value) -> Result<Self, Self::Error>

Performs the conversion.

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