Files
Go_I2p/lib/common/fuzz/certificate/fuzz.go

12 lines
184 B
Go
Raw Normal View History

2017-04-07 21:51:56 -07:00
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
}