source: java/Dumper.java

Last change on this file was ea3bddc, checked in by Ted Faber <faber@…>, 13 years ago

ASN1 dumper to see what bouncy castle sees.

  • Property mode set to 100644
File size: 268 bytes
Line 
1import org.bouncycastle.asn1.util.Dump;
2
3public class Dumper {
4    static public void main(String[] args) {
5        try {
6            org.bouncycastle.asn1.util.Dump.main(args);
7        }
8        catch (Exception e) {
9            System.err.println(e);
10            System.exit(20);
11        }
12        System.exit(0);
13    }
14}
Note: See TracBrowser for help on using the repository browser.