I am using the Keyczar Java library to encrpyt and decrpyt information.
I am trying to do the below as stated on the main site
package testing2;
import testing2.org.keyczar;
public class Testing2
{
public static void main(String[] args)
{
Crypter crypter = new Crypter("/path/to/your/keys");
}
}
The compiler gives the following error : Crypter symbol cant be found
I suspect that the cause of the problem is that I did not include my external library files properly
This is how i have included my files
What am i doing wrong ???
Download Keyczar from here