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