use of es.gob.jmulticard.asn1.TlvException in project jmulticard by ctt-gob-es.
the class TestDerBoolean method testGetBytes.
/**
* Test method for {@link es.gob.jmulticard.asn1.DecoderObject#getBytes()}.
* @throws TlvException Si no se puede crear el TLV.
* @throws Asn1Exception Si falla la creación del tipo ASN1.
*/
public static final void testGetBytes() throws Asn1Exception, TlvException {
final DerBoolean db = new DerBoolean();
db.setDerValue(new byte[] { (byte) 0x01, (byte) 0x01, (byte) 0x00 });
// $NON-NLS-1$
Assert.assertEquals("010100", HexUtils.hexify(db.getBytes(), false));
}
Aggregations