Struct deltachat::key::SignedPublicKey
pub struct SignedPublicKey {
pub primary_key: PublicKey,
pub details: SignedKeyDetails,
pub public_subkeys: Vec<SignedPublicSubKey>,
}
Expand description
A Public OpenPGP key (“Transferable Public Key”), complete with self-signatures (and optionally third party signatures). This format can be used to transfer a public key to other OpenPGP users.
An OpenPGP Transferable Public Key is also known as an OpenPGP certificate.
Fields§
§primary_key: PublicKey
§details: SignedKeyDetails
§public_subkeys: Vec<SignedPublicSubKey>
Implementations§
§impl SignedPublicKey
impl SignedPublicKey
pub fn new( primary_key: PublicKey, details: SignedKeyDetails, public_subkeys: Vec<SignedPublicSubKey>, ) -> SignedPublicKey
pub fn expires_at(&self) -> Option<DateTime<Utc>>
pub fn expires_at(&self) -> Option<DateTime<Utc>>
Get the public 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>
pub fn as_unsigned(&self) -> PublicKey
Trait Implementations§
§impl Clone for SignedPublicKey
impl Clone for SignedPublicKey
§fn clone(&self) -> SignedPublicKey
fn clone(&self) -> SignedPublicKey
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 SignedPublicKey
impl DcKey for SignedPublicKey
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.
§impl Debug for SignedPublicKey
impl Debug for SignedPublicKey
§impl Deserializable for SignedPublicKey
impl Deserializable for SignedPublicKey
§fn from_packets<'a, I>(
packets: Peekable<I>,
) -> Box<dyn Iterator<Item = Result<SignedPublicKey, Error>> + 'a>
fn from_packets<'a, I>( packets: Peekable<I>, ) -> Box<dyn Iterator<Item = Result<SignedPublicKey, Error>> + 'a>
Parse a transferable key from packets. Ref: https://www.rfc-editor.org/rfc/rfc9580.html#name-transferable-public-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 SignedPublicKey
impl PartialEq for SignedPublicKey
§impl PublicKeyTrait for SignedPublicKey
impl PublicKeyTrait for SignedPublicKey
§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 fingerprint(&self) -> Fingerprint
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 Serialize for SignedPublicKey
impl Serialize for SignedPublicKey
impl Eq for SignedPublicKey
impl StructuralPartialEq for SignedPublicKey
Auto Trait Implementations§
impl Freeze for SignedPublicKey
impl RefUnwindSafe for SignedPublicKey
impl Send for SignedPublicKey
impl Sync for SignedPublicKey
impl Unpin for SignedPublicKey
impl UnwindSafe for SignedPublicKey
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.