Skip to content

Calculates hashes of a collection of files and directories

License

Notifications You must be signed in to change notification settings

welandaz/filehash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

filehash

Calculates hashes of a collection of files and directories

Example

final HashProducer hashProducer = HashProducer
                                      .path(Paths.get("my_path")
                                      .hash(Hash.SHA512)
                                      .byteArraySize(4096);

hashProducer.toFile(Paths.get("result_path")); //root path, where result will be written 
    // OR
final Map<Path, String> hashes = hashProducer.toMap(); // in-memory hashmap with results

About

Calculates hashes of a collection of files and directories

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages