mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
17 lines
286 B
Go
17 lines
286 B
Go
// Fuzz testing for package aliases.
|
|
|
|
// +build gofuzz
|
|
|
|
package auth
|
|
|
|
func Fuzz(data []byte) int {
|
|
// user, domain, passwd, err := DecodeResponse(string(data))
|
|
interesting := 0
|
|
_, _, _, err := DecodeResponse(string(data))
|
|
if err == nil {
|
|
interesting = 1
|
|
}
|
|
|
|
return interesting
|
|
}
|