ある組織は、ファイルシステム上に機密情報を永続的に保存する必要があるコンテナベースのアプリケーションを導入しています。このファイルシステムはクラウド環境に導入されます。永続的に保存される情報には、PHI(保護対象医療情報)が含まれます。保存情報の機密性を確保するには、以下のソリューションのうちどれが最適ですか?
正解:B
AES-GCM (Advanced Encryption Standard - Galois/Counter Mode)is a symmetric encryption standard that provides bothconfidentialityandintegrity, making it ideal for encrypting sensitive information like PHI at rest in a cloud environment.
Triple DESis outdated and less secure compared to modern standards like AES.
RSAis an asymmetric encryption standard better suited for encrypting small data (e.g., keys) rather than bulk data like a filesystem.
TLSis a protocol for securing data in transit, not at rest.
RIPEMDis a cryptographic hash function and does not provide encryption, which is required to ensure confidentiality.
References:
CompTIA CASP+ Exam Objective 2.1: Implement cryptographic solutions to protect sensitive data.
CASP+ Study Guide, 5th Edition, Chapter 9, Encryption Standards.