From 67bdc2f64b0fb89cff24492e5244981d8f977bdc Mon Sep 17 00:00:00 2001 From: "Tammi L. Coles" Date: Sat, 7 Oct 2023 13:29:31 +0200 Subject: [PATCH 1/3] integrate operations & building blocks statements formerly in Ch2 --- book/source/01-intro.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/book/source/01-intro.md b/book/source/01-intro.md index b26e7f4..f030fdc 100644 --- a/book/source/01-intro.md +++ b/book/source/01-intro.md @@ -10,6 +10,15 @@ This text is *not* intended as a guide for end-users of OpenPGP-related software OpenPGP is an open standard for cryptographic operations. It is a system based on well-understood cryptographic building blocks. OpenPGP supports the secure delivery of files and messages between a sender and a recipient as well as verification of the sender. OpenPGP is an outgrowth of the ["Pretty Good Privacy (PGP)"](https://en.wikipedia.org/wiki/Pretty_Good_Privacy) encryption program and has many widely used and [interoperable implementations](interop_section). +With OpenPGP, you can: + +- [Encrypt](encryption_chapter) and [decrypt](decryption_chapter) messages +- [Sign](signing_data) and [verify](verification_chapter) data +- [Issue certifications and examine statements](certifications_chapter) about keys and identities, similar to the role of a Certificate Authority in validating identities. + +To achieve these operations, OpenPGP utilizes a set of [established cryptographic mechanisms](cyrptography_chapter). These building blocks are integrated into OpenPGP's format, which also manages and verifies identities. + + ## Who is the audience for this document? From 6a22002cb8c72999cd325a1b92a1f7e156a56881 Mon Sep 17 00:00:00 2001 From: "Tammi L. Coles" Date: Sat, 7 Oct 2023 13:34:50 +0200 Subject: [PATCH 2/3] remove unnecessary line breaks --- book/source/01-intro.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/book/source/01-intro.md b/book/source/01-intro.md index f030fdc..4875f33 100644 --- a/book/source/01-intro.md +++ b/book/source/01-intro.md @@ -18,8 +18,6 @@ With OpenPGP, you can: To achieve these operations, OpenPGP utilizes a set of [established cryptographic mechanisms](cyrptography_chapter). These building blocks are integrated into OpenPGP's format, which also manages and verifies identities. - - ## Who is the audience for this document? Three groups of people interact with OpenPGP: From 3f8fb4690fe2a06496463bc0503d03ac00b650fc Mon Sep 17 00:00:00 2001 From: "Tammi L. Coles" Date: Sat, 7 Oct 2023 14:12:45 +0200 Subject: [PATCH 3/3] change format to standard and clarify role --- book/source/01-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/source/01-intro.md b/book/source/01-intro.md index 4875f33..c6b9577 100644 --- a/book/source/01-intro.md +++ b/book/source/01-intro.md @@ -16,7 +16,7 @@ With OpenPGP, you can: - [Sign](signing_data) and [verify](verification_chapter) data - [Issue certifications and examine statements](certifications_chapter) about keys and identities, similar to the role of a Certificate Authority in validating identities. -To achieve these operations, OpenPGP utilizes a set of [established cryptographic mechanisms](cyrptography_chapter). These building blocks are integrated into OpenPGP's format, which also manages and verifies identities. +To achieve these operations, OpenPGP utilizes a set of [established cryptographic mechanisms](cyrptography_chapter). These building blocks are integrated into OpenPGP's standard, which also addresses identities and their verification. ## Who is the audience for this document?