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