A healthcare provider is deploying a tele-radiology platform where remote radiologists submit diagnostic reports to hospital electronic health record (EHR) systems. Security policy dictates that the platform must guarantee two key objectives: (1) hospitals must be able to prove which specific radiologist authored a report such that the radiologist cannot later claim they did not send it, and (2) any alteration to report contents during transit or storage must be immediately detectable. Which of the following technical controls must be implemented to fulfill these security requirements? (Select TWO.)
- Digital signatures applied to diagnostic reports using each radiologist's private keyAnswer
- Cryptographic hashing generated for report payloads prior to transmissionAnswer
- CSymmetric encryption of reports using a shared AES-256 secret key among all hospitals
- DRole-based access control (RBAC) enforced on the central EHR portal
Answer
The organization must implement digital signatures applied with individual private keys (to provide non-repudiation and integrity) and cryptographic hashing of report payloads (to verify data integrity).
Digital signatures created with asymmetric private keys provide non-repudiation by binding the specific sender's identity to the report, while cryptographic hashing generates verification digests that detect any file alterations to preserve integrity.
Step-by-Step Solution
Key Concept
CIA Triad and Non-Repudiation