使用 QT AES/ECB/PKCS5Padding 解密
您好,
我正在为 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 的任何解决方案吗?
亲切的问候, 博格丹
Hy,
I am developing an application for QT Mobile Symbian^3 devices. I need to decrypt a message encrypted using AES, ECB and PKCS5 padding.
Below is the java code that decrypts the message:
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);
}
Do you know any solution for QT Symbian ?
Kind regards,
Bogdan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请检查:http://www.developer.nokia.com/Community/Wiki /AES_Encryption-Rijndael_Block_Cipher_to_Symbian_OS。也许有帮助。
干杯,
加斯帕
Please check this: http://www.developer.nokia.com/Community/Wiki/AES_Encryption-Rijndael_Block_Cipher_to_Symbian_OS. Maybe it helps.
Cheers,
Gaspar