and | -c]" );
System.out.println( "
are unique prime numbers used to generate the keys" );
System.out.println( " Note: p * q must be larger than 127" );
System.out.println( "Example command line: keygen -o pubkey.xml privkey.xml -c" );
}
/**
* This method is called when the class is loaded from the command line
*/
public static void main( String[] argv )
{
// make an instance of the class
KeyGen instance = new KeyGen();
// generate the keys
instance.doJob(argv);
}
}