1 ///////////////////////////////////////////////////////////////////////////////
4 /// \brief Primitive CRC32 calculation tool
6 // Author: Lasse Collin
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
11 ///////////////////////////////////////////////////////////////////////////////
25 const size_t size
= fread(buf
, 1, sizeof(buf
), stdin
);
26 crc
= lzma_crc32(buf
, size
, crc
);
27 } while (!ferror(stdin
) && !feof(stdin
));
29 //printf("%08" PRIX32 "\n", crc);
31 // I want it little endian so it's easy to work with hex editor.
32 printf("%02" PRIX32
" ", crc
& 0xFF);
33 printf("%02" PRIX32
" ", (crc
>> 8) & 0xFF);
34 printf("%02" PRIX32
" ", (crc
>> 16) & 0xFF);
35 printf("%02" PRIX32
" ", crc
>> 24);