Struct sequoia_openpgp::packet::user_attribute::UserAttribute
source · pub struct UserAttribute { /* private fields */ }
Expand description
Holds a UserAttribute packet.
See Section 5.12 of RFC 4880 for details.
Implementations§
source§impl UserAttribute
impl UserAttribute
sourcepub fn new(subpackets: &[Subpacket]) -> Result<Self>
pub fn new(subpackets: &[Subpacket]) -> Result<Self>
Returns a new UserAttribute
packet.
Note: a valid UserAttribute has at least one subpacket.
sourcepub fn hash_algo_security(&self) -> HashAlgoSecurity
pub fn hash_algo_security(&self) -> HashAlgoSecurity
The security requirements of the hash algorithm for self-signatures.
A cryptographic hash algorithm usually has three security properties: pre-image resistance, second pre-image resistance, and collision resistance. If an attacker can influence the signed data, then the hash algorithm needs to have both second pre-image resistance, and collision resistance. If not, second pre-image resistance is sufficient.
In general, an attacker may be able to influence third-party signatures. But direct key signatures, and binding signatures are only over data fully determined by signer. And, an attacker’s control over self signatures over User IDs is limited due to their structure.
These observations can be used to extend the life of a hash algorithm after its collision resistance has been partially compromised, but not completely broken. For more details, please refer to the documentation for HashAlgoSecurity.
sourcepub fn value(&self) -> &[u8] ⓘ
pub fn value(&self) -> &[u8] ⓘ
Gets the user attribute packet’s raw, unparsed value.
Most likely you will want to use subpackets()
to iterate
over the subpackets.
sourcepub fn value_mut(&mut self) -> &mut Vec<u8> ⓘ
pub fn value_mut(&mut self) -> &mut Vec<u8> ⓘ
Gets a mutable reference to the user attribute packet’s raw value.
sourcepub fn subpackets(&self) -> SubpacketIterator<'_> ⓘ
pub fn subpackets(&self) -> SubpacketIterator<'_> ⓘ
Iterates over the subpackets.
source§impl UserAttribute
impl UserAttribute
sourcepub fn bind(
&self,
signer: &mut dyn Signer,
cert: &Cert,
signature: SignatureBuilder,
) -> Result<Signature>
pub fn bind( &self, signer: &mut dyn Signer, cert: &Cert, signature: SignatureBuilder, ) -> Result<Signature>
Creates a binding signature.
The signature binds this user attribute to cert
. signer
will be used to create a signature using signature
as
builder. Thehash_algo
defaults to SHA512, creation_time
to the current time.
This function adds a creation time subpacket, a issuer fingerprint subpacket, and a issuer subpacket to the signature.
§Examples
This example demonstrates how to bind this user attribute to a
Cert. Note that in general, the CertBuilder
is a better way
to add User IDs to a Cert.
// Generate a Cert, and create a keypair from the primary key.
let (cert, _) = CertBuilder::new()
.generate()?;
let mut keypair = cert.primary_key().key().clone()
.parts_into_secret()?.into_keypair()?;
assert_eq!(cert.userids().len(), 0);
// Generate a user attribute and a binding signature.
let user_attr = UserAttribute::new(&[
Subpacket::Image(
Image::Private(100, vec![0, 1, 2].into_boxed_slice())),
])?;
let builder =
signature::SignatureBuilder::new(SignatureType::PositiveCertification);
let binding = user_attr.bind(&mut keypair, &cert, builder)?;
// Now merge the user attribute and binding signature into the Cert.
let cert = cert.insert_packets(vec![Packet::from(user_attr),
binding.into()])?;
// Check that we have a user attribute.
assert_eq!(cert.user_attributes().count(), 1);
sourcepub fn certify<S, H, T>(
&self,
signer: &mut dyn Signer,
cert: &Cert,
signature_type: S,
hash_algo: H,
creation_time: T,
) -> Result<Signature>
pub fn certify<S, H, T>( &self, signer: &mut dyn Signer, cert: &Cert, signature_type: S, hash_algo: H, creation_time: T, ) -> Result<Signature>
Returns a certification for the user attribute.
The signature binds this user attribute to cert
. signer
will be
used to create a certification signature of type
signature_type
. signature_type
defaults to
SignatureType::GenericCertification
, hash_algo
to SHA512,
creation_time
to the current time.
This function adds a creation time subpacket, a issuer fingerprint subpacket, and a issuer subpacket to the signature.
§Errors
Returns Error::InvalidArgument
if signature_type
is not
one of SignatureType::{Generic, Persona, Casual, Positive}Certification
§Examples
This example demonstrates how to certify a User ID.
// Generate a Cert, and create a keypair from the primary key.
let (alice, _) = CertBuilder::new()
.add_userid("alice@example.org")
.generate()?;
let mut keypair = alice.primary_key().key().clone()
.parts_into_secret()?.into_keypair()?;
// Generate a Cert for Bob.
let user_attr = UserAttribute::new(&[
Subpacket::Image(
Image::Private(100, vec![0, 1, 2].into_boxed_slice())),
])?;
let (bob, _) = CertBuilder::new()
.set_primary_key_flags(KeyFlags::empty().set_certification())
.add_user_attribute(user_attr)
.generate()?;
// Alice now certifies the binding between `bob@example.org` and `bob`.
let certification =
bob.user_attributes().nth(0).unwrap()
.certify(&mut keypair, &bob, SignatureType::PositiveCertification,
None, None)?;
// `certification` can now be used, e.g. by merging it into `bob`.
let bob = bob.insert_packets(certification)?;
// Check that we have a certification on the User ID.
assert_eq!(bob.user_attributes().nth(0).unwrap()
.certifications().count(),
1);
Trait Implementations§
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 Clone for UserAttribute
impl Clone for UserAttribute
source§fn clone(&self) -> UserAttribute
fn clone(&self) -> UserAttribute
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UserAttribute
impl Debug for UserAttribute
source§impl From<UserAttribute> for Packet
impl From<UserAttribute> for Packet
source§fn from(s: UserAttribute) -> Self
fn from(s: UserAttribute) -> Self
source§impl Hash for UserAttribute
impl Hash for UserAttribute
source§impl Hash for UserAttribute
impl Hash for UserAttribute
source§impl IntoIterator for UserAttribute
impl IntoIterator for UserAttribute
Implement IntoIterator
so that
cert::insert_packets(sig)
just works.
source§impl Marshal for UserAttribute
impl Marshal for UserAttribute
source§impl MarshalInto for UserAttribute
impl MarshalInto for UserAttribute
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 Ord for UserAttribute
impl Ord for UserAttribute
source§fn cmp(&self, other: &UserAttribute) -> Ordering
fn cmp(&self, other: &UserAttribute) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl<'a> Parse<'a, UserAttribute> for UserAttribute
impl<'a> Parse<'a, UserAttribute> for UserAttribute
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 UserAttribute
impl PartialEq for UserAttribute
source§fn eq(&self, other: &UserAttribute) -> bool
fn eq(&self, other: &UserAttribute) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for UserAttribute
impl PartialOrd for UserAttribute
source§fn partial_cmp(&self, other: &UserAttribute) -> Option<Ordering>
fn partial_cmp(&self, other: &UserAttribute) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl Eq for UserAttribute
impl StructuralPartialEq for UserAttribute
Auto Trait Implementations§
impl Freeze for UserAttribute
impl RefUnwindSafe for UserAttribute
impl Send for UserAttribute
impl Sync for UserAttribute
impl Unpin for UserAttribute
impl UnwindSafe for UserAttribute
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
)