summaryrefslogtreecommitdiffstats
path: root/sqv
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2020-01-08 10:10:58 +0100
committerNeal H. Walfield <neal@pep.foundation>2020-01-08 10:23:23 +0100
commit5b0b546ce73cc3a2bfed085726c43635d5519924 (patch)
tree4747952e3ee06339f95ec571681e62d21168d3d0 /sqv
parentf10ceaa4ac04dcafe0bce42eb4fed3832225b594 (diff)
openpgp: Include a reference time in KeyAmalgamation.
- Including the reference time in the KeyAmalgamation structure rather than having the user supply it to the individual methods (like `KeyAmalgamation::alive`) helps ensure that the key is used consistent. For instance, this makes it harder to mistakenly query key's liveness at time t, but then use the current time to determine the key's capabilities.
Diffstat (limited to 'sqv')
-rw-r--r--sqv/src/sqv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqv/src/sqv.rs b/sqv/src/sqv.rs
index e1859132..fec3e1ff 100644
--- a/sqv/src/sqv.rs
+++ b/sqv/src/sqv.rs
@@ -235,7 +235,7 @@ fn real_main() -> Result<(), failure::Error> {
// Find the right key.
for ka in cert.keys().policy(None) {
// Use the current binding signature.
- let binding = match ka.binding_signature(None) {
+ let binding = match ka.binding_signature() {
Some(b) => b,
None => continue,
};