Skip to content

lorenzo-milicia/lmchecksum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About lmchecksum

lmchecksum is a small and simple CLI tool for computing hashes and checking the validity of a checksum.

Installation

You can install lmchecksum using go install:

go install go.lorenzomilicia.dev/lmchecksum/v2@latest

Checksum validation

To check the validity of a checksum run the command:

lmchecksum validate <file name> <checksum>

Hash generation

To generate the hash of a given file, use:

lmchecksum hash <file name>

The default hashing function used for both validate and hash is SHA-256

To read more check the full documentation.