mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-04 13:32:52 -04:00
12 lines
263 B
Go
12 lines
263 B
Go
package exportable
|
|
|
|
import "github.com/hkparker/go-i2p/lib/common"
|
|
|
|
func Fuzz(data []byte) int {
|
|
router_identity, _, _ := common.ReadRouterIdentity(data)
|
|
router_identity.Certificate()
|
|
router_identity.PublicKey()
|
|
router_identity.SigningPublicKey()
|
|
return 0
|
|
}
|