CV0-003 · Question #788
A cloud administrator would like to maintain file integrity checks through hashing on a cloud object store. Which of the following is MOST suitable from a performance perspective?
The correct answer is A. SHA-256. SHA-256 offers the best balance of cryptographic security and computational performance for hashing files in a cloud object store, producing a smaller digest than SHA-512 with lower processing and storage overhead.
Question
A cloud administrator would like to maintain file integrity checks through hashing on a cloud object store. Which of the following is MOST suitable from a performance perspective?
Options
- ASHA-256
- BSHA-512
- CMD5
- DAES
How the community answered
(28 responses)- A79% (22)
- B4% (1)
- C11% (3)
- D7% (2)
Why each option
SHA-256 offers the best balance of cryptographic security and computational performance for hashing files in a cloud object store, producing a smaller digest than SHA-512 with lower processing and storage overhead.
SHA-256 generates a 256-bit digest using 32-bit word operations, making it efficient across a wide range of server architectures. In cloud object storage scenarios involving large numbers of objects, the smaller digest size reduces metadata storage costs and the 32-bit operation model results in faster throughput than SHA-512, especially on systems without native 64-bit optimization. It remains cryptographically secure for integrity checking purposes.
SHA-512 uses 64-bit word operations and produces a 512-bit digest, which increases storage overhead per object and can be slower than SHA-256 on hardware without native 64-bit instruction support.
MD5 has well-documented collision vulnerabilities and is considered cryptographically broken, making it unsuitable for security-grade file integrity checks despite its speed.
AES is a symmetric block cipher used for encryption, not a hashing algorithm, and cannot produce a hash digest for integrity verification.
Concept tested: Selecting hash algorithm for cloud object store integrity
Source: https://learn.microsoft.com/en-us/azure/storage/common/storage-checksums-for-data-integrity
Topics
Community Discussion
No community discussion yet for this question.