nerdexam
EC-Council

312-50V12 · Question #182

You are the lead cybersecurity analyst at a multinational corporation that uses a hybrid encryption system to secure inter-departmental communications. The system uses RSA encryption for key exchange

The correct answer is D. AES key size=512 bits: This configuration provides the highest level of security but at a significant. This question tests understanding of hybrid encryption trade-offs between RSA and AES key sizes, especially under quantum computing threats where RSA is vulnerable but AES retains relative strength with larger key sizes.

Submitted by paula_co· Mar 4, 2026Cryptography

Question

You are the lead cybersecurity analyst at a multinational corporation that uses a hybrid encryption system to secure inter-departmental communications. The system uses RSA encryption for key exchange and AES for data encryption, taking advantage of the strengths of both asymmetric and symmetric encryption. Each RSA key pair has a size of 'n' bits, with larger keys providing more security at the cost of slower performance. The time complexity of generating an RSA key pair is O(n^2), and AES encryption has a time complexity of O(n). An attacker has developed a quantum algorithm with time complexity O((log n)^2) to crack RSA encryption. Given 'n=4000' and variable 'AES key size', which scenario is likely to provide the best balance of security and performance?

Options

  • AAES key size=128 bits: This configuration provides less security than option A, but RSA key
  • BAES key size=256 bits: This configuration provides a high level of security, but RSA key
  • CAES key size=192 bits: This configuration is a balance between options A and B, providing
  • DAES key size=512 bits: This configuration provides the highest level of security but at a significant

How the community answered

(68 responses)
  • A
    24% (16)
  • B
    7% (5)
  • C
    13% (9)
  • D
    56% (38)

Why each option

This question tests understanding of hybrid encryption trade-offs between RSA and AES key sizes, especially under quantum computing threats where RSA is vulnerable but AES retains relative strength with larger key sizes.

AAES key size=128 bits: This configuration provides less security than option A, but RSA key

AES-128 bits provides only ~64 bits of effective security against quantum attacks via Grover's algorithm, which is insufficient when RSA is already compromised, making this the weakest and least secure option.

BAES key size=256 bits: This configuration provides a high level of security, but RSA key

AES-256 offers 128-bit post-quantum security which is strong, but when RSA is broken and the entire security burden shifts to AES, 256 bits is less preferable than 512 bits in a scenario explicitly prioritizing maximum security balance.

CAES key size=192 bits: This configuration is a balance between options A and B, providing

AES-192 provides an intermediate level of security (~96 bits post-quantum), but it neither maximizes security nor offers a compelling performance advantage over AES-256 or AES-512 given AES's linear O(n) complexity, making it a suboptimal choice in this threat model.

DAES key size=512 bits: This configuration provides the highest level of security but at a significantCorrect

When RSA is compromised by a quantum algorithm reducing its complexity to O((log n)^2), the security of the hybrid system falls entirely on AES. A 512-bit AES key provides the highest resistance against both classical and quantum attacks (Grover's algorithm halves effective key strength, so 512 bits yields ~256-bit post-quantum security), making it the best choice when RSA can no longer be trusted for secure key exchange. Although AES-512 incurs higher computational cost, the O(n) linear complexity of AES means this overhead is manageable compared to the catastrophic security loss from a broken RSA layer.

Concept tested: Hybrid encryption security under quantum computing threats

Source: https://learn.microsoft.com/en-us/azure/security/fundamentals/encryption-overview

Topics

#hybrid encryption#RSA#AES#quantum cryptography#key sizes

Community Discussion

No community discussion yet for this question.

Full 312-50V12 Practice