Struct mml::pgp::SignedSecretKey
source · pub struct SignedSecretKey {
pub primary_key: SecretKey,
pub details: SignedKeyDetails,
pub public_subkeys: Vec<SignedPublicSubKey>,
pub secret_subkeys: Vec<SignedSecretSubKey>,
}Available on crate features
pgp and pgp-native only.Expand description
Represents a secret signed PGP key.
Fields§
§primary_key: SecretKey§details: SignedKeyDetails§public_subkeys: Vec<SignedPublicSubKey>§secret_subkeys: Vec<SignedSecretSubKey>Implementations§
source§impl SignedSecretKey
impl SignedSecretKey
pub fn new( primary_key: SecretKey, details: SignedKeyDetails, public_subkeys: Vec<SignedPublicSubKey>, secret_subkeys: Vec<SignedSecretSubKey> ) -> SignedSecretKey
sourcepub fn expires_at(&self) -> Option<DateTime<Utc>>
pub fn expires_at(&self) -> Option<DateTime<Utc>>
Get the secret key expiration as a date.
pub fn verify(&self) -> Result<(), Error>
pub fn to_armored_writer( &self, writer: &mut impl Write, headers: Option<&BTreeMap<String, String>> ) -> Result<(), Error>
pub fn to_armored_bytes( &self, headers: Option<&BTreeMap<String, String>> ) -> Result<Vec<u8>, Error>
pub fn to_armored_string( &self, headers: Option<&BTreeMap<String, String>> ) -> Result<String, Error>
Trait Implementations§
source§impl Clone for SignedSecretKey
impl Clone for SignedSecretKey
source§fn clone(&self) -> SignedSecretKey
fn clone(&self) -> SignedSecretKey
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SignedSecretKey
impl Debug for SignedSecretKey
source§impl Deserializable for SignedSecretKey
impl Deserializable for SignedSecretKey
source§fn from_packets<'a, I>(
packets: Peekable<I>
) -> Box<dyn Iterator<Item = Result<SignedSecretKey, Error>> + 'a>
fn from_packets<'a, I>( packets: Peekable<I> ) -> Box<dyn Iterator<Item = Result<SignedSecretKey, Error>> + 'a>
Parse a transferable key from packets. Ref: https://tools.ietf.org/html/rfc4880.html#section-11.1
source§fn from_bytes(bytes: impl Read) -> Result<Self, Error>
fn from_bytes(bytes: impl Read) -> Result<Self, Error>
Parse a single byte encoded composition.
source§fn from_string(input: &str) -> Result<(Self, BTreeMap<String, String>), Error>
fn from_string(input: &str) -> Result<(Self, BTreeMap<String, String>), Error>
Parse a single armor encoded composition.
source§fn from_string_many<'a>(
input: &'a str
) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a>, BTreeMap<String, String>), Error>
fn from_string_many<'a>( input: &'a str ) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a>, BTreeMap<String, String>), Error>
Parse an armor encoded list of compositions.
source§fn from_armor_single<R>(
input: R
) -> Result<(Self, BTreeMap<String, String>), Error>
fn from_armor_single<R>( input: R ) -> Result<(Self, BTreeMap<String, String>), Error>
Armored ascii data.
source§impl KeyTrait for SignedSecretKey
impl KeyTrait for SignedSecretKey
fn algorithm(&self) -> PublicKeyAlgorithm
fn is_signing_key(&self) -> bool
fn is_encryption_key(&self) -> bool
source§impl PartialEq for SignedSecretKey
impl PartialEq for SignedSecretKey
source§fn eq(&self, other: &SignedSecretKey) -> bool
fn eq(&self, other: &SignedSecretKey) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PublicKeyTrait for SignedSecretKey
impl PublicKeyTrait for SignedSecretKey
source§impl SecretKeyTrait for SignedSecretKey
impl SecretKeyTrait for SignedSecretKey
type PublicKey = PublicKey
fn unlock<F, G>(&self, pw: F, work: G) -> Result<(), Error>
fn create_signature<F>( &self, key_pw: F, hash: HashAlgorithm, data: &[u8] ) -> Result<Vec<Mpi>, Error>
fn public_key(&self) -> <SignedSecretKey as SecretKeyTrait>::PublicKey
source§impl Serialize for SignedSecretKey
impl Serialize for SignedSecretKey
impl Eq for SignedSecretKey
impl StructuralPartialEq for SignedSecretKey
Auto Trait Implementations§
impl Freeze for SignedSecretKey
impl RefUnwindSafe for SignedSecretKey
impl Send for SignedSecretKey
impl Sync for SignedSecretKey
impl Unpin for SignedSecretKey
impl UnwindSafe for SignedSecretKey
Blanket Implementations§
source§impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
source§fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
Convert the given value into an approximately equivalent representation.
source§impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
§type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
The error type produced by a failed conversion.
source§fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
Convert the subject into an approximately equivalent representation.
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
source§impl<T, Dst> ConvAsUtil<Dst> for T
impl<T, Dst> ConvAsUtil<Dst> for T
source§impl<T> ConvUtil for T
impl<T> ConvUtil for T
source§fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
Approximate the subject to a given type with the default scheme.
source§fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>
Approximate the subject to a given type with a specific scheme.
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.