go-attestation/attest/test/fuzz.go

12 lines
152 B
Go
Raw Normal View History

2019-10-08 04:38:05 +00:00
package test
import (
"github.com/google/go-attestation/attest"
)
func FuzzParseEventLog(data []byte) int {
attest.ParseEventLog(data)
return 0
}