go-attestation/attest/test/fuzz.go
2019-10-08 16:09:51 +11:00

12 lines
152 B
Go

package test
import (
"github.com/google/go-attestation/attest"
)
func FuzzParseEventLog(data []byte) int {
attest.ParseEventLog(data)
return 0
}