mirror of
https://codeberg.org/openpgp/notes.git
synced 2024-11-23 08:02:05 +01:00
Slightly more structure for "highlevel"
This commit is contained in:
parent
53224cad5a
commit
6f58af0aa8
1 changed files with 20 additions and 5 deletions
|
@ -1,10 +1,5 @@
|
||||||
# A high-level view
|
# A high-level view
|
||||||
|
|
||||||
```
|
|
||||||
- ?
|
|
||||||
- Introduce Packet/Subpacket concepts (?)
|
|
||||||
```
|
|
||||||
|
|
||||||
## A very brief history
|
## A very brief history
|
||||||
|
|
||||||
The OpenPGP standard has evolved over time.
|
The OpenPGP standard has evolved over time.
|
||||||
|
@ -75,3 +70,23 @@ compared to the previous version 4.
|
||||||
|
|
||||||
As of this writing (in 2023), version 4 of OpenPGP is still most commonly used.
|
As of this writing (in 2023), version 4 of OpenPGP is still most commonly used.
|
||||||
OpenPGP version 4 is described in [RFC 4880](https://datatracker.ietf.org/doc/html/rfc4880).
|
OpenPGP version 4 is described in [RFC 4880](https://datatracker.ietf.org/doc/html/rfc4880).
|
||||||
|
|
||||||
|
## Concepts
|
||||||
|
|
||||||
|
### Certificates/Keys
|
||||||
|
|
||||||
|
All uses of OpenPGP are centered around (asymmetric) cryptographic key material.
|
||||||
|
In OpenPGP, cryptographic keys are combined with additional metadata into
|
||||||
|
"OpenPGP Keys", or "OpenPGP Certificates".
|
||||||
|
|
||||||
|
See chapter "certs" (link) for more on OpenPGP Certificates, and "private" for handling of
|
||||||
|
private key material in OpenPGP.
|
||||||
|
|
||||||
|
### Cryptographic operations
|
||||||
|
|
||||||
|
- Signatures
|
||||||
|
- Encryption
|
||||||
|
|
||||||
|
### Internal structure of OpenPGP data
|
||||||
|
|
||||||
|
OpenPGP data is structured as "packets" (and sometimes "subpackets"), internally.
|
||||||
|
|
Loading…
Reference in a new issue