A finance team encrypts quarterly reports so that only board members holding the decryption key can read them in transit and at rest. Which element of the CIA triad is the encryption primarily intended to preserve?
- AConfidentiality, because the cryptographic control restricts disclosure of the report content to authorised key holders only. Correct
- BIntegrity, because encryption mathematically prevents undetected modification of the protected report content.
- CAvailability, because keyed access guarantees the reports remain reachable to authorised board members at any time.
- DNon-repudiation, because encrypted reports cannot later be denied as having been authored by the finance team.
Why A is correct: Confidentiality is the property that information is not disclosed to unauthorised parties. Encrypting the reports so that only key-holding board members can read them is a textbook confidentiality control.
Why B is wrong: Integrity controls such as hashes or digital signatures detect tampering, but symmetric or asymmetric confidentiality encryption alone does not reliably reveal modifications. Treating encryption as an integrity control is a common conflation.
Why C is wrong: Availability is supported by redundancy, capacity planning, and resilience, not by restricting who can read a file. Encryption can actually reduce availability if keys are lost.
Why D is wrong: Non-repudiation is achieved through digital signatures bound to a verified identity, not through encryption used to hide content. The scenario does not describe any signing or identity binding.