Struct openssl::x509::store::X509StoreBuilder
source · pub struct X509StoreBuilder(_);
Expand description
A builder type used to construct an X509Store
.
Implementations§
source§impl X509StoreBuilder
impl X509StoreBuilder
sourcepub fn new() -> Result<X509StoreBuilder, ErrorStack>
pub fn new() -> Result<X509StoreBuilder, ErrorStack>
Returns a builder for a certificate store.
The store is initially empty.
This corresponds to X509_STORE_new
.
Methods from Deref<Target = X509StoreBuilderRef>§
sourcepub fn add_cert(&mut self, cert: X509) -> Result<(), ErrorStack>
pub fn add_cert(&mut self, cert: X509) -> Result<(), ErrorStack>
Adds a certificate to the certificate store.
This corresponds to X509_STORE_add_cert
.
sourcepub fn set_default_paths(&mut self) -> Result<(), ErrorStack>
pub fn set_default_paths(&mut self) -> Result<(), ErrorStack>
Load certificates from their default locations.
These locations are read from the SSL_CERT_FILE
and SSL_CERT_DIR
environment variables if present, or defaults specified at OpenSSL
build time otherwise.
This corresponds to X509_STORE_set_default_paths
.
sourcepub fn add_lookup<T>(
&mut self,
method: &'static X509LookupMethodRef<T>
) -> Result<&mut X509LookupRef<T>, ErrorStack>
pub fn add_lookup<T>(
&mut self,
method: &'static X509LookupMethodRef<T>
) -> Result<&mut X509LookupRef<T>, ErrorStack>
Adds a lookup method to the store.
This corresponds to X509_STORE_add_lookup
.
sourcepub fn set_flags(&mut self, flags: X509VerifyFlags) -> Result<(), ErrorStack>
pub fn set_flags(&mut self, flags: X509VerifyFlags) -> Result<(), ErrorStack>
Sets certificate chain validation related flags.
This corresponds to X509_STORE_set_flags
.
sourcepub fn set_param(&mut self, param: &X509VerifyParamRef) -> Result<(), ErrorStack>
pub fn set_param(&mut self, param: &X509VerifyParamRef) -> Result<(), ErrorStack>
Sets certificate chain validation related parameters.
This corresponds to X509_STORE_set1_param
.
Trait Implementations§
source§impl AsRef<X509StoreBuilderRef> for X509StoreBuilder
impl AsRef<X509StoreBuilderRef> for X509StoreBuilder
source§fn as_ref(&self) -> &X509StoreBuilderRef
fn as_ref(&self) -> &X509StoreBuilderRef
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Borrow<X509StoreBuilderRef> for X509StoreBuilder
impl Borrow<X509StoreBuilderRef> for X509StoreBuilder
source§fn borrow(&self) -> &X509StoreBuilderRef
fn borrow(&self) -> &X509StoreBuilderRef
Immutably borrows from an owned value. Read more
source§impl Deref for X509StoreBuilder
impl Deref for X509StoreBuilder
§type Target = X509StoreBuilderRef
type Target = X509StoreBuilderRef
The resulting type after dereferencing.
source§fn deref(&self) -> &X509StoreBuilderRef
fn deref(&self) -> &X509StoreBuilderRef
Dereferences the value.
source§impl DerefMut for X509StoreBuilder
impl DerefMut for X509StoreBuilder
source§fn deref_mut(&mut self) -> &mut X509StoreBuilderRef
fn deref_mut(&mut self) -> &mut X509StoreBuilderRef
Mutably dereferences the value.
source§impl Drop for X509StoreBuilder
impl Drop for X509StoreBuilder
source§impl ForeignType for X509StoreBuilder
impl ForeignType for X509StoreBuilder
§type CType = X509_STORE
type CType = X509_STORE
The raw C type.
§type Ref = X509StoreBuilderRef
type Ref = X509StoreBuilderRef
The type representing a reference to this type.
source§unsafe fn from_ptr(ptr: *mut X509_STORE) -> X509StoreBuilder
unsafe fn from_ptr(ptr: *mut X509_STORE) -> X509StoreBuilder
Constructs an instance of this type from its raw type.
source§fn as_ptr(&self) -> *mut X509_STORE
fn as_ptr(&self) -> *mut X509_STORE
Returns a raw pointer to the wrapped value.