Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.03 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.03 KB

gossdeep

Go version of ssdeep [http://ssdeep.sourceforge.net/].

Status

GoDoc

Installation

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"
)

Usage

hash, err := HashString("test")
if err != nil {
        t.Fatal(err)
}

Contact me

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

About

Written by remco_verhoef.

License

BSD 3-Clause license, as Go language.