5.4. Encryption

Last update: June 27, 2022 16:22 UTC (1a7aee0a0)

This section discusses the use of encryption and related technology for NTP.

Providing or enabling the use of encryption in software was considered harmful by the USA. However electronic commerce is only possibly with safe data exchange, so use of encryption has become a bit more allowed. NTP version 4 includes no cryptography, from the viewpoint of government regulations, and introduces MD5 keys.

As MD5 is heavily used in digital signatures, MD5 is not considered as cryptography, despite the fact that digital signatures actually do use encryption.


5.4.1 What is Encryption used for in NTP?
5.4.1.1 How is Authenticity verified?
5.4.1.2 Where are authenticated Messages used in NTP?
5.4.1.3 How is Performance affected by Encryption?
5.4.2 The Basics of Autokey
5.4.2.1 Authentic and Proventic
5.4.2.2 Secure Group and Trusted Host
5.4.2.3 Identity Schemes
5.4.2.4 Proventic Trail
5.2.4.5 Session Keys


5.4.1 What is Encryption used for in NTP?

Basically NTP uses encryption only for integrity checking and authentication:


5.4.1.1 How is Authenticity verified?

Cryptographic hash functions like MD5 have the following properties:

The sender computes a fingerprint consisting of public data plus some secret data (the symmetric key), and adds it to the data being transferred. The recipient uses the received data plus the shared secret to compute its own fingerprint in the same way as the sender. Providing a correct fingerprint implies that the sender knows the shared secret, and that the data received wan’t changed during transmission.

While the above procedure is not considered to be data encryption, the following procedure using key pairs is: the sender computes a fingerprint of the public data only, but then encrypts that fingerprint with its secret private key of the key pair. Message plus encrypted fingerprint are sent. The recipient decrypts the fingerprint using its public key and compares it the fingerprint computed locally from the public data. If both are the same, it is believed that it’s only possible to send the correct encrypted fingerpint when knowing the secret key.

Refer to this article for an overview of the mathematical properties and generation of key pairs.


5.4.1.2 Where are authenticated Messages used in NTP?

The uses of authenticated messages in NTP are:


5.4.1.3 How is Performance affected by Encryption?

Strong cryptography is computationally expensive. Furthermore, the time required to complete the computations may depend on the actual values being processed in a non-predictable way.

NTP tries to avoid cryptography whenever possibe. MD5 is believed to require almost constant CPU cycles, while public key algorithms are known to require significantly more, and a varying number of CPU cycles.


5.4.2 The Basics of Autokey

Symmetric key encryption requires a secure channel to exchange secret keys. Every NTP client needs a secret key for authenticating the time messages from a server. Public key cryptography and X.509 version 3 certificates are used for the Autokey authentication schema that is summarized below. See Q: 6.2.2.6 for configuration details.

As public key algorithms are computationally expensive, those algorithms are not used for every packet being exchanged.


5.4.2.1 Authentic and Proventic

In NTP Security Model the phrases are defined like this:

authentic
A client is authentic if it can reliably verify the credentials of at least one server and the integrity of its messages.
proventic
A client is proventic if there exists a path to a trusted server where each node is authentic.

5.4.2.2 Secure Group and Trusted Host

A secure group defines a subset of the NTP network that uses a common security model, authentication protocol, and identity scheme. Each member of a group has identity parameters and a group key provided by some trusted agent.

Each secure group has at least one trusted host that operates as certificate authority at the lowest stratum of the group.

A primary group includes at least one trusted primary server (stratum 1).


5.4.2.3 Identity Schemes

Identity Schemes are methods to prove the identity of a remote system, helping to prevent man-in-the-middle attacks. In NTP Security Algorithms and NTP Security Model the following identity schemes are mentioned:

All schemes use relatively small keys (few bits), so those keys must be refreshed regularly. Even though certificates are valid for one year after creation, the keys should be re-created on a shorter interval. Using the NTP timestamp as the certificate’s serial number ensures uniqueness. Thus signatures are only generated when the host’s time is considered synchronized.


5.4.2.4 Proventic Trail

According to NTP Security Protocol, a proventic trail (certificate trail) is a cryptographically verified sequence of NTP servers ending at a trusted host.


5.4.2.5 Session Keys

According to NTP Security Protocol, session keys are 128 bits (16 octets). Session keys are created as lists of keys, and the last key in the list is digitally signed. See RFC 2104 HMAC: Keyed-Hashing for Message Authentication for basics.