我基本上是Android开发人员,根据项目要求,我需要在黑莓中开发。我的任务是像HELLO这样的简单文本的AES加密。
我做了什么:
我使用了这个LINK,但结果我在模拟器
我想要的是什么:
请建议我避免这个错误的方法。和Blackberry的AES加密工作样本示例;
我的方法如下:
String mystr = "HELLO";
try
{
String str = AES.AESEncryption(mystr.getBytes());
System.out.print(str);
}
catch (Exception e)
{
e.printStackTrace();
System.out.print(e.toString());
}