为了账号安全,请及时绑定邮箱和手机立即绑定

Android Java:试图让这个 AES 加密库工作,但它没有

Android Java:试图让这个 AES 加密库工作,但它没有

慕村225694 2022-07-14 17:37:13
我正在尝试测试这个库http://blog.cwill-dev.com/2012/10/09/encryption-between-javaandroid-and-php/使用此代码 ApiCrypter ApiCrypter = new ApiCrypter();@Overrideprotected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_my_profile);    try {        String encryptedRequest = ApiCrypter.bytesToHex(this.ApiCrypter.encrypt("hello world"));        Toast.makeText(this, encryptedRequest, Toast.LENGTH_LONG).show();    } catch (Exception e) {        e.printStackTrace();    }在页面中提到的示例中String encryptedRequest = ApiCrypter.bytesToHex(this.apiCrypter.encrypt(jsonParams.toString()));但是“apiCrypter”不存在所以我使用了实例“ApiCrypter”但是吐司根本没有被触发。我试图在 TextView 中显示该值,但它也是空的。请问有什么帮助吗?
查看完整描述

2 回答

?
慕斯709654

TA贡献1840条经验 获得超5个赞

尝试更换:

ApiCrypter ApiCrypter = new ApiCrypter();

和:

ApiCrypter apiCrypter = new ApiCrypter();

接着:

String encryptedRequest = ApiCrypter.bytesToHex(this.apiCrypter.encrypt(jsonParams.toString()));
查看完整回答
反对 回复 2022-07-14
?
湖上湖

TA贡献2003条经验 获得超2个赞

IV 和 key 都必须是 16 个字符的长度,并且在固定长度后它们更短,它工作正常



查看完整回答
反对 回复 2022-07-14
  • 2 回答
  • 0 关注
  • 108 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信