Skip to content

Commit fffe87e

Browse files
authored
Merge pull request #89 from aws/fix-windows-tpm-signer-function-signature
Fix GetTPMv2Signer function signature in Windows file
2 parents 2ccf040 + 00ee1c2 commit fffe87e

File tree

4 files changed

+1
-1
lines changed

4 files changed

+1
-1
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

aws_signing_helper/tpm_signer_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ import (
66
"errors"
77
)
88

9-
func GetTPMv2Signer(certIdentifier CertIdentifier) (signer Signer, signingAlgorithm string, err error) {
9+
func GetTPMv2Signer(opts GetTPMv2SignerOpts) (signer Signer, signingAlgorithm string, err error) {
1010
return nil, "", errors.New("unable to use tpm v2 signer on windows")
1111
}

0 commit comments

Comments
 (0)