Struct openssl::x509::store::X509Lookup

source ·
pub struct X509Lookup<T>(/* private fields */);
Expand description

Information used by an X509Store to look up certificates and CRLs.

Implementations§

source§

impl X509Lookup<HashDir>

source

pub fn hash_dir() -> &'static X509LookupMethodRef<HashDir>

Lookup method that loads certificates and CRLs on demand and caches them in memory once they are loaded. It also checks for newer CRLs upon each lookup, so that newer CRLs are used as soon as they appear in the directory.

This corresponds to X509_LOOKUP_hash_dir.

source§

impl X509Lookup<File>

source

pub fn file() -> &'static X509LookupMethodRef<File>

Lookup method loads all the certificates or CRLs present in a file into memory at the time the file is added as a lookup source.

This corresponds to X509_LOOKUP_file.

Methods from Deref<Target = X509LookupRef<T>>§

source

pub fn add_dir( &mut self, name: &str, file_type: SslFiletype ) -> Result<(), ErrorStack>

Specifies a directory from which certificates and CRLs will be loaded on-demand. Must be used with X509Lookup::hash_dir.

This corresponds to X509_LOOKUP_add_dir.

source

pub fn load_cert_file<P: AsRef<Path>>( &mut self, file: P, file_type: SslFiletype ) -> Result<(), ErrorStack>

Specifies a file from which certificates will be loaded

This corresponds to X509_load_cert_file.

source

pub fn load_crl_file<P: AsRef<Path>>( &mut self, file: P, file_type: SslFiletype ) -> Result<i32, ErrorStack>

Specifies a file from which certificate revocation lists will be loaded

This corresponds to X509_load_crl_file.

Trait Implementations§

source§

impl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>

source§

fn as_ref(&self) -> &X509LookupRef<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> Borrow<X509LookupRef<T>> for X509Lookup<T>

source§

fn borrow(&self) -> &X509LookupRef<T>

Immutably borrows from an owned value. Read more
source§

impl<T> Deref for X509Lookup<T>

§

type Target = X509LookupRef<T>

The resulting type after dereferencing.
source§

fn deref(&self) -> &X509LookupRef<T>

Dereferences the value.
source§

impl<T> DerefMut for X509Lookup<T>

source§

fn deref_mut(&mut self) -> &mut X509LookupRef<T>

Mutably dereferences the value.
source§

impl<T> Drop for X509Lookup<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> ForeignType for X509Lookup<T>

§

type CType = X509_LOOKUP

The raw C type.
§

type Ref = X509LookupRef<T>

The type representing a reference to this type.
source§

unsafe fn from_ptr(ptr: *mut X509_LOOKUP) -> X509Lookup<T>

Constructs an instance of this type from its raw type.
source§

fn as_ptr(&self) -> *mut X509_LOOKUP

Returns a raw pointer to the wrapped value.
source§

impl<T> Send for X509Lookup<T>

source§

impl<T> Sync for X509Lookup<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for X509Lookup<T>
where T: RefUnwindSafe,

§

impl<T> Unpin for X509Lookup<T>
where T: Unpin,

§

impl<T> UnwindSafe for X509Lookup<T>
where T: UnwindSafe,

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

§

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

§

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.