web-dev-qa-db-ja.com

Javaを使用したAES暗号化および復号化

ここに私がやっていることは少し不器用に見えるかもしれませんが、問題に関してどんな助けもありがたいです。 BadPaddingExceptionを取得しています。ほとんどすべての関連トピックを読みましたが、適切な解決策が見つかりませんでした。私は暗号化復号化プログラミングに不慣れで、自分のJavaアプリケーションの1つに実装する必要があります。

ありがとう..これはコードの外観です...

public static void main(String[] args) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
    // TODO Auto-generated method stub
            String FileName="encryptedtext.txt";
            String FileName2="decryptedtext.txt";
            String pad="0"; 

            KeyGenerator KeyGen=KeyGenerator.getInstance("AES");
            KeyGen.init(128);

            SecretKey SecKey=KeyGen.generateKey();

            Cipher AesCipher=Cipher.getInstance("AES");
            AesCipher.init(Cipher.ENCRYPT_MODE,SecKey);

            byte[] byteText="My name is yogesh".getBytes();
            byte[] byteCipherText=AesCipher.doFinal(byteText);
            String cipherText = null;

            try {
                FileWriter fw=new FileWriter(FileName);
                BufferedWriter bw=new BufferedWriter(fw);
                bw.write(byteCipherText.toString());
                bw.close();
            }catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            try {
                FileReader fr=new FileReader(FileName);
                BufferedReader br=new BufferedReader(fr);
                cipherText=br.readLine();
                br.close();
            } catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            AesCipher.init(Cipher.DECRYPT_MODE,SecKey);
            while(((cipherText.getBytes().length)%16)!=0)
            {
                cipherText=cipherText+pad;


            }

            byte[] bytePlainText=AesCipher.doFinal(cipherText.getBytes());
            FileWriter fw1;
            try {
                fw1 = new FileWriter(FileName2);
                BufferedWriter bw1=new BufferedWriter(fw1);
                bw1.write(bytePlainText.toString());
                bw1.close();

            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }






}
8
Yogesh D

ここで、理解する必要があるのは、暗号テキストに印刷不可能な文字が含まれている可能性があるということです。したがって、readLine()を使用しても、ファイル内のすべてのバイトが得られるとは限りません。

また、byteCipherText.toString()は、あなたが得ようと思っていたものを提供しません。 Javaでは、toString()メソッドは配列の内容の文字列表現を提供しません。

暗号化されたテキストにパディングを追加する必要はありません。すでに埋め込まれています。

import Java.nio.file.Files;
import Java.nio.file.Paths;
import javax.crypto.*;

public class Main {

    public static void main(String[] args) throws Exception {
        String fileName = "encryptedtext.txt";
        String fileName2 = "decryptedtext.txt";

        KeyGenerator keyGen = KeyGenerator.getInstance("AES");
        keyGen.init(128);

        SecretKey secKey = keyGen.generateKey();

        Cipher aesCipher = Cipher.getInstance("AES");


        byte[] byteText = "Your Plain Text Here".getBytes();

        aesCipher.init(Cipher.ENCRYPT_MODE, secKey);
        byte[] byteCipherText = aesCipher.doFinal(byteText);
        Files.write(Paths.get(fileName), byteCipherText);


        byte[] cipherText = Files.readAllBytes(Paths.get(fileName));

        aesCipher.init(Cipher.DECRYPT_MODE, secKey);
        byte[] bytePlainText = aesCipher.doFinal(cipherText);
        Files.write(Paths.get(fileName2), bytePlainText);
    }
}
15
bgamlath

Cipherのインスタンスを作成するときに使用するパディングアルゴリズムを定義する必要があります。個人的には PKCS5 を使用しています。

したがって、変更する必要があります:

Cipher AesCipher=Cipher.getInstance("AES");

に:

Cipher AesCipher=Cipher.getInstance("AES/CBC/PKCS5Padding");

CBCは Cipher-block chainingの略です。

CBCIV を渡す必要があります。したがって、ランダムなIVを生成してinitメソッドに渡します。

byte[] iv = new byte[16];
SecureRandom random = new SecureRandom();
random.nextBytes(iv);
IvParameterSpec ivParameterSpec = new IvParameterSpec(iv);
AesCipher.init(Cipher.ENCRYPT_MODE, SecKey, ivParameterSpec);

注:コード内でmagical numbers/stringsを使用しないことをお勧めします。 Cipher#getInstanceの引数パスを定数に抽出することをお勧めします。

9
Leri