我正在使用 JNCryptor 库,但出现错误“无法解析符号 AES256JNCryptor”
JNCryptor cryptor = new AES256JNCryptor();
byte[] plaintext = "Hello, World!".getBytes();
String password = "secretsquirrel";
try {
byte[] ciphertext = cryptor.encryptData(plaintext, password.toCharArray());
} catch (CryptorException e) {
// Something went wrong
e.printStackTrace();
}
我的安卓工作室版本 2.1.2
你能告诉我哪里错了吗?
谢谢