Here's the basic structure of the GenSig
program.
Place it in a file called GenSig.java
.
import java.io.*; import java.security.*; class GenSig { public static void main(String[] args) { /* Generate a DSA signature */ if (args.length != 1) { System.out.println("Usage: GenSig nameOfFileToSign"); } else try { // the rest of the code goes here } catch (Exception e) { System.err.println("Caught exception " + e.toString()); } } }
java.security
package, so the program imports everything from that package. The program also
imports the java.io
package, which
contains the methods needed to input the file data to be signed.
try
and the catch
blocks.