mirror of
https://github.com/google/go-attestation.git
synced 2025-01-03 11:44:17 +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
|
||
|
}
|
||
|
|