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

shz.core.hash.IMdHash Maven / Gradle / Ivy

There is a newer version: 2024.0.2
Show newest version
package shz.core.hash;

import java.io.File;
import java.io.InputStream;
import java.net.URL;
import java.nio.file.Path;

public interface IMdHash {
    byte[] hash(byte[] bytes);

    byte[] hash(InputStream is);

    byte[] hash(URL url);

    byte[] hash(Path path);

    byte[] hash(File file);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy