summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-11-17 16:54:32 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-12-07 16:37:57 +0100
commitd05f6cecbaeda0be9eae6a80517c1839d581545e (patch)
tree6af2ad42f85b623022056c36d5ffa5ec5e2283e5 /openpgp/src/cert.rs
parent3b88cd1725bdded57c2ff845db5d471d2da63e6a (diff)
openpgp: Drop hash::Context in favor of a pub trait hash::Digest.
Diffstat (limited to 'openpgp/src/cert.rs')
-rw-r--r--openpgp/src/cert.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/openpgp/src/cert.rs b/openpgp/src/cert.rs
index bc274021..3876b8e1 100644
--- a/openpgp/src/cert.rs
+++ b/openpgp/src/cert.rs
@@ -148,7 +148,10 @@ use std::ops::{Deref, DerefMut};
use std::time;
use crate::{
- crypto::Signer,
+ crypto::{
+ Signer,
+ hash::Digest,
+ },
Error,
Result,
SignatureType,