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

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

The newest version!
package java.util.zip;

public interface Checksum {
    long getValue();

    void reset();

    void update(int b);

    void update(byte[] b, int off, int len);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy