Struct sequoia_openpgp::types::Features
source · pub struct Features(_);
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_mdc());
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) -> Selfwhere
B: AsRef<[u8]>,
pub fn new<B>(bytes: B) -> Selfwhere
B: AsRef<[u8]>,
Creates a new instance from bytes
.
This does not remove any trailing padding from bytes
.
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_mdc(&self) -> bool
pub fn supports_mdc(&self) -> bool
Returns whether the MDC feature flag is set.
Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty();
assert!(! f.supports_mdc());
sourcepub fn set_mdc(self) -> Self
pub fn set_mdc(self) -> Self
Sets the MDC feature flag.
Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::empty().set_mdc();
assert!(f.supports_mdc());
sourcepub fn clear_mdc(self) -> Self
pub fn clear_mdc(self) -> Self
Clears the MDC feature flag.
Examples
use sequoia_openpgp as openpgp;
use openpgp::types::Features;
let f = Features::new(&[0x1]);
assert!(f.supports_mdc());
let f = f.clear_mdc();
assert!(! f.supports_mdc());
sourcepub fn supports_aead(&self) -> bool
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
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
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<Features> for Features
impl PartialEq<Features> for Features
source§impl PartialOrd<Features> for Features
impl PartialOrd<Features> 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 more