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


I would suggest you to use Maven: http://maven.apache.org/
It is most recommended and most widely used software management tool. It can manage project build and dependencies pretty easily. Most of the production level application in the current scenario use Maven.
You also do not need to worry about the dependencies of your project, which really helps when your application has heavy external dependencies. The project will download the dependencies direct from the maven repository and you won't have to carry them with the project.