rclone/vendor/storj.io/common/peertls/extensions/fuzz.go
2020-05-12 15:56:50 +00:00

30 lines
610 B
Go

// Copyright (C) 2020 Storj Labs, Inc.
// See LICENSE for copying information.
// +build gofuzz
package extensions
// To run fuzzing tests:
//
// clone github.com/storj/fuzz-corpus
//
// Install fuzzing tools:
// GO111MODULE=off go get github.com/dvyukov/go-fuzz/...
//
// Build binaries:
// go-fuzz-build .
//
// Run with test corpus:
// go-fuzz -bin extensions-fuzz.zip -workdir $FUZZCORPUS/peertls/extensions
// Fuzz implements a simple fuzz test for revocationDecoder.
func Fuzz(data []byte) int {
var dec revocationDecoder
_, err := dec.decode(data)
if err != nil {
return 0
}
return 1
}