126127128129130131132133134135136
// Check the encoding ByteBuffer bb = ByteBuffer.allocate( adMandatoryForKdc.computeLength() ); try { bb = adMandatoryForKdc.encode( bb ); // Check the length assertEquals( 0x24, bb.limit() ); String encodedPdu = Strings.dumpBytes( bb.array() );
101102103104105106107108109110111
// Check the encoding ByteBuffer bb = ByteBuffer.allocate( adMandatoryForKdc.computeLength() ); try { bb = adMandatoryForKdc.encode( bb ); // Check the length assertEquals( 0x24, bb.limit() ); String encodedPdu = Strings.dumpBytes(bb.array());