我有一个用公钥加密的 AESkey,然后用私钥解密
Cipher cipher = Cipher.getInstance("RSA");
PrivateKey privateKey = keyPair.getPrivate();
// decrypt the ciphertext using the private key
cipher.init(Cipher.DECRYPT_MODE, privateKey);
byte[] decryptedText = cipher.doFinal(theBytes);
theBytes 是一个包含加密 AESkey 的 byte[],问题是如何将 decryptedText 转换回 AESkey?