2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-04-21 10:27:34 -04:00
|
|
|
package qemu
|
|
|
|
|
|
|
|
import (
|
2023-03-21 07:46:49 -04:00
|
|
|
"context"
|
2022-04-21 10:27:34 -04:00
|
|
|
"io"
|
|
|
|
|
2023-03-08 08:13:57 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation"
|
2023-06-09 09:41:02 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/variant"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/vtpm"
|
2022-04-21 10:27:34 -04:00
|
|
|
tpmclient "github.com/google/go-tpm-tools/client"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Issuer for qemu TPM attestation.
|
|
|
|
type Issuer struct {
|
2023-03-29 03:30:13 -04:00
|
|
|
variant.QEMUVTPM
|
2022-04-21 10:27:34 -04:00
|
|
|
*vtpm.Issuer
|
|
|
|
}
|
|
|
|
|
2022-10-24 18:47:12 -04:00
|
|
|
// NewIssuer initializes a new QEMU Issuer.
|
2023-03-08 08:13:57 -05:00
|
|
|
func NewIssuer(log attestation.Logger) *Issuer {
|
2022-04-21 10:27:34 -04:00
|
|
|
return &Issuer{
|
|
|
|
Issuer: vtpm.NewIssuer(
|
|
|
|
vtpm.OpenVTPM,
|
|
|
|
tpmclient.AttestationKeyRSA,
|
2023-03-21 07:46:49 -04:00
|
|
|
func(context.Context, io.ReadWriteCloser, []byte) ([]byte, error) { return nil, nil },
|
2023-02-28 10:34:18 -05:00
|
|
|
log,
|
2022-04-21 10:27:34 -04:00
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|