18

我正在尝试使用 AES 加密 Android 上的字符串。对称密钥之前使用 Diffie-Hellman 算法确定,似乎没问题(密钥长度为 128 位,见下文)。
不过,我得到一个 InvalidKeyException: "Key length not 128/192/256 bits.

代码:

KeyAgreement keyAgree = KeyAgreement.getInstance("DH", "BC");
keyAgree.init(this.smartphonePrivKey);
keyAgree.doPhase(serverPubKey, true);
SecretKey key = keyAgree.generateSecret("AES");
System.out.println("Key Length: " + key.getEncoded().length);
System.out.println("Key Algorithm: "+ key.getAlgorithm());
System.out.println("Key Format: "+ key.getFormat());

byte[] encrypted = null;
  Cipher cipher;
  try {
   cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
   System.out.println("Allowed Key Length: "
     + cipher.getMaxAllowedKeyLength("AES"));
   cipher.init(Cipher.ENCRYPT_MODE, key);
   encrypted = cipher.doFinal("YEAH".getBytes("UTF8"));
  } catch (NoSuchAlgorithmException e) {
   e.printStackTrace();
  } catch (NoSuchPaddingException e) {
   e.printStackTrace();
  } catch (InvalidKeyException e) {
   e.printStackTrace();
  } catch (IllegalBlockSizeException e) {
   e.printStackTrace();
  } catch (BadPaddingException e) {
   e.printStackTrace();
  } catch (UnsupportedEncodingException e) {
   e.printStackTrace();
  }

上面的代码导致以下输出:

_12-10 20:24:53.119: INFO/System.out(757): Key Length: 128_  
_12-10 20:24:53.119: INFO/System.out(757): Key Algorithm: AES_   
_12-10 20:24:53.119: INFO/System.out(757): Key Format: RAW_  
_12-10 20:24:53.470: INFO/System.out(757): Allowed Key Length: 2147483647_ 

之后,我得到了InvalidKeyException: Key length not 128/192/256 bits.但是正如你所看到的,SecretKey 的长度为 128 位!

有任何想法吗?

4

2 回答 2

30

您生成的密钥是 128字节,而不是 128。“密钥长度”应为 16。

于 2010-12-10T21:02:11.683 回答
9

此异常基本上是由于您为加密传递的密钥长度而发生的。如果您使用的是 AES 加密,则字符数的长度必须为 128/192/256 位。例如,您可以使用 16 个字符、24 个字符或 32 个字符的键。

String encrypted_data=AES.encrypt("HELLO","ASDFGHJKLASDFGHJ");

希望这有助于...

于 2017-01-31T05:47:04.250 回答