pub struct MbedtlsKeyProvider;
Expand description
Implements KeyProvider
using mbedtls
Trait Implementations§
Source§impl Debug for MbedtlsKeyProvider
impl Debug for MbedtlsKeyProvider
Source§impl KeyProvider for MbedtlsKeyProvider
impl KeyProvider for MbedtlsKeyProvider
Source§fn load_private_key(
&self,
key_der: PrivateKeyDer<'static>,
) -> Result<Arc<dyn SigningKey>, Error>
fn load_private_key( &self, key_der: PrivateKeyDer<'static>, ) -> Result<Arc<dyn SigningKey>, Error>
Decode and validate a private signing key from
key_der
. Read moreAuto Trait Implementations§
impl Freeze for MbedtlsKeyProvider
impl RefUnwindSafe for MbedtlsKeyProvider
impl Send for MbedtlsKeyProvider
impl Sync for MbedtlsKeyProvider
impl Unpin for MbedtlsKeyProvider
impl UnwindSafe for MbedtlsKeyProvider
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