Top "Crc32" questions

A cyclic redundancy check (CRC) is an error-detecting code designed to detect accidental changes to raw computer data, and is commonly used in digital networks.

Fast CRC algorithm?

I want to create a 32 bit number out of an ASCII-string. CRC32 algorithm is exactly what I'm looking for but …

c++ c crc crc32
Implementing SSE 4.2's CRC32C in software

So I have a design which incorporates CRC32C checksums to ensure data hasn't been damaged. I decided to use …

c++ polynomial-math crc32
How to calculate crc32 checksum from a string on linux bash

I used crc32 to calculate checkcums from sting long time ago, but I cannot remember how I did it. echo …

bash checksum crc32
how to calculate CRC value for a file in C#.net?

i want to calculate the CRC value for a file using 32-bit algorithm in C#.net....

c# crc visual-c++ crc32
CRC32 checksum in Python with hex input

I'm wanting to calculate the CRC32 checksum of a string of hex values in python. I found zlib.crc32(data) …

python string hex checksum crc32
ruby: `read': Invalid argument -(Errno::EINVAL) at File.read

I'm doing a simple script to check crc of all files... require "zlib" exit if Object.const_defined?(:Ocra) files = …

ruby directory crc crc32
How to set STM32 to generate standard CRC32

I am trying to generate CRC with STM32L4 hardware modul. I would like to validate fatfs files so basically …

c microcontroller stm32 crc32
How can I calculate a CRC32 as a signed integer in C#?

I'm a PHP developer and a little out of my element in C#. In PHP, there's a crc32() function which …

c# hash crc32 hashalgorithm
How to create Uncompressed Zip archive in Java

I am using the Zip utility package of Java and wanted to know how to create a zip file with …

java zip crc32
the fastest way to create checksum for large files in python

i need to transfer large files across network and need to create checksum for them on hourly basis. so the …

python multithreading md5 crc32 hashlib