Popularity
4.1
Growing
Activity
0.0
Declining
86
3
17
Programming language: Go
License: MIT License
Tags:
Files
Latest version: v1.1.0
checksum alternatives and similar packages
Based on the "Files" category.
Alternatively, view checksum alternatives based on common mentions on social networks and blogs.
-
go-storage
A vendor-neutral storage library for Golang: Write once, run on every storage service. -
bigfile
Bigfile -- a file transfer system that supports http, rpc and ftp protocol https://bigfile.site -
go-exiftool
Golang wrapper for Exiftool : extract as much metadata as possible (EXIF, ...) from files (pictures, pdf, office documents, ...) -
skywalker
A package to allow one to concurrently go through a filesystem with ease -
concurrent-writer
Highly concurrent drop-in replacement for bufio.Writer -
fileconversion
A Go library to convert various file formats to plaintext and provide related functions -
shred
This is a libary to mimic the functionallity of the linux shred command. -
go-staticfiles
Collects assets (css, js, images...) from a different locations and tags file names with a hash for easy versioning and aggressive caching.
ONLYOFFICE Docs — document collaboration in your environment
Powerful document editing and collaboration in your app or environment. Ultimate security, API and 30+ ready connectors, SaaS or on-premises
Promo
www.onlyoffice.com
Do you think we are missing an alternative of checksum or a related project?
Popular Comparisons
README
checksum
Compute message digest, like MD5, SHA256 or SHA1, in Golang for potentially large files.
Usage
package main
import (
"fmt"
"github.com/codingsince1985/checksum"
)
func main() {
file := "/home/jerry/Downloads/ubuntu-20.04.2.0-desktop-amd64.iso"
md5, _ := checksum.MD5sum(file)
fmt.Println(md5)
sha256, _ := checksum.SHA256sum(file)
fmt.Println(sha256)
sha1, _ := checksum.SHA1sum(file)
fmt.Println(sha1)
}
License
checksum is distributed under the terms of the MIT license. See LICENSE for details.
*Note that all licence references and agreements mentioned in the checksum README section above
are relevant to that project's source code only.