https://github.com/dutchcoders/gossdeep
https://github.com/dutchcoders/gossdeep
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dutchcoders/gossdeep
- Owner: dutchcoders
- License: mit
- Created: 2015-05-08T22:00:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2020-11-20T07:33:59.000Z (over 5 years ago)
- Last Synced: 2024-06-19T00:39:01.437Z (about 2 years ago)
- Language: Go
- Size: 5.86 KB
- Stars: 20
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gossdeep
Go version of ssdeep [http://ssdeep.sourceforge.net/].
## Status
[](https://godoc.org/github.com/dutchcoders/gossdeep)
[1]: https://travis-ci.org/dutchcoders/gossdeep.png
[2]: https://travis-ci.org/dutchcoders/gossdeep
## 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](https://twitter.com/remco_verhoef)
## About
Written by [remco_verhoef](http://dutchcoders.io).
## License
[BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license, as [Go language](http://golang.org/LICENSE).