mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-29 15:34:21 +08:00
Change project structure to a Maven Java project + Refactor (#2816)
This commit is contained in:

committed by
GitHub

parent
8e533d2617
commit
9fb3364ccc
31
src/main/java/com/thealgorithms/others/CRC32.java
Normal file
31
src/main/java/com/thealgorithms/others/CRC32.java
Normal file
@ -0,0 +1,31 @@
|
||||
package com.thealgorithms.others;
|
||||
|
||||
import java.util.BitSet;
|
||||
|
||||
/**
|
||||
* Generates a crc32 checksum for a given string or byte array
|
||||
*/
|
||||
public class CRC32 {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(Integer.toHexString(crc32("Hello World")));
|
||||
}
|
||||
|
||||
public static int crc32(String str) {
|
||||
return crc32(str.getBytes());
|
||||
}
|
||||
|
||||
public static int crc32(byte[] data) {
|
||||
BitSet bitSet = BitSet.valueOf(data);
|
||||
int crc32 = 0xFFFFFFFF; // initial value
|
||||
for (int i = 0; i < data.length * 8; i++) {
|
||||
if (((crc32 >>> 31) & 1) != (bitSet.get(i) ? 1 : 0)) {
|
||||
crc32 = (crc32 << 1) ^ 0x04C11DB7; // xor with polynomial
|
||||
} else {
|
||||
crc32 = (crc32 << 1);
|
||||
}
|
||||
}
|
||||
crc32 = Integer.reverse(crc32); // result reflect
|
||||
return crc32 ^ 0xFFFFFFFF; // final xor value
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user