pub struct EcdsaSigningKeyP384 { /* private fields */ }Trait Implementations§
Source§impl Debug for EcdsaSigningKeyP384
impl Debug for EcdsaSigningKeyP384
Source§impl SigningKey for EcdsaSigningKeyP384
impl SigningKey for EcdsaSigningKeyP384
Source§fn choose_scheme(&self, offered: &[SignatureScheme]) -> Option<Box<dyn Signer>>
fn choose_scheme(&self, offered: &[SignatureScheme]) -> Option<Box<dyn Signer>>
Choose a
SignatureScheme from those offered. Read moreSource§fn algorithm(&self) -> SignatureAlgorithm
fn algorithm(&self) -> SignatureAlgorithm
What kind of key we have.
Source§fn public_key(&self) -> Option<SubjectPublicKeyInfoDer<'_>>
fn public_key(&self) -> Option<SubjectPublicKeyInfoDer<'_>>
Get the RFC 5280-compliant SubjectPublicKeyInfo (SPKI) of this
SigningKey if available.Source§impl TryFrom<&PrivateKeyDer<'_>> for EcdsaSigningKeyP384
impl TryFrom<&PrivateKeyDer<'_>> for EcdsaSigningKeyP384
Auto Trait Implementations§
impl Freeze for EcdsaSigningKeyP384
impl RefUnwindSafe for EcdsaSigningKeyP384
impl Send for EcdsaSigningKeyP384
impl Sync for EcdsaSigningKeyP384
impl Unpin for EcdsaSigningKeyP384
impl UnwindSafe for EcdsaSigningKeyP384
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