Preparar la Estructura Inicial del Programa

Aquí está la estructura básica del programa VerSig creado en las siguientes páginas de esta lección. Situamos este programa en un fichero llamado VerSig.java.
import java.io.*;
import java.security.*;
import java.security.spec.*;

class VerSig {

    public static void main(String[] args) {

        /* Verify a DSA signature */

        if (args.length != 3) {
            System.out.println("Usage: VerSig publickeyfile signaturefile datafile");
            }
        else try{

        // the rest of the code goes here

        } catch (Exception e) {
            System.err.println("Caught exception " + e.toString());
        }
    }

}
Notas:

Ozito