About 50 results
Open links in new tab
  1. How is a CRC32 checksum calculated? - Stack Overflow

    Maybe I'm just not seeing it, but CRC32 seems either needlessly complicated, or insufficiently explained anywhere I could find on the web. I understand that it is the remainder from a non-carry-ba...

  2. How does the CRC-32 algorithm work? - Stack Overflow

    The CRC-32 algorithm considers the input as a big poynomial in base 2. Each input bit is the coefficient of one power of x. For example, the last bit is the coefficient of x^0, the last but one bit is the …

  3. .net - How do I calculate CRC32 of a string - Stack Overflow

    Aug 11, 2008 · How do I calculate the CRC32 (Cyclic Redundancy Checksum) of a string in .NET?

  4. hash - CRC32 vs CRC32C? - Stack Overflow

    Oct 17, 2014 · The CRC32 found in zip and a lot of other places uses the polynomial 0x04C11DB7; its reversed form 0xEDB88320 is perhaps better known, being often found in little-endian …

  5. How to calculate CRC32 checksum from a string? - Stack Overflow

    Jun 28, 2017 · I used crc32 to calculate checksums from strings a long time ago, but I cannot remember how I did it. echo -n "LongString" | crc32 # no output I found a solution to calculate them with

  6. Calculate CRC32 correctly with Python - Stack Overflow

    I'm trying to calculate/generate the CRC32 hash of some random strings using Python but they do not match the values I generate from online sources. Here is what I'm doing on my PC, >>> im...

  7. crc32 - Data Length vs CRC Length - Stack Overflow

    I've seen 8-bit, 16-bit, and 32-bit CRCs. At what point do I need to jump to a wider CRC? My gut reaction is that it is based on the data length: 1-100 bytes: 8-bit CRC 101 - 1000 bytes: 16-bit CRC

  8. CRC32 C or C++ implementation - Stack Overflow

    Nov 20, 2008 · I'm looking for an implementation of CRC32 in C or C++ that is explicitly licensed as being no cost or public domain. The implementation here seems nice, but the only thing it says about …

  9. Can CRC32 be used as a hash function? - Stack Overflow

    Jun 8, 2012 · CRC32 was designed for detecting damaged files, not hashing. And as Mark mentioned it wont protect your files from modification, since hackers can still modify them at will by just inserting a …

  10. MD5 vs CRC32: Which one's better for common use?

    Apr 20, 2013 · Now CRC32: CRC is an error-detecting code So, as you can see, CRC32 is not a hashing algorithm. That means you should not use it for hashing, because it was not built for that. …