mirror of
https://github.com/google/go-attestation.git
synced 2024-12-19 13:08:04 +00:00
2bc8d58530
A go-fuzz target for the ParseEventLog function. It has been tested with go-fuzz and go-fuzz + libFuzzer. oss-fuzz requires a statically built fuzzer binary, so `gofuzz` build tags are added to avoid building files that depend on go-tspi. A mock tpm_other.go file is also included to satisfy the `platformTPM` interface.
26 lines
739 B
Go
26 lines
739 B
Go
// Copyright 2019 Google Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
// use this file except in compliance with the License. You may obtain a copy of
|
|
// the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing permissions and limitations under
|
|
// the License.
|
|
|
|
// +build gofuzz
|
|
|
|
package attest
|
|
|
|
func FuzzParseEventLog(data []byte) int {
|
|
_, err := ParseEventLog(data)
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|