47. What type of cryptographic attack rendered Double DES (2DES) no more effective than standard DES encryption?
(A) Birthday attack
(B) Chosen ciphertext attack
(C) Meet-in-the-middle attack
(D) Man-in-the-middle attack

答案:登入後查看
統計: A(0), B(0), C(0), D(1), E(0) #3560436

詳解 (共 1 筆)

#6644944

答案

(C) Meet-in-the-middle attack

觀念解析

  • Double DES (2DES)

    • 對資料進行 兩次 DES 加密,理論上想增加安全性(加密強度應該比單一 DES 高)。

    • 實際上可以被 Meet-in-the-middle attack(中間相遇攻擊) 破解。

  • Meet-in-the-middle attack 原理

    1. 攻擊者知道明文和對應密文。

    2. 先對明文用第一把密鑰加密,存結果。

    3. 再對密文用可能的第二把密鑰反向解密。

    4. 找到匹配 → 破解密鑰對。

  • 結果:破解 2DES 的計算量 ≈ 2 × 2⁵⁶ ≈ 2⁵⁷,比單純預期的 2¹¹² 少很多 → 安全性提升不大。

0
0