CCSP Exam QuestionsBrowse all questions from this exam

CCSP Exam - Question 145


Which of the following is NOT a function performed by the record protocol of TLS?

Show Answer
Correct Answer: B

The record protocol of TLS performs encryption, message integrity via the application of MACs (Message Authentication Codes), and optionally, compression. It does not provide any functionality related to acceleration.

Discussion

6 comments
Sign in to comment
kepalonOption: B
Mar 24, 2022

ACCELERATION IS CORRECT. TLS Record protocol provides the actual secure communication method for transmitting data; encryption + authentication & in some cases also compression. Acceleration is not a component of TLS, it might be provided by another external component

AlanJP
Jul 23, 2021

Authentication is actually done by the Handshake protocol. The Message Authentication Code is applied at the Record layer, but the authentication is not done here. TLS Accelerators are hardware encryption engines and are used in the Record layer.

[Removed]
Jan 5, 2022

TLS Record Protocol manages the following: Dividing outgoing messages into manageable blocks, and reassembling incoming messages. Compressing outgoing blocks and decompressing incoming blocks (optional). Applying a Message Authentication Code (MAC) to outgoing messages, and verifying incoming messages using the MAC. Encrypting outgoing messages and decrypting incoming messages.

JohnnyBGOption: C
Mar 22, 2024

Auth is not performed by record protocol for reasons mentioned bellow

rkumar16d
Oct 28, 2024

Answer is C. Authentication

MaciekMTOption: B
Feb 20, 2025

The TLS record protocol is responsible for ensuring confidentiality (via encryption), data integrity (through authentication mechanisms like MACs), and it may also compress data before encryption. Acceleration is not a function of the TLS record protocol.