Classified Data Connection Algorithms
Which two algorithms must be used when an engineer is creating a connection that will have classified data across it? (Choose two.)
Community Votes
67% of anonymous learners picked answer AC. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
Tests understanding of the difference between symmetric encryption (confidentiality) and hashing (integrity), often leading to selecting two encryption methods instead of one of each.
Identifies the correct combination of encryption and integrity algorithms for securing classified data connections. The page clarifies that both confidentiality and integrity are required.
Selecting AES-256 and RSA-3072, assuming two strong encryption algorithms are needed, while overlooking the necessity of a separate integrity mechanism like SHA-384.
Community Discussion (3 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
The question requires protecting 'classified data,' which implies both confidentiality (preventing reading) and integrity (preventing tampering). AES-256 provides strong symmetric encryption for confidentiality. SHA-384 is a secure hashing algorithm used to ensure data integrity. Together, they form a complete security posture for data in transit.Why the Other Options Are Wrong
RSA-3072 and ECDSA-256 are asymmetric algorithms primarily used for key exchange or digital signatures, not bulk data encryption. RC4 is a deprecated and insecure stream cipher that must never be used for classified data.Community Comment Notes
As ITVI noted, the trick is recognizing you need 'one encryption and one integrity.' Pierre_Bouvier correctly identifies SHA-384 as an integrity verification tool. wowako argues for RSA-3072, but this misses the integrity requirement for the data payload itself.Exam Strategy
When asked about securing data, always look for one option that provides encryption (AES) and one that provides integrity (SHA/Hash). Don't assume all options should be encryption algorithms.
Frequently Asked Questions
Why not use RSA-3072 for classified data?
RSA is used for key exchange or signatures, not bulk data encryption. It is too slow for encrypting large data streams compared to AES.
Is SHA-384 an encryption algorithm?
No, SHA-384 is a hashing algorithm used for integrity verification. It does not encrypt data but ensures it hasn't been altered.