summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2022-10-07 15:03:32 +0200
committerNeal H. Walfield <neal@pep.foundation>2022-10-29 23:18:42 +0200
commit85f43bf19a2f17c48f84d6e49fefb1079fb6019f (patch)
tree0fe1558aea445b475d851bc2399b1c1b218487ba
parent9dc421cb579c052f7d5d4778935c366815e8eacd (diff)
openpgp: Note that OpenPGP is a standardized form of PGP
-rw-r--r--openpgp/src/lib.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/openpgp/src/lib.rs b/openpgp/src/lib.rs
index 4ea09661..d6521e4f 100644
--- a/openpgp/src/lib.rs
+++ b/openpgp/src/lib.rs
@@ -2,8 +2,12 @@
//!
//! This crate aims to provide a complete implementation of OpenPGP as
//! defined by [RFC 4880] as well as some extensions (e.g., [RFC
-//! 6637], which describes ECC cryptography for OpenPGP. This
-//! includes support for unbuffered message processing.
+//! 6637], which describes ECC cryptography for OpenPGP. OpenPGP is a
+//! standard by IETF. It was derived from the PGP software, which was
+//! created by Phil Zimmermann in 1991.
+//!
+//! This crate also includes support for unbuffered message
+//! processing.
//!
//! A few features that the OpenPGP community considers to be
//! deprecated (e.g., version 3 compatibility) have been left out. We