All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dellroad.lzma.client.SevenZip.CRC Maven / Gradle / Ivy

Go to download

gwt-lzma is a GWT module that implements the Lempel-Ziv-Markov chain (LZMA) compression algorithm. This is a generic compression library, i.e., compression in Javascript, not just compression of Javascript (i.e., "minification").

There is a newer version: 1.2-8
Show newest version
// org.dellroad.lzma.client.SevenZip/CRC.java

package org.dellroad.lzma.client.SevenZip;

public class CRC
{
	static public int[] Table = new int[256];
	
	static
	{
		for (int i = 0; i < 256; i++)
		{
			int r = i;
			for (int j = 0; j < 8; j++)
				if ((r & 1) != 0)
					r = (r >>> 1) ^ 0xEDB88320;
				else
					r >>>= 1;
			Table[i] = r;
		}
	}
	
	int _value = -1;
	
	public void Init()
	{
		_value = -1;
	}
	
	public void Update(byte[] data, int offset, int size)
	{
		for (int i = 0; i < size; i++)
			_value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
	}
	
	public void Update(byte[] data)
	{
		int size = data.length;
		for (int i = 0; i < size; i++)
			_value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
	}
	
	public void UpdateByte(int b)
	{
		_value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8);
	}
	
	public int GetDigest()
	{
		return _value ^ (-1);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy