traefik/vendor/github.com/tv42/zbase32/fuzz.go

11 lines
145 B
Go
Raw Normal View History

2017-02-07 21:33:23 +00:00
// +build gofuzz
package zbase32
func Fuzz(data []byte) int {
if _, err := DecodeString(string(data)); err != nil {
return 0
}
return 1
}