Categorygithub.com/posener/fuzzing
repositorypackage
0.0.0-20200410111456-53bd556f68e2
Repository: https://github.com/posener/fuzzing.git
Documentation: pkg.go.dev

# README

fuzzing

codecov GoDoc

Package fuzzing enables easy fuzzing with go-fuzz.

The Fuzz object provides functions for generating consistent Go primitive values from a given fuzzed bytes slice. The generated values are promised to be consistent from identical slices. They are also correlated to the given fuzzed slice to enable fuzzing exploration.

For an example on how to use this library with go-fuzz, see ./example_fuzz.go In order to test the example, run in the project directory:

$ go get -u github.com/dvyukov/go-fuzz/go-fuzz github.com/dvyukov/go-fuzz/go-fuzz-build
$ go-fuzz-build
$ go-fuzz -testoutput

Examples

f := New([]byte{1, 2, 3})
i := f.Int()
fmt.Println(i)

Output:

3851489450890114710

Readme created from Go doc with goreadme