3. Cryptographic concepts and terms

3.1. Cryptographic hash functions

Cryptographic hash functions take data strings of any length (like a text message or file) and output a fixed-size code, a “hash digest,” which is often abbreviated as either “digest” or “hash.” A hash digest is also sometimes called a “(cryptographic) checksum.” A hash digest acts like a unique identifier for the original data.

Cryptographic hash functions have two important properties:

  • Pre-image resistance: Given a hash digest, it should be very difficult to determine any data that matches this hash digest (including, but not limited to, the original data the hash represents). This property embodies the concept of a one-way function – a calculation that is easy to perform, but very hard to reverse.

  • Collision resistance: It should be very difficult to find two distinct pieces of data that map to the same hash digest.

3.2. Message authentication codes

A message authentication code (MAC), also known as an authentication tag, is a small piece of information used to verify the integrity and authenticity of a message.

It is derived from the original message using a (symmetric) secret key. The recipient of a message containing a MAC, who is also in possession of the secret key, can verify that the message has not been altered.

HMAC is a type of MAC that relies on a hash function. It is used in the OpenPGP protocol.

3.2.1. Key derivation functions

A hash function can also be used to create a key derivation function (KDF). One application of KDFs is to generate symmetric key material from a password by iteratively passing it through a hash function.

A notable KDF for the OpenPGP specification is the HKDF, which is a key derivation function based on the HMAC.

For detailed information on KDFs and their role in the OpenPGP protocol, see the encrypted secrets chapter and the SEIPDv2 section of the encryption chapter.

3.3. Symmetric-key cryptography

Symmetric-key cryptography uses the same cryptographic key for both encryption and decryption, unlike asymmetric cryptography where a pair of keys is used: a public key for encryption and a corresponding private key for decryption. Symmetric-key cryptographic systems support encryption/decryption operations.

Participants in symmetric-key operations need to exchange the shared secret over a secure channel.

Depicts a box with a white background and the title "Symmetric key". In the box a single key symbol, rendered with full yellow line, is shown pointing to the right hand side.

Fig. 1 A symmetric cryptographic key (which acts as a shared secret)

3.3.1. Benefits and downsides

Symmetric-key cryptography has major benefits: It is much faster than public-key cryptography (see below). Also, most current symmetric-key cryptographic mechanisms are believed to be resilient against possible advances in quantum computing[1].

However, exchanging the required shared secret is a problem that needs to be solved separately.

Hybrid cryptosystems combine the advantages of symmetric-key cryptography with a separate mechanism for managing the shared secret, using public-key cryptography.

3.3.2. Symmetric-key cryptography in OpenPGP

Symmetric-key cryptography is used in OpenPGP in three contexts:

Where symmetric keys are used in OpenPGP for data encryption, they are called either “message keys” or “session keys[2].”

3.3.3. Authenticated encryption with associated data (AEAD)

Authenticated encryption offers more than just confidentiality; it ensures data integrity too.

In OpenPGP version 6, AEAD replaced the MDC[3] mechanism to address malleability. In earlier OpenPGP versions, malicious alterations to ciphertext might go unnoticed. AEAD guards against such undetected changes.

By addressing the malleability problem, AEAD also counters a variation of the EFAIL[4] attack.

3.4. Public-key (asymmetric) cryptography

Public-key cryptography uses asymmetric pairs of related keys. Each pair consists of a public key and a private key. These systems support encryption, decryption, and digital signature operations.

Unlike symmetric cryptography, participants are not required to pre-arrange a shared secret. In public-key cryptography, the public key material is shared openly for certain cryptographic operations, such as encryption and signature verification, while the private key, kept confidential, is used for operations like decryption and signature creation.

3.4.1. Asymmetric cryptographic key pairs

Throughout this document, we will frequently reference asymmetric cryptographic key pairs:

Depicts a box with white background and the title "Asymmetric keypair". In the box two key symbols with text next to them are shown. The top key symbol is rendered using full green lines, points to the right hand side and has the accompanying text "Public key". The lower key symbol is rendered using dotted red lines, points to the left hand side and has the accompanying text "Private key".

Fig. 2 An asymmetric cryptographic key pair

Each key pair comprises two parts: the public key and the private key. For ease of identification in this documentation, the public key will be shown in green and the private key in red. Additionally, public keys are depicted with a solid border and pointing to the right, while private keys are shown with a dotted border and pointing to the left.

It’s important to note that in many scenarios, only the public key is exposed or used. These situations will be elaborated upon in subsequent sections of this document.

Depicts a box with white background and the title "Public part of an asymmetric keypair". In the box one key symbol with text next to it is shown. The key symbol is rendered using full green lines, points to the right hand side and has the accompanying text "Public key".

Fig. 3 The public part of an asymmetric key pair

3.4.2. Usage and terminology in OpenPGP

OpenPGP extensively uses public-key cryptography for encryption and digital signing operations.

Terminology

OpenPGP documentation, including the foundational RFC, opts for the term “secret key” over the more widely accepted “private key.” As a result, in the RFC, you’ll encounter the “public/secret key” pairing more frequently than “public/private key.” This terminology reflects historical developments in the OpenPGP community, not a difference in technology.

While “secret key” (as used in the OpenPGP RFC) and “private key” serve the same purpose in cryptographic operations, this document will use the more common “public/private” terminology for clarity and consistency with broader cryptographic discussions.

3.4.3. Cryptographic digital signatures

Digital signatures are a fundamental mechanism of asymmetric cryptography, providing secure, mathematical means to validate the authenticity, integrity, and origin of digital messages and documents.

In OpenPGP, digital signatures have diverse applications, extending beyond mere validation of a message’s origin. They can signify various intents, including certification, consent, acknowledgment, or even revocation by the signer. The multifaceted nature of “statements” conveyed through digital signatures in cryptographic protocols is wide-ranging but crucial, allowing third parties to inspect/evaluate these statements for authenticity and intended purpose.

Digital signatures in OpenPGP are used in two primary contexts:

3.5. Hybrid cryptosystems

Hybrid cryptosystems combine the use of symmetric and asymmetric (public-key) cryptography to capitalize on the strengths of each, namely symmetric cryptography’s speed and efficiency and public-key cryptography’s mechanism for secure key exchange.

3.5.1. Usage and terminology in OpenPGP

OpenPGP uses a hybrid cryptosystem for encryption. This approach involves generating unique shared secrets, known as “session keys,” for each session. For detailed information on this topic, please refer to the chapters Encryption and Decryption.