summaryrefslogtreecommitdiffstats
path: root/openpgp/src/keyid.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/keyid.rs')
-rw-r--r--openpgp/src/keyid.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/openpgp/src/keyid.rs b/openpgp/src/keyid.rs
index c4fae110..f55fe336 100644
--- a/openpgp/src/keyid.rs
+++ b/openpgp/src/keyid.rs
@@ -97,6 +97,11 @@ impl KeyID {
}
}
+ /// Returns the wildcard KeyID.
+ pub fn wildcard() -> Self {
+ Self::from_bytes(&[0u8; 8][..])
+ }
+
/// Returns true if this is a wild card ID.
pub fn is_wildcard(&self) -> bool {
self.as_slice().iter().all(|b| *b == 0)