/**
  * Gets a CRC checksum for the content of a file
  */
 private static long GetFileCRC(Stream is1)
 {
     CRC32 crc = new CRC32();
     return crc.StreamCRC(is1);
 }