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

java.util.zip.CRC32 Maven / Gradle / Ivy

The newest version!
package java.util.zip;

public class CRC32 implements Checksum {
    public CRC32() {}

    public long getValue() {
        return 0;
    }

    public void reset() {}

    public void update(int b) {}

    public void update(byte[] b, int off, int len) {}

    public void update(byte[] b) {}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy