Enum sequoia_openpgp::packet::Packet
source · #[non_exhaustive]pub enum Packet {
Show 18 variants
Unknown(Unknown),
Signature(Signature),
OnePassSig(OnePassSig),
PublicKey(Key<PublicParts, PrimaryRole>),
PublicSubkey(Key<PublicParts, SubordinateRole>),
SecretKey(Key<SecretParts, PrimaryRole>),
SecretSubkey(Key<SecretParts, SubordinateRole>),
Marker(Marker),
Trust(Trust),
UserID(UserID),
UserAttribute(UserAttribute),
Literal(Literal),
CompressedData(CompressedData),
PKESK(PKESK),
SKESK(SKESK),
SEIP(SEIP),
MDC(MDC),
AED(AED),
}
Expand description
Enumeration of packet types.
The different OpenPGP packets are detailed in Section 5 of RFC 4880.
The Unknown
packet allows Sequoia to deal with packets that it
doesn’t understand. It is basically a binary blob that includes
the packet’s tag. See the module-level documentation for
details.
Note: This enum cannot be exhaustively matched to allow future extensions.
§A note on equality
We define equality on Packet
as the equality of the serialized
form of their packet bodies as defined by RFC 4880. That is, two
packets are considered equal if and only if their serialized forms
are equal, modulo the OpenPGP framing (CTB
and length style,
potential partial body encoding).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Unknown(Unknown)
Unknown packet.
Signature(Signature)
Signature packet.
OnePassSig(OnePassSig)
One pass signature packet.
PublicKey(Key<PublicParts, PrimaryRole>)
Public key packet.
PublicSubkey(Key<PublicParts, SubordinateRole>)
Public subkey packet.
SecretKey(Key<SecretParts, PrimaryRole>)
Public/Secret key pair.
SecretSubkey(Key<SecretParts, SubordinateRole>)
Public/Secret subkey pair.
Marker(Marker)
Marker packet.
Trust(Trust)
Trust packet.
UserID(UserID)
User ID packet.
UserAttribute(UserAttribute)
User attribute packet.
Literal(Literal)
Literal data packet.
CompressedData(CompressedData)
Compressed literal data packet.
PKESK(PKESK)
Public key encrypted data packet.
SKESK(SKESK)
Symmetric key encrypted data packet.
SEIP(SEIP)
Symmetric key encrypted, integrity protected data packet.
MDC(MDC)
Modification detection code packet.
AED(AED)
AEAD Encrypted Data Packet.
Implementations§
source§impl Packet
impl Packet
sourcepub fn tag(&self) -> Tag
pub fn tag(&self) -> Tag
Returns the Packet's
corresponding OpenPGP tag.
Tags are explained in Section 4.3 of RFC 4880.
sourcepub fn kind(&self) -> Option<Tag>
pub fn kind(&self) -> Option<Tag>
Returns the parsed Packet's
corresponding OpenPGP tag.
Returns the packets tag, but only if it was successfully
parsed into the corresponding packet type. If e.g. a
Signature Packet uses some unsupported methods, it is parsed
into an Packet::Unknown
. tag()
returns Tag::Signature
,
whereas kind()
returns None
.
sourcepub fn version(&self) -> Option<u8>
pub fn version(&self) -> Option<u8>
Returns the Packet's
version, if the packet is versioned and
recognized.
If the packet is not versioned, or we couldn’t parse the
packet, this function returns None
.
sourcepub fn normalized_hash<H>(&self, state: &mut H)where
H: Hasher,
pub fn normalized_hash<H>(&self, state: &mut H)where
H: Hasher,
Hashes most everything into state.
This is an alternate implementation of Hash
, which does
not hash:
- The unhashed subpacket area of Signature packets.
- Secret key material.
Unlike Signature::normalize
, this method ignores
authenticated packets in the unhashed subpacket area.
Trait Implementations§
source§impl Any<AED> for Packet
impl Any<AED> for Packet
source§impl Any<CompressedData> for Packet
impl Any<CompressedData> for Packet
source§fn downcast(self) -> Result<CompressedData, Packet>
fn downcast(self) -> Result<CompressedData, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&CompressedData>
fn downcast_ref(&self) -> Option<&CompressedData>
source§fn downcast_mut(&mut self) -> Option<&mut CompressedData>
fn downcast_mut(&mut self) -> Option<&mut CompressedData>
source§impl Any<Key<PublicParts, PrimaryRole>> for Packet
impl Any<Key<PublicParts, PrimaryRole>> for Packet
source§fn downcast(self) -> Result<Key<PublicParts, PrimaryRole>, Packet>
fn downcast(self) -> Result<Key<PublicParts, PrimaryRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<PublicParts, PrimaryRole>>
fn downcast_ref(&self) -> Option<&Key<PublicParts, PrimaryRole>>
source§fn downcast_mut(&mut self) -> Option<&mut Key<PublicParts, PrimaryRole>>
fn downcast_mut(&mut self) -> Option<&mut Key<PublicParts, PrimaryRole>>
source§impl Any<Key<PublicParts, SubordinateRole>> for Packet
impl Any<Key<PublicParts, SubordinateRole>> for Packet
source§fn downcast(self) -> Result<Key<PublicParts, SubordinateRole>, Packet>
fn downcast(self) -> Result<Key<PublicParts, SubordinateRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<PublicParts, SubordinateRole>>
fn downcast_ref(&self) -> Option<&Key<PublicParts, SubordinateRole>>
source§fn downcast_mut(&mut self) -> Option<&mut Key<PublicParts, SubordinateRole>>
fn downcast_mut(&mut self) -> Option<&mut Key<PublicParts, SubordinateRole>>
source§impl Any<Key<PublicParts, UnspecifiedRole>> for Packet
impl Any<Key<PublicParts, UnspecifiedRole>> for Packet
source§fn downcast(self) -> Result<Key<PublicParts, UnspecifiedRole>, Packet>
fn downcast(self) -> Result<Key<PublicParts, UnspecifiedRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<PublicParts, UnspecifiedRole>>
fn downcast_ref(&self) -> Option<&Key<PublicParts, UnspecifiedRole>>
source§fn downcast_mut(&mut self) -> Option<&mut Key<PublicParts, UnspecifiedRole>>
fn downcast_mut(&mut self) -> Option<&mut Key<PublicParts, UnspecifiedRole>>
source§impl Any<Key<SecretParts, PrimaryRole>> for Packet
impl Any<Key<SecretParts, PrimaryRole>> for Packet
source§fn downcast(self) -> Result<Key<SecretParts, PrimaryRole>, Packet>
fn downcast(self) -> Result<Key<SecretParts, PrimaryRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<SecretParts, PrimaryRole>>
fn downcast_ref(&self) -> Option<&Key<SecretParts, PrimaryRole>>
source§fn downcast_mut(&mut self) -> Option<&mut Key<SecretParts, PrimaryRole>>
fn downcast_mut(&mut self) -> Option<&mut Key<SecretParts, PrimaryRole>>
source§impl Any<Key<SecretParts, SubordinateRole>> for Packet
impl Any<Key<SecretParts, SubordinateRole>> for Packet
source§fn downcast(self) -> Result<Key<SecretParts, SubordinateRole>, Packet>
fn downcast(self) -> Result<Key<SecretParts, SubordinateRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<SecretParts, SubordinateRole>>
fn downcast_ref(&self) -> Option<&Key<SecretParts, SubordinateRole>>
source§fn downcast_mut(&mut self) -> Option<&mut Key<SecretParts, SubordinateRole>>
fn downcast_mut(&mut self) -> Option<&mut Key<SecretParts, SubordinateRole>>
source§impl Any<Key<SecretParts, UnspecifiedRole>> for Packet
impl Any<Key<SecretParts, UnspecifiedRole>> for Packet
source§fn downcast(self) -> Result<Key<SecretParts, UnspecifiedRole>, Packet>
fn downcast(self) -> Result<Key<SecretParts, UnspecifiedRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<SecretParts, UnspecifiedRole>>
fn downcast_ref(&self) -> Option<&Key<SecretParts, UnspecifiedRole>>
source§fn downcast_mut(&mut self) -> Option<&mut Key<SecretParts, UnspecifiedRole>>
fn downcast_mut(&mut self) -> Option<&mut Key<SecretParts, UnspecifiedRole>>
source§impl Any<Key<UnspecifiedParts, PrimaryRole>> for Packet
impl Any<Key<UnspecifiedParts, PrimaryRole>> for Packet
source§fn downcast(self) -> Result<Key<UnspecifiedParts, PrimaryRole>, Packet>
fn downcast(self) -> Result<Key<UnspecifiedParts, PrimaryRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<UnspecifiedParts, PrimaryRole>>
fn downcast_ref(&self) -> Option<&Key<UnspecifiedParts, PrimaryRole>>
source§fn downcast_mut(&mut self) -> Option<&mut Key<UnspecifiedParts, PrimaryRole>>
fn downcast_mut(&mut self) -> Option<&mut Key<UnspecifiedParts, PrimaryRole>>
source§impl Any<Key<UnspecifiedParts, SubordinateRole>> for Packet
impl Any<Key<UnspecifiedParts, SubordinateRole>> for Packet
source§fn downcast(self) -> Result<Key<UnspecifiedParts, SubordinateRole>, Packet>
fn downcast(self) -> Result<Key<UnspecifiedParts, SubordinateRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<UnspecifiedParts, SubordinateRole>>
fn downcast_ref(&self) -> Option<&Key<UnspecifiedParts, SubordinateRole>>
source§fn downcast_mut(
&mut self,
) -> Option<&mut Key<UnspecifiedParts, SubordinateRole>>
fn downcast_mut( &mut self, ) -> Option<&mut Key<UnspecifiedParts, SubordinateRole>>
source§impl Any<Key<UnspecifiedParts, UnspecifiedRole>> for Packet
impl Any<Key<UnspecifiedParts, UnspecifiedRole>> for Packet
source§fn downcast(self) -> Result<Key<UnspecifiedParts, UnspecifiedRole>, Packet>
fn downcast(self) -> Result<Key<UnspecifiedParts, UnspecifiedRole>, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&Key<UnspecifiedParts, UnspecifiedRole>>
fn downcast_ref(&self) -> Option<&Key<UnspecifiedParts, UnspecifiedRole>>
source§fn downcast_mut(
&mut self,
) -> Option<&mut Key<UnspecifiedParts, UnspecifiedRole>>
fn downcast_mut( &mut self, ) -> Option<&mut Key<UnspecifiedParts, UnspecifiedRole>>
source§impl Any<Literal> for Packet
impl Any<Literal> for Packet
source§impl Any<MDC> for Packet
impl Any<MDC> for Packet
source§impl Any<Marker> for Packet
impl Any<Marker> for Packet
source§impl Any<OnePassSig> for Packet
impl Any<OnePassSig> for Packet
source§fn downcast(self) -> Result<OnePassSig, Packet>
fn downcast(self) -> Result<OnePassSig, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&OnePassSig>
fn downcast_ref(&self) -> Option<&OnePassSig>
source§fn downcast_mut(&mut self) -> Option<&mut OnePassSig>
fn downcast_mut(&mut self) -> Option<&mut OnePassSig>
source§impl Any<PKESK> for Packet
impl Any<PKESK> for Packet
source§impl Any<SEIP> for Packet
impl Any<SEIP> for Packet
source§impl Any<SKESK> for Packet
impl Any<SKESK> for Packet
source§impl Any<Signature> for Packet
impl Any<Signature> for Packet
source§impl Any<Trust> for Packet
impl Any<Trust> for Packet
source§impl Any<Unknown> for Packet
impl Any<Unknown> for Packet
source§impl Any<UserAttribute> for Packet
impl Any<UserAttribute> for Packet
source§fn downcast(self) -> Result<UserAttribute, Packet>
fn downcast(self) -> Result<UserAttribute, Packet>
T
, returning the packet if it fails. Read moresource§fn downcast_ref(&self) -> Option<&UserAttribute>
fn downcast_ref(&self) -> Option<&UserAttribute>
source§fn downcast_mut(&mut self) -> Option<&mut UserAttribute>
fn downcast_mut(&mut self) -> Option<&mut UserAttribute>
source§impl Any<UserID> for Packet
impl Any<UserID> for Packet
source§impl From<CompressedData> for Packet
impl From<CompressedData> for Packet
source§fn from(s: CompressedData) -> Self
fn from(s: CompressedData) -> Self
source§impl From<Key<PublicParts, PrimaryRole>> for Packet
impl From<Key<PublicParts, PrimaryRole>> for Packet
source§fn from(k: Key<PublicParts, PrimaryRole>) -> Self
fn from(k: Key<PublicParts, PrimaryRole>) -> Self
Convert the Key
struct to a Packet
.
source§impl From<Key<PublicParts, SubordinateRole>> for Packet
impl From<Key<PublicParts, SubordinateRole>> for Packet
source§fn from(k: Key<PublicParts, SubordinateRole>) -> Self
fn from(k: Key<PublicParts, SubordinateRole>) -> Self
Convert the Key
struct to a Packet
.
source§impl From<Key<SecretParts, PrimaryRole>> for Packet
impl From<Key<SecretParts, PrimaryRole>> for Packet
source§fn from(k: Key<SecretParts, PrimaryRole>) -> Self
fn from(k: Key<SecretParts, PrimaryRole>) -> Self
Convert the Key
struct to a Packet
.
source§impl From<Key<SecretParts, SubordinateRole>> for Packet
impl From<Key<SecretParts, SubordinateRole>> for Packet
source§fn from(k: Key<SecretParts, SubordinateRole>) -> Self
fn from(k: Key<SecretParts, SubordinateRole>) -> Self
Convert the Key
struct to a Packet
.
source§impl From<OnePassSig> for Packet
impl From<OnePassSig> for Packet
source§fn from(s: OnePassSig) -> Self
fn from(s: OnePassSig) -> Self
source§impl From<OnePassSig3> for Packet
impl From<OnePassSig3> for Packet
source§fn from(p: OnePassSig3) -> Self
fn from(p: OnePassSig3) -> Self
source§impl From<Packet> for PacketPile
impl From<Packet> for PacketPile
source§impl From<Signature3> for Packet
impl From<Signature3> for Packet
source§fn from(s: Signature3) -> Self
fn from(s: Signature3) -> Self
source§impl From<Signature4> for Packet
impl From<Signature4> for Packet
source§fn from(s: Signature4) -> Self
fn from(s: Signature4) -> Self
source§impl From<UserAttribute> for Packet
impl From<UserAttribute> for Packet
source§fn from(s: UserAttribute) -> Self
fn from(s: UserAttribute) -> Self
source§impl FromIterator<Packet> for PacketPile
impl FromIterator<Packet> for PacketPile
source§impl IntoIterator for Packet
impl IntoIterator for Packet
Implement IntoIterator
so that
cert::insert_packets(sig)
just works.
source§impl Marshal for Packet
impl Marshal for Packet
source§impl MarshalInto for Packet
impl MarshalInto for Packet
source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
source§fn serialize_into(&self, buf: &mut [u8]) -> Result<usize>
fn serialize_into(&self, buf: &mut [u8]) -> Result<usize>
source§impl<'a> Parse<'a, Packet> for Packet
impl<'a> Parse<'a, Packet> for Packet
source§fn from_buffered_reader<R>(reader: R) -> Result<Self>where
R: BufferedReader<Cookie> + 'a,
fn from_buffered_reader<R>(reader: R) -> Result<Self>where
R: BufferedReader<Cookie> + 'a,
source§fn from_reader<R: 'a + Read + Send + Sync>(reader: R) -> Result<Self>
fn from_reader<R: 'a + Read + Send + Sync>(reader: R) -> Result<Self>
source§impl PartialEq for Packet
impl PartialEq for Packet
source§impl SerializeInto for Packet
impl SerializeInto for Packet
source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
source§fn serialize_into(&self, buf: &mut [u8]) -> Result<usize>
fn serialize_into(&self, buf: &mut [u8]) -> Result<usize>
source§impl TryFrom<Packet> for Unknown
impl TryFrom<Packet> for Unknown
impl Eq for Packet
impl StructuralPartialEq for Packet
Auto Trait Implementations§
impl !Freeze for Packet
impl RefUnwindSafe for Packet
impl Send for Packet
impl Sync for Packet
impl Unpin for Packet
impl UnwindSafe for Packet
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)