summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/bundle.rs
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2020-12-15 11:08:38 +0100
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2020-12-15 11:08:38 +0100
commit4df9befdb10cc336a9df49b65fdfef659296aa61 (patch)
tree62f5d97a982293199a2c396b838c388983c2e76c /openpgp/src/cert/bundle.rs
parentc31ceb8dab94d2ea08879e36ad450547136ca2e1 (diff)
openpgp: Make ComponentAmalgamation return iterator for signatures.
- Adjust `self_signatures`, `certifications`, `self_revocations` and `other_revocations` to return `impl Iterator` over the signatures. - Adjust all call-sites including doc tests. - Adjust downstream projects (sq, autocrypt).
Diffstat (limited to 'openpgp/src/cert/bundle.rs')
-rw-r--r--openpgp/src/cert/bundle.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/openpgp/src/cert/bundle.rs b/openpgp/src/cert/bundle.rs
index 272088ce..d37f5158 100644
--- a/openpgp/src/cert/bundle.rs
+++ b/openpgp/src/cert/bundle.rs
@@ -397,7 +397,7 @@ impl<C> ComponentBundle<C> {
/// for (i, ka) in cert.keys().enumerate() {
/// eprintln!("Key #{} ({}) has {:?} self signatures",
/// i, ka.fingerprint(),
- /// ka.self_signatures().len());
+ /// ka.self_signatures().count());
/// }
/// # Ok(()) }
/// ```
@@ -426,7 +426,7 @@ impl<C> ComponentBundle<C> {
/// for ua in cert.userids() {
/// eprintln!("User ID {} has {:?} unverified, third-party certifications",
/// String::from_utf8_lossy(ua.userid().value()),
- /// ua.certifications().len());
+ /// ua.certifications().count());
/// }
/// # Ok(()) }
/// ```
@@ -456,7 +456,7 @@ impl<C> ComponentBundle<C> {
/// for u in cert.userids() {
/// eprintln!("User ID {} has {:?} revocation certificates.",
/// String::from_utf8_lossy(u.userid().value()),
- /// u.self_revocations().len());
+ /// u.self_revocations().count());
/// }
/// # Ok(()) }
/// ```
@@ -486,7 +486,7 @@ impl<C> ComponentBundle<C> {
/// for u in cert.userids() {
/// eprintln!("User ID {} has {:?} unverified, third-party revocation certificates.",
/// String::from_utf8_lossy(u.userid().value()),
- /// u.other_revocations().len());
+ /// u.other_revocations().count());
/// }
/// # Ok(()) }
/// ```