JNI AES加解密
String source = "hello world";
byte[] encodedStr = AESUtils.AESEncode(source.getBytes());
Log.e(TAG, "encodedStr: " + new String(encodedStr));
Log.e(TAG, "decodedStr: " + new String(AESUtils.AESDecode(encodedStr)));
- Gmail: [email protected]
- 个人博客: https://jewsaten.github.io/