source: java/Dumper.java @ ea3bddc

abac0-leakabac0-meicompt_changesgec13mei-idmei-rt0-nmei_rt0mei_rt2mei_rt2_fix_1meiyap-rt1meiyap1rt2tvf-new-xml
Last change on this file since ea3bddc 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.