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