Struct openssl::x509::store::X509Lookup
source · pub struct X509Lookup<T>(_, _);
Expand description
Information used by an X509Store
to look up certificates and CRLs.
Implementations§
source§impl X509Lookup<HashDir>
impl X509Lookup<HashDir>
sourcepub fn hash_dir() -> &'static X509LookupMethodRef<HashDir>
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>
impl X509Lookup<File>
sourcepub fn file() -> &'static X509LookupMethodRef<File>
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>>§
sourcepub fn add_dir(
&mut self,
name: &str,
file_type: SslFiletype
) -> Result<(), ErrorStack>
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
.
sourcepub fn load_cert_file<P: AsRef<Path>>(
&mut self,
file: P,
file_type: SslFiletype
) -> Result<(), ErrorStack>
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
.
Trait Implementations§
source§impl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>
impl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>
source§fn as_ref(&self) -> &X509LookupRef<T>
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>
impl<T> Borrow<X509LookupRef<T>> for X509Lookup<T>
source§fn borrow(&self) -> &X509LookupRef<T>
fn borrow(&self) -> &X509LookupRef<T>
Immutably borrows from an owned value. Read more
source§impl<T> Deref for X509Lookup<T>
impl<T> Deref for X509Lookup<T>
§type Target = X509LookupRef<T>
type Target = X509LookupRef<T>
The resulting type after dereferencing.
source§fn deref(&self) -> &X509LookupRef<T>
fn deref(&self) -> &X509LookupRef<T>
Dereferences the value.
source§impl<T> DerefMut for X509Lookup<T>
impl<T> DerefMut for X509Lookup<T>
source§fn deref_mut(&mut self) -> &mut X509LookupRef<T>
fn deref_mut(&mut self) -> &mut X509LookupRef<T>
Mutably dereferences the value.
source§impl<T> Drop for X509Lookup<T>
impl<T> Drop for X509Lookup<T>
source§impl<T> ForeignType for X509Lookup<T>
impl<T> ForeignType for X509Lookup<T>
§type CType = X509_LOOKUP
type CType = X509_LOOKUP
The raw C type.
§type Ref = X509LookupRef<T>
type Ref = X509LookupRef<T>
The type representing a reference to this type.
source§unsafe fn from_ptr(ptr: *mut X509_LOOKUP) -> X509Lookup<T>
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
fn as_ptr(&self) -> *mut X509_LOOKUP
Returns a raw pointer to the wrapped value.