// wrong content: is not encoded in minimum number of octets
new byte[] { 0x02, 0x02, (byte) 0xFF, (byte) 0x80 } };
for (int i = 0; i < invalid.length; i++) {
try {
DerInputStream in = new DerInputStream(invalid[i]);
ASN1Integer.getInstance().decode(in);
fail("No expected ASN1Exception for:" + i);
} catch (ASN1Exception e) {
}
}