2017-04-07 21:51:56 -07:00
|
|
|
package exportable
|
|
|
|
|
2022-05-22 19:59:20 -04:00
|
|
|
import common "github.com/go-i2p/go-i2p/lib/common/data"
|
2017-04-07 21:51:56 -07:00
|
|
|
|
|
|
|
func Fuzz(data []byte) int {
|
2022-05-22 19:59:20 -04:00
|
|
|
str := common.I2PString(data)
|
2017-04-07 21:51:56 -07:00
|
|
|
str.Data()
|
|
|
|
str.Length()
|
|
|
|
str, _ = common.ToI2PString(string(data))
|
|
|
|
str.Data()
|
|
|
|
str.Length()
|
|
|
|
return 0
|
|
|
|
}
|