Struct SignedSecretKey
pub struct SignedSecretKey {
pub primary_key: SecretKey,
pub details: SignedKeyDetails,
pub public_subkeys: Vec<SignedPublicSubKey>,
pub secret_subkeys: Vec<SignedSecretSubKey>,
}
Expand description
Represents a secret signed PGP key.
Fields§
§primary_key: SecretKey
§details: SignedKeyDetails
§public_subkeys: Vec<SignedPublicSubKey>
§secret_subkeys: Vec<SignedSecretSubKey>
Implementations§
§impl SignedSecretKey
impl SignedSecretKey
pub fn new( primary_key: SecretKey, details: SignedKeyDetails, public_subkeys: Vec<SignedPublicSubKey>, secret_subkeys: Vec<SignedSecretSubKey>, ) -> SignedSecretKey
pub 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, opts: ArmorOptions<'_>, ) -> Result<(), Error>
pub fn to_armored_bytes(&self, opts: ArmorOptions<'_>) -> Result<Vec<u8>, Error>
pub fn to_armored_string(&self, opts: ArmorOptions<'_>) -> Result<String, Error>
Trait Implementations§
§impl Clone for SignedSecretKey
impl Clone for SignedSecretKey
§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 DcKey for SignedSecretKey
impl DcKey for SignedSecretKey
source§fn to_asc(&self, header: Option<(&str, &str)>) -> String
fn to_asc(&self, header: Option<(&str, &str)>) -> String
Serialise the key to ASCII-armored representation. Read more
fn is_private() -> bool
source§fn from_slice(bytes: &[u8]) -> Result<Self>
fn from_slice(bytes: &[u8]) -> Result<Self>
Create a key from some bytes.
source§fn from_base64(data: &str) -> Result<Self>
fn from_base64(data: &str) -> Result<Self>
Create a key from a base64 string.
source§fn from_asc(data: &str) -> Result<(Self, BTreeMap<String, String>)>
fn from_asc(data: &str) -> Result<(Self, BTreeMap<String, String>)>
Create a key from an ASCII-armored string. Read more
source§fn dc_fingerprint(&self) -> Fingerprint
fn dc_fingerprint(&self) -> Fingerprint
The fingerprint for the key.
source§impl DcSecretKey for SignedSecretKey
impl DcSecretKey for SignedSecretKey
source§fn split_public_key(&self) -> Result<SignedPublicKey>
fn split_public_key(&self) -> Result<SignedPublicKey>
Create a public key from a private one.
§impl Debug for SignedSecretKey
impl Debug for SignedSecretKey
§impl Deserializable for SignedSecretKey
impl Deserializable for SignedSecretKey
§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://www.rfc-editor.org/rfc/rfc9580.html#name-transferable-secret-keys
§fn matches_block_type(typ: BlockType) -> bool
fn matches_block_type(typ: BlockType) -> bool
Check if the given typ is a valid block type for this type.
§fn from_bytes(bytes: impl Read) -> Result<Self, Error>
fn from_bytes(bytes: impl Read) -> Result<Self, Error>
Parse a single byte encoded composition.
§fn from_string(
input: &str,
) -> Result<(Self, BTreeMap<String, Vec<String>>), Error>
fn from_string( input: &str, ) -> Result<(Self, BTreeMap<String, Vec<String>>), Error>
Parse a single armor encoded composition.
§fn from_string_many<'a>(
input: &'a str,
) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a>, BTreeMap<String, Vec<String>>), Error>
fn from_string_many<'a>( input: &'a str, ) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a>, BTreeMap<String, Vec<String>>), Error>
Parse an armor encoded list of compositions.
§fn from_armor_single<R>(
input: R,
) -> Result<(Self, BTreeMap<String, Vec<String>>), Error>where
R: Read,
fn from_armor_single<R>(
input: R,
) -> Result<(Self, BTreeMap<String, Vec<String>>), Error>where
R: Read,
Armored ascii data.
§fn from_armor_single_buf<R>(
input: R,
) -> Result<(Self, BTreeMap<String, Vec<String>>), Error>where
R: BufRead,
fn from_armor_single_buf<R>(
input: R,
) -> Result<(Self, BTreeMap<String, Vec<String>>), Error>where
R: BufRead,
Armored ascii data.
§fn from_armor_many<'a, R>(
input: R,
) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a>, BTreeMap<String, Vec<String>>), Error>where
R: Read + 'a,
fn from_armor_many<'a, R>(
input: R,
) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a>, BTreeMap<String, Vec<String>>), Error>where
R: Read + 'a,
Armored ascii data.
fn from_armor_many_buf<'a, R>(
input: R,
) -> Result<(Box<dyn Iterator<Item = Result<Self, Error>> + 'a>, BTreeMap<String, Vec<String>>), Error>where
R: BufRead + 'a,
§fn from_bytes_many<'a>(
bytes: impl Read + 'a,
) -> Box<dyn Iterator<Item = Result<Self, Error>> + 'a>
fn from_bytes_many<'a>( bytes: impl Read + 'a, ) -> Box<dyn Iterator<Item = Result<Self, Error>> + 'a>
Parse a list of compositions in raw byte format.
§fn from_reader_single<'a, R>(
input: R,
) -> Result<(Self, Option<BTreeMap<String, Vec<String>>>), Error>where
R: Read + 'a,
fn from_reader_single<'a, R>(
input: R,
) -> Result<(Self, Option<BTreeMap<String, Vec<String>>>), Error>where
R: Read + 'a,
Parses a single composition, from either ASCII-armored or binary OpenPGP data. Read more
fn from_reader_single_buf<'a, R>(
input: R,
) -> Result<(Self, Option<BTreeMap<String, Vec<String>>>), Error>where
R: BufRead + 'a,
§impl From<SignedSecretKey> for SignedPublicKey
impl From<SignedSecretKey> for SignedPublicKey
§fn from(value: SignedSecretKey) -> SignedPublicKey
fn from(value: SignedSecretKey) -> SignedPublicKey
Converts to this type from the input type.
§impl PartialEq for SignedSecretKey
impl PartialEq for SignedSecretKey
§impl PublicKeyTrait for SignedSecretKey
impl PublicKeyTrait for SignedSecretKey
§fn fingerprint(&self) -> Fingerprint
fn fingerprint(&self) -> Fingerprint
Returns the fingerprint of the associated primary key.
§fn verify_signature(
&self,
hash: HashAlgorithm,
data: &[u8],
sig: &SignatureBytes,
) -> Result<(), Error>
fn verify_signature( &self, hash: HashAlgorithm, data: &[u8], sig: &SignatureBytes, ) -> Result<(), Error>
Verify a signed message.
Data will be hashed using
hash
, before verifying.§fn encrypt<R>(
&self,
rng: R,
plain: &[u8],
typ: EskType,
) -> Result<PkeskBytes, Error>
fn encrypt<R>( &self, rng: R, plain: &[u8], typ: EskType, ) -> Result<PkeskBytes, Error>
Encrypt the given
plain
for this key.§fn serialize_for_hashing(&self, writer: &mut impl Write) -> Result<(), Error>
fn serialize_for_hashing(&self, writer: &mut impl Write) -> Result<(), Error>
This is the data used for hashing in a signature. Only uses the public portion of the key.
fn public_params(&self) -> &PublicParams
fn version(&self) -> KeyVersion
fn algorithm(&self) -> PublicKeyAlgorithm
fn created_at(&self) -> &DateTime<Utc>
fn expiration(&self) -> Option<u16>
fn is_signing_key(&self) -> bool
fn is_encryption_key(&self) -> bool
§impl SecretKeyTrait for SignedSecretKey
impl SecretKeyTrait for SignedSecretKey
type PublicKey = PublicKey
§fn unlock<F, G, T>(&self, pw: F, work: G) -> Result<T, Error>where
F: FnOnce() -> String,
G: FnOnce(&<SignedSecretKey as SecretKeyTrait>::Unlocked) -> Result<T, Error>,
fn unlock<F, G, T>(&self, pw: F, work: G) -> Result<T, Error>where
F: FnOnce() -> String,
G: FnOnce(&<SignedSecretKey as SecretKeyTrait>::Unlocked) -> Result<T, Error>,
Unlock the raw data in the secret parameters.
fn create_signature<F>( &self, key_pw: F, hash: HashAlgorithm, data: &[u8], ) -> Result<SignatureBytes, Error>
fn public_key(&self) -> <SignedSecretKey as SecretKeyTrait>::PublicKey
§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§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.