Struct sequoia_openpgp::types::Features
source · pub struct Features(/* private fields */);
Expand description
Describes the features supported by an OpenPGP implementation.
The feature flags are defined in Section 5.2.3.24 of RFC 4880, and Section 5.2.3.25 of RFC 4880bis.
The feature flags are set by the user’s OpenPGP implementation to signal to any senders what features the implementation supports.
§A note on equality
PartialEq
compares the serialized form of the two feature sets.
If you prefer to compare two feature sets for semantic equality,
you should use Features::normalized_eq
. The difference
between semantic equality and serialized equality is that semantic
equality ignores differences in the amount of padding.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::cert::prelude::*;
use openpgp::policy::StandardPolicy;
let p = &StandardPolicy::new();
match cert.with_policy(p, None)?.primary_userid()?.features() {
Some(features) => {
println!("Certificate holder's supported features:");
assert!(features.supports_seipdv1());
assert!(!features.supports_aead());
}
None => {
println!("Certificate Holder did not specify any features.");
}
}
Implementations§
source§impl Features
impl Features
sourcepub fn new<B>(bytes: B) -> Self
pub fn new<B>(bytes: B) -> Self
Creates a new instance from bytes
.
This does not remove any trailing padding from bytes
.
sourcepub fn as_bitfield(&self) -> &Bitfield
pub fn as_bitfield(&self) -> &Bitfield
Returns a reference to the underlying Bitfield
.
sourcepub fn as_bitfield_mut(&mut self) -> &mut Bitfield
pub fn as_bitfield_mut(&mut self) -> &mut Bitfield
Returns a mutable reference to the underlying Bitfield
.
sourcepub fn normalized_eq(&self, other: &Self) -> bool
pub fn normalized_eq(&self, other: &Self) -> bool
Compares two feature sets for semantic equality.
Features
’ implementation of PartialEq
compares two feature
sets for serialized equality. That is, the PartialEq
implementation considers two feature sets to not be equal if
they have different amounts of padding. This comparison
function ignores padding.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let a = Features::new(&[0x1]);
let b = Features::new(&[0x1, 0x0]);
assert!(a != b);
assert!(a.normalized_eq(&b));
sourcepub fn get(&self, bit: usize) -> bool
pub fn get(&self, bit: usize) -> bool
Returns whether the specified feature flag is set.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
// Feature flags 0 and 2.
let f = Features::new(&[0x5]);
assert!(f.get(0));
assert!(! f.get(1));
assert!(f.get(2));
assert!(! f.get(3));
assert!(! f.get(8));
assert!(! f.get(80));
sourcepub fn set(self, bit: usize) -> Self
pub fn set(self, bit: usize) -> Self
Sets the specified feature flag.
This also clears any padding (trailing NUL bytes).
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty().set(0).set(2);
assert!(f.get(0));
assert!(! f.get(1));
assert!(f.get(2));
assert!(! f.get(3));
sourcepub fn clear(self, bit: usize) -> Self
pub fn clear(self, bit: usize) -> Self
Clears the specified feature flag.
This also clears any padding (trailing NUL bytes).
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty().set(0).set(2).clear(2);
assert!(f.get(0));
assert!(! f.get(1));
assert!(! f.get(2));
assert!(! f.get(3));
sourcepub fn supports_seipdv1(&self) -> bool
pub fn supports_seipdv1(&self) -> bool
Returns whether the SEIPDv1 feature flag is set.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty();
assert!(! f.supports_seipdv1());
sourcepub fn supports_mdc(&self) -> bool
👎Deprecated: Use supports_seipdv1.
pub fn supports_mdc(&self) -> bool
Returns whether the MDC feature flag is set.
sourcepub fn set_seipdv1(self) -> Self
pub fn set_seipdv1(self) -> Self
Sets the SEIPDv1 feature flag.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty().set_seipdv1();
assert!(f.supports_seipdv1());
sourcepub fn clear_seipdv1(self) -> Self
pub fn clear_seipdv1(self) -> Self
Clears the SEIPDv1 feature flag.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::new(&[0x1]);
assert!(f.supports_seipdv1());
let f = f.clear_seipdv1();
assert!(! f.supports_seipdv1());
sourcepub fn supports_aead(&self) -> bool
👎Deprecated
pub fn supports_aead(&self) -> bool
Returns whether the AEAD feature flag is set.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty();
assert!(! f.supports_aead());
sourcepub fn set_aead(self) -> Self
👎Deprecated
pub fn set_aead(self) -> Self
Sets the AEAD feature flag.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty().set_aead();
assert!(f.supports_aead());
sourcepub fn clear_aead(self) -> Self
👎Deprecated
pub fn clear_aead(self) -> Self
Clears the AEAD feature flag.
§Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::new(&[0x2]);
assert!(f.supports_aead());
let f = f.clear_aead();
assert!(! f.supports_aead());
Trait Implementations§
source§impl Ord for Features
impl Ord for Features
source§impl PartialEq for Features
impl PartialEq for Features
source§impl PartialOrd for Features
impl PartialOrd for Features
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 Features
impl StructuralPartialEq for Features
Auto Trait Implementations§
impl Freeze for Features
impl RefUnwindSafe for Features
impl Send for Features
impl Sync for Features
impl Unpin for Features
impl UnwindSafe for Features
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
)