mirror of
https://github.com/traefik/traefik.git
synced 2026-06-18 11:29:50 +03:00
11 lines
145 B
Go
11 lines
145 B
Go
// +build gofuzz
|
|
|
|
package zbase32
|
|
|
|
func Fuzz(data []byte) int {
|
|
if _, err := DecodeString(string(data)); err != nil {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|