HY,
我正在开发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的任何解决方案吗?
亲切的问候, 波格丹
答案 0 :(得分:1)