// wrong content: content is not 0x01 or 0xFF
new byte[] { 0x01, 0x01, 0x33 } };
for (int i = 0; i < invalid.length; i++) {
try {
DerInputStream in = new DerInputStream(invalid[i]);
ASN1Boolean.getInstance().decode(in);
fail("No expected ASN1Exception for: " + i);
} catch (ASN1Exception e) {
}
}