This library uses the JavaCC compiler compiler tool. The only files
needed to build the necessary classes are:

1. ASN1-002.jjt: a jjTree (part of the JavaCC tool) input file,
2. AsnObject.java: a Java interface,
3. PackageProperties.java: central repository for the lang sub-
   package specific properties,
4. SimpleNode: The implementation of the AsnObject interface.
5. Tag: An implementation of a Class to handle ASN.1 tags.

All other files can be safely deleted to make a new build which
can be done by:

1. running jjtree with ASN1-002.jjt as its input,
2. running javacc with ASN1-002.jj as its input; this file is
   generated by jjtree; finally
3. running javac on all the *.java generated files.


The ASN.1 grammar used in this kit is a subset of the ASN.1:1990
grammar specification. It is mainly intended as a proof of concept
for the design ideas behind the kit and a starting point for
integration in cryptix packages.

Comments and suggestions are welcomed. Please address them to
"Raif S. Naffah" <raif@fl.net.au> the maintainer of this kit.


cheers;
RSN