6

重複の可能性:
InvalidKeyExceptionキーサイズが無効です

public static byte[] encryptBytes(byte[] bytes, byte[] key)
{
    Cipher cipher = null;

    try
    {
        cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
        SecretKeySpec secretKey = new SecretKeySpec(key, "AES");
        cipher.init(Cipher.ENCRYPT_MODE, secretKey);

        return Base64.encodeBase64(cipher.doFinal(bytes));
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }

    return null;
}

public static byte[] decrpytBytes(byte[] encryptedData, String key)
{
    byte[] keyBytes = convertToByteArray(key);
    Cipher cipher = null;

    try
    {
        cipher = Cipher.getInstance("AES/ECB/PKCS5PADDING");
        SecretKeySpec secretKey = new SecretKeySpec(keyBytes, "AES");
        cipher.init(Cipher.DECRYPT_MODE, secretKey);

        return cipher.doFinal(Base64.decodeBase64(encryptedData));
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }

    return null;
}
//Simply takes every other two characters an terms them into a byte value 
    //then stuffs them into  a byteArray
public static byte[] convertToByteArray(String key)
{
    byte[] b = new byte[key.length()/2];

    for(int i=0, bStepper=0; i<key.length()+2; i+=2)
        if(i !=0)
            b[bStepper++]=((byte) Integer.parseInt((key.charAt(i-2)+""+key.charAt(i-1)), 16));

    return b;
}

public static void main(String[] args) throws Exception
{
            //This string has 64 characters. When sent to convertToByteArray it returns a byte array or 32 bytes
    String key = "00112233445566778899AABBCCDDEEFF0123456789ABCDEF0123456789ABCDEF";

            //Test it out
    byte f[] = {2,4,7};
    byte[] encrypted = encryptBytes(f, convertToByteArray(key));
    byte[] unencrypted = decrpytBytes(encrypted, key);

    System.out.print(unencrypted[0]);
}

エラー:

不正なキーサイズまたはデフォルトパラメータ

無効なキーサイズを取得している理由がわかりません。256暗号化で32バイトのキーを取得できる必要があります

4

1 に答える 1

13

http://www.javamex.com/tutorials/cryptography/unrestricted_policy_files.shtml

「Cipher クラスでは、一般に 128 ビットを超えるキー サイズの暗号化は許可されないことが判明しました。この背後にある明らかな理由は、輸入された暗号化ソフトウェアの許可されたキーの強度に制限を設けている国 (ますます少なくなっていますが) です。実際の 128 という数字には疑問があります (以下を参照)。

Sun が提供する他のポリシー ファイルでセキュリティ ポリシー ファイルを上書きすることにより、この制限を簡単に取り除くことができます。」

于 2013-01-30T23:30:07.330 に答える