Home | History | Annotate | Download | only in SevenZip

Lines Matching refs:CRC

116 		public CRC CRC = new CRC();

120 CRC.Init();
124 return CRC.GetDigest();
128 CRC.Update(b);
132 CRC.Update(b, off, len);
136 CRC.UpdateByte(b);
321 CRC crc = new CRC();
322 crc.Init();
323 crc.Update(rg.Buffer, 0, rg.BufferSize);
370 if (crcOutStream.GetDigest() != crc.GetDigest())
371 throw (new Exception("CRC Error"));