mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-11 17:56:52 -04:00
11 lines
228 B
Go
11 lines
228 B
Go
package exportable
|
|
|
|
import common "github.com/go-i2p/go-i2p/lib/common/destination"
|
|
|
|
func Fuzz(data []byte) int {
|
|
destination, _, _ := common.ReadDestination(data)
|
|
destination.Base32Address()
|
|
destination.Base64()
|
|
return 0
|
|
}
|