2016-11-28 8 views
0

私は、コードの下に使用してAES/CFBモードを使用して復号化しようとしているAES/CFB復号

final static public String ENCRYPT_KEY = "4EBB854BC67649A99376A7B90089CFF1"; 
final static public String IVKEY = "ECE7D4111337A511F81CBF2E3E42D105"; 
private static String deCrypt(String key, String initVector, String encrypted) { 
    try { 
     IvParameterSpec iv = new IvParameterSpec(initVector.getBytes("UTF-8")); 
     SecretKeySpec skSpec = new SecretKeySpec(key.getBytes("UTF-8"), "AES"); 
     int maxKeyLen = Cipher.getMaxAllowedKeyLength("AES"); 

     Cipher cipher = Cipher.getInstance("AES/CFB/NoPadding"); 
     cipher.init(Cipher.DECRYPT_MODE, skSpec, iv); 
     byte[] original = cipher.doFinal(encrypted.getBytes()); 

     return new String(original); 
    } catch (Exception e) { 
     e.printStackTrace(); 
    } 
    return ""; 
} 

とエラーの下に投げています、ENCRYPT_KEYとIVKEY以上

Wrong IV length: must be 16 bytes long. 

は有効なものです。誰にでも助けてくれますか?

答えて

2

"ECE7D4111337A511F81CBF2E3E42D105".getBytes("UTF-8");を呼び出すと、完全に間違ったIVは言うまでもありませんが、byte[]のサイズは32になります。

あなたはjavax.xml.bindからDatatypeConverterを借りて、たとえば、代わりにbyte[]文字列を解析する必要があります。

IvParameterSpec iv = new IvParameterSpec(
    javax.xml.bind.DatatypeConverter.parseHexBinary(initVector));