java - AES 代码抛出 NoSuchPaddingException : Padding NoPaddin unknown

标签 java aes padding

以下代码尝试使用带有非对称 key 的 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.

这是什么?又该如何解决?

最佳答案

“Padding”不是“Paddin”。 “g”很重要。

此外,“使用非对称 key 使用 AES 加密数据”是没有意义的。顾名思义,RSA key 适用于 RSA,而不适用于 AES。 AES 使用对称 key ,即长度为 16、24 或 32 字节的(任意)字节数组。 RSA key 是一个由两个整数组成的数学对象,其中一个非常大(通常为 1024 位)。

关于java - AES 代码抛出 NoSuchPaddingException : Padding NoPaddin unknown,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2556365/

相关文章:

c - __packed 属性在函数参数中的用途是什么

java - 使用和否定数字

node.js - PyCrypto 和 Node.JS Crypto 库中的 AES 是否相同

java - Hibernate 如何在底层获取 OneToMany 关系中的数据?

.net - .NET AesManaged 加密硬件是否加速?

java - Java和Android之间的加密/解密

c# - 在 C# 控制台中从左侧填充

Python:使用 rsub 填充零的 zfill

java - 尝试并捕获用户输入导致变量未初始化

java - 序列化没有 jaxb 注释的基类