pub struct X509StoreBuilder(/* private fields */);
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.
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.
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.
Sourcepub fn set_flags(&mut self, flags: X509Flags)
pub fn set_flags(&mut self, flags: X509Flags)
Sets verify flags.
This corresponds to X509_STORE_set_flags
.
Sourcepub fn verify_param_mut(&mut self) -> &mut X509VerifyParamRef
pub fn verify_param_mut(&mut self) -> &mut X509VerifyParamRef
Returns a mutable reference to the X509 verification configuration.
This corresponds to [X509_STORE_get0_param
].
Trait Implementations§
Source§impl AsMut<X509StoreBuilderRef> for X509StoreBuilder
impl AsMut<X509StoreBuilderRef> for X509StoreBuilder
Source§fn as_mut(&mut self) -> &mut X509StoreBuilderRef
fn as_mut(&mut self) -> &mut X509StoreBuilderRef
Converts this type into a mutable reference of the (usually inferred) input type.
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 BorrowMut<X509StoreBuilderRef> for X509StoreBuilder
impl BorrowMut<X509StoreBuilderRef> for X509StoreBuilder
Source§fn borrow_mut(&mut self) -> &mut X509StoreBuilderRef
fn borrow_mut(&mut self) -> &mut X509StoreBuilderRef
Mutably borrows from an owned value. Read more
Source§impl Deref for X509StoreBuilder
impl Deref for X509StoreBuilder
Source§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
Source§type CType = x509_store_st
type CType = x509_store_st
The raw C type.
Source§type Ref = X509StoreBuilderRef
type Ref = X509StoreBuilderRef
The type representing a reference to this type.
Source§unsafe fn from_ptr(ptr: *mut x509_store_st) -> X509StoreBuilder
unsafe fn from_ptr(ptr: *mut x509_store_st) -> X509StoreBuilder
Constructs an instance of this type from its raw type. Read more
Source§fn as_ptr(&self) -> *mut x509_store_st
fn as_ptr(&self) -> *mut x509_store_st
Returns a raw pointer to the wrapped value.
impl Send for X509StoreBuilder
impl Sync for X509StoreBuilder
Auto Trait Implementations§
impl Freeze for X509StoreBuilder
impl RefUnwindSafe for X509StoreBuilder
impl Unpin for X509StoreBuilder
impl UnwindSafe for X509StoreBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more