java - JNCryptor not working, Cannot Resolve Symbol AES256JNCryptor -
im using jncryptor library, got error "cannot resolve symbol aes256jncryptor"
jncryptor cryptor = new aes256jncryptor(); byte[] plaintext = "hello, world!".getbytes(); string password = "secretsquirrel"; try { byte[] ciphertext = cryptor.encryptdata(plaintext, password.tochararray()); } catch (cryptorexception e) { // went wrong e.printstacktrace(); }
my android studio version 2.1.2
can tell me wrong ?
thanks
Comments
Post a Comment