12 lines
211 B
Go
12 lines
211 B
Go
package exportable
|
|
|
|
import common "github.com/go-i2p/go-i2p/lib/common/certificate"
|
|
|
|
func Fuzz(data []byte) int {
|
|
cert, _, _ := common.ReadCertificate(data)
|
|
cert.Data()
|
|
cert.Length()
|
|
cert.Type()
|
|
return 0
|
|
}
|