2017-04-07 21:51:56 -07:00
|
|
|
package exportable
|
|
|
|
|
2022-05-22 19:59:20 -04:00
|
|
|
import common "github.com/go-i2p/go-i2p/lib/common/router_identity"
|
2017-04-07 21:51:56 -07:00
|
|
|
|
|
|
|
func Fuzz(data []byte) int {
|
|
|
|
router_identity, _, _ := common.ReadRouterIdentity(data)
|
|
|
|
router_identity.Certificate()
|
2024-11-11 18:52:43 -05:00
|
|
|
// router_identity.publicKey()
|
|
|
|
// router_identity.signingPublicKey()
|
2017-04-07 21:51:56 -07:00
|
|
|
return 0
|
|
|
|
}
|