Skip to content

Commit

Permalink
Fix tests for TPM 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hslatman committed Jan 13, 2023
1 parent a3f530a commit 0ad94dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions attest/tpm12_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ func (t *trousersTPM) loadKey(opaqueBlob []byte) (*Key, error) {
return nil, fmt.Errorf("not implemented")
}

func (t *trousersTPM) deleteKey(opaqueBlob []byte) (*Key, error) {
return nil, fmt.Errorf("not implemented")
func (t *trousersTPM) deleteKey(opaqueBlob []byte) error {
return fmt.Errorf("not implemented")
}

func (t *trousersTPM) newAK(opts *AKConfig) (*AK, error) {
Expand Down

0 comments on commit 0ad94dd

Please sign in to comment.