1

次のコードは、非対称キーを使用してAESを使用してデータを暗号化する試みです。

import java.io.OutputStream;
import java.math.BigInteger;
import java.security.Key;
import java.security.KeyFactory;
import java.security.interfaces.RSAPrivateKey;
import java.security.interfaces.RSAPublicKey;
import java.security.spec.RSAPrivateKeySpec;
import java.security.spec.RSAPublicKeySpec;

import javax.crypto.Cipher;

public class AsyncronousKeyTest {

    private final Cipher cipher;
    private final KeyFactory keyFactory;
    private final RSAPrivateKey privKey;

    private AsyncronousKeyTest() throws Exception {
 cipher = Cipher.getInstance("AES/CBC/NoPaddin", "BC");
 keyFactory = KeyFactory.getInstance("AES", "BC");

 // create the keys

 RSAPrivateKeySpec privKeySpec = new RSAPrivateKeySpec(new BigInteger(
  "d46f473a2d746537de2056ae3092c451", 16), new BigInteger("57791d5430d593164082036ad8b29fb1",
  16));
 privKey = (RSAPrivateKey) keyFactory.generatePrivate(privKeySpec);

    }

    public void generateAuthorizationAct(OutputStream outputStream) throws Exception {

 KeyFactory keyFactory = KeyFactory.getInstance("AES", "BC");
 RSAPublicKeySpec pubKeySpec = new RSAPublicKeySpec(new BigInteger("d46f473a2d746537de2056ae3092c451",
  16), new BigInteger("11", 16));
 RSAPublicKey pubKey = (RSAPublicKey) keyFactory.generatePublic(pubKeySpec);

 byte[] data = new byte[] {0x01};

 byte[] encrypted = encryptAO(pubKey, data);
 outputStream.write(encrypted);
    }

    /** Encrypt the AuthorizationObject. */
    public byte[] encryptAO(Key pubKey, byte[] data) throws Exception {
 cipher.init(Cipher.ENCRYPT_MODE, pubKey);
 byte[] cipherText = cipher.doFinal(data);
 return cipherText;
    }

    public byte[] decrypt(byte[] cipherText) throws Exception {
 cipher.init(Cipher.DECRYPT_MODE, privKey);
 byte[] decyptedData = cipher.doFinal(cipherText);
 return decyptedData;

    }

    public static void main(String[] args) throws Exception {
 System.out.println("start");

 AsyncronousKeyTest auth = new AsyncronousKeyTest();
 auth.generateAuthorizationAct(System.out);

 System.out.println("done");
    }

}

しかし、ラインで

cipher = Cipher.getInstance("AES/CBC/NoPaddin", "BC");

それは投げます

NoSuchPaddingException: Padding NoPaddin unknown.

これは何ですか?そして、どのように解決するのですか?

4

1 に答える 1

3

「パディング」は「パディン」ではありません。「グ」が重要です。

また、「非対称鍵による AES でデータを暗号化する」というのは意味がありません。RSA キーは、その名前が示すように、AES ではなく RSA 用です。AES は対称キー、つまり長さが 16、24、または 32 バイトの (任意の) バイトの配列を使用します。RSA キーは 2 つの整数で構成される数学的オブジェクトであり、そのうちの 1 つは非常に大きい (通常は 1024 ビット)。

于 2010-03-31T20:58:06.990 に答える