summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-05-07 13:27:35 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-05-07 13:27:35 +0200
commitbe79f087fd2a0e3634ca753d9bdc554d32be5ee4 (patch)
tree6492923e545695d42788f8fb904072e8f21bee28
parenta74f26177e3a17974494c863d99046063c67eed2 (diff)
openpgp: Fix documentation, DetachedVerifier no longer is a filter.
-rw-r--r--openpgp/src/parse/stream.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/openpgp/src/parse/stream.rs b/openpgp/src/parse/stream.rs
index 80261596..cca81841 100644
--- a/openpgp/src/parse/stream.rs
+++ b/openpgp/src/parse/stream.rs
@@ -877,15 +877,6 @@ impl<'a, H: VerificationHelper> io::Read for Verifier<'a, H> {
/// Verifies a detached signature.
///
-/// Signature verification requires processing the whole message
-/// first. Therefore, OpenPGP implementations supporting streaming
-/// operations necessarily must output unverified data. This has been
-/// a source of problems in the past. To alleviate this, we buffer up
-/// to 25 megabytes of net message data first, and verify the
-/// signatures if the message fits into our buffer. Nevertheless it
-/// is important to treat the data as unverified and untrustworthy
-/// until you have seen a positive verification.
-///
/// # Examples
///
/// ```