mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-06-16 05:44:45 -04:00
14 lines
240 B
Go
14 lines
240 B
Go
package exportable
|
|
|
|
import "github.com/go-i2p/go-i2p/lib/common"
|
|
|
|
func Fuzz(data []byte) int {
|
|
str, _, _ := common.ReadString(data)
|
|
str.Data()
|
|
str.Length()
|
|
str, _ = common.ToI2PString(string(data))
|
|
str.Data()
|
|
str.Length()
|
|
return 0
|
|
}
|