1

我正在使用 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

你能告诉我哪里错了吗?

谢谢

4

1 回答 1

0

您需要导入类,将鼠标悬停并按 alt + enter 或复制并粘贴:

import org.cryptonode.jncryptor.AES256JNCryptor;
于 2021-08-20T12:09:05.943 回答