Struct pgp::native::composed::signed_key::SignedSecretKey
source · pub struct SignedSecretKey {
pub primary_key: SecretKey,
pub details: SignedKeyDetails,
pub public_subkeys: Vec<SignedPublicSubKey, Global>,
pub secret_subkeys: Vec<SignedSecretSubKey, Global>,
}
Expand description
Represents a secret signed PGP key.
Fields§
§primary_key: SecretKey
§details: SignedKeyDetails
§public_subkeys: Vec<SignedPublicSubKey, Global>
§secret_subkeys: Vec<SignedSecretSubKey, Global>
Implementations§
source§impl SignedSecretKey
impl SignedSecretKey
pub fn new( primary_key: SecretKey, details: SignedKeyDetails, public_subkeys: Vec<SignedPublicSubKey, Global>, secret_subkeys: Vec<SignedSecretSubKey, Global> ) -> 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, Global>> ) -> Result<(), Error>
pub fn to_armored_bytes( &self, headers: Option<&BTreeMap<String, String, Global>> ) -> Result<Vec<u8, Global>, Error>
pub fn to_armored_string( &self, headers: Option<&BTreeMap<String, String, Global>> ) -> 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, Global>where
I: Iterator<Item = Packet> + 'a,
fn from_packets<'a, I>( packets: Peekable<I> ) -> Box<dyn Iterator<Item = Result<SignedSecretKey, Error>> + 'a, Global>where I: Iterator<Item = Packet> + '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, Global>), Error>
fn from_string( input: &str ) -> Result<(Self, BTreeMap<String, String, Global>), 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, Global>, BTreeMap<String, String, Global>), Error>
fn from_string_many<'a>( input: &'a str ) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a, Global>, BTreeMap<String, String, Global>), Error>
Parse an armor encoded list of compositions.
source§fn from_armor_single<R>(
input: R
) -> Result<(Self, BTreeMap<String, String, Global>), Error>where
R: Read + Seek,
fn from_armor_single<R>( input: R ) -> Result<(Self, BTreeMap<String, String, Global>), Error>where R: Read + Seek,
Armored ascii data.
source§impl KeyTrait for SignedSecretKey
impl KeyTrait for SignedSecretKey
source§fn fingerprint(&self) -> Vec<u8, Global> ⓘ
fn fingerprint(&self) -> Vec<u8, Global> ⓘ
Returns the fingerprint of the associated primary key.
fn algorithm(&self) -> PublicKeyAlgorithm
fn is_signing_key(&self) -> bool
fn is_encryption_key(&self) -> bool
source§impl PartialEq<SignedSecretKey> for SignedSecretKey
impl PartialEq<SignedSecretKey> 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§fn verify_signature(
&self,
hash: HashAlgorithm,
data: &[u8],
sig: &[Mpi]
) -> Result<(), Error>
fn verify_signature( &self, hash: HashAlgorithm, data: &[u8], sig: &[Mpi] ) -> Result<(), Error>
Verify a signed message.
Data will be hashed using
hash
, before verifying.source§impl SecretKeyTrait for SignedSecretKey
impl SecretKeyTrait for SignedSecretKey
type PublicKey = PublicKey
fn unlock<F, G>(&self, pw: F, work: G) -> Result<(), Error>where F: FnOnce() -> String, G: FnOnce(&SecretKeyRepr) -> Result<(), Error>,
fn create_signature<F>( &self, key_pw: F, hash: HashAlgorithm, data: &[u8] ) -> Result<Vec<Mpi, Global>, Error>where F: FnOnce() -> String,
fn public_key(&self) -> <SignedSecretKey as SecretKeyTrait>::PublicKey
source§impl Serialize for SignedSecretKey
impl Serialize for SignedSecretKey
impl Eq for SignedSecretKey
impl StructuralEq for SignedSecretKey
impl StructuralPartialEq for SignedSecretKey
Auto Trait Implementations§
impl RefUnwindSafe for SignedSecretKey
impl Send for SignedSecretKey
impl Sync for SignedSecretKey
impl Unpin for SignedSecretKey
impl UnwindSafe for SignedSecretKey
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.