A security analyst is investigating severe performance slowdowns on a server transferring large archive files across the network. The investigation reveals that the file transfer service uses RSA asymmetric encryption to encrypt the full content of every file being transmitted, rather than using it solely to negotiate a symmetric session key. Which of the following describes the fundamental cryptographic weakness causing this performance issue?
- Improper selection of asymmetric encryption for bulk data transport instead of symmetric algorithmsAnswer
- BCreating a Certificate Signing Request prior to generating the private key pair during initialization
- CRelying on network perimeter firewalls to perform deep packet inspection on internal server traffic
- DApplying a corrective security control where a compensating administrative control was required
Answer
Improper selection of asymmetric encryption for bulk data transport instead of symmetric algorithms
Asymmetric encryption algorithms (such as RSA) require complex mathematical calculations that consume heavy processing power, making them inefficient for encrypting large amounts of data. Standard security architecture uses hybrid encryption, where asymmetric cryptography safely exchanges a symmetric session key, and a fast symmetric cipher (such as AES) encrypts the bulk file payload.
Step-by-Step Solution
Key Concept
Asymmetric vs. Symmetric Encryption Application in Hybrid Cryptosystems