mirror of
https://github.com/google/go-attestation.git
synced 2025-01-20 11:18:48 +00:00
12 lines
152 B
Go
12 lines
152 B
Go
package test
|
|
|
|
import (
|
|
"github.com/google/go-attestation/attest"
|
|
)
|
|
|
|
func FuzzParseEventLog(data []byte) int {
|
|
attest.ParseEventLog(data)
|
|
return 0
|
|
}
|
|
|