嗨,
我正在为 QT Mobile Symbian^3 设备开发应用程序。我需要解密使用 AES、ECB 和 PKCS5 填充加密的消息。下面是解密消息的java代码:
public static byte[] decrypt(byte[] raw, byte[] encrypted) throws Exception {
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, skeySpec);
return cipher.doFinal(encrypted);
}
您知道 QT Symbian 的任何解决方案吗?
亲切的问候,波格丹