Aes

AES 加密密鑰

  • November 14, 2016
  1. AES 算法密鑰長度的三個可能值(以位為單位)是什麼?
  2. AES 密鑰空間大約有多大?

AES 密鑰大小為 128、192 和 256 位。請注意,Rijndael 有更多可能的密鑰大小,因此這不是算法的限制;這正是 AES 比賽的要求。請注意,輪數和密鑰時間表會根據密鑰大小進行調整。

AES 密鑰沒有任何冗餘;每個位都直接影響密鑰空間。因此,密鑰大小為 $ 2^{128} $ , $ 2^{192} $ or [Math Processing Error] $ 2^{256} $ for the respective key sizes. This is somewhat different from the old DES cipher that also contains parity bits in the full key. More modern symmetric ciphers simply use all bits and try to avoid weak keys.

引用自:https://crypto.stackexchange.com/questions/41471