Go version of ssdeep [http://ssdeep.sourceforge.net/].
Installation requires specific CGO_LDFLAGS_ALLOW
be set before both go get
and compilation.
export CGO_LDFLAGS_ALLOW="^-[Il].*$"
go get github.com/dutchcoders/gossdeep
// use in your .go code
import (
"github.com/dutchcoders/gossdeep"
)
hash, err := HashString("test")
if err != nil {
t.Fatal(err)
}
If I can help you, you have an idea or you are using gossdeep in your projects, don't hesitate to drop me a line (or a pull request): @remco_verhoef
Written by remco_verhoef.
BSD 3-Clause license, as Go language.