2017-04-07 21:51:56 -07:00
|
|
|
package exportable
|
|
|
|
|
2021-04-19 20:43:37 -04:00
|
|
|
import "github.com/go-i2p/go-i2p/lib/common"
|
2017-04-07 21:51:56 -07:00
|
|
|
|
|
|
|
func Fuzz(data []byte) int {
|
|
|
|
cert := common.Certificate(data)
|
|
|
|
cert.Data()
|
|
|
|
cert.Length()
|
|
|
|
cert.Type()
|
|
|
|
return 0
|
|
|
|
}
|