mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-04 05:26:51 -04:00
11 lines
201 B
Go
11 lines
201 B
Go
package exportable
|
|
|
|
import "github.com/hkparker/go-i2p/lib/common"
|
|
|
|
func Fuzz(data []byte) int {
|
|
destination := common.Destination(data)
|
|
destination.Base32Address()
|
|
destination.Base64()
|
|
return 0
|
|
}
|