dos.close();
byte[] buf=outstream.toByteArray();
ByteArrayInputStream instream=new ByteArrayInputStream(buf);
DataInputStream dis=new DataInputStream(instream);
Digest tmp=new Digest();
tmp.readFrom(dis);
assertEquals(d, tmp);
}
public void testSerializedSize() throws Exception {
long len=d.serializedSize();