2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-01-19 09:57:50 -05:00
|
|
|
/*
|
|
|
|
This package deals with the low level attestation and verification logic of Constellation nodes.
|
|
|
|
|
|
|
|
General tpm attestation code that is not subjective to a single platform should go into the vtpm package.
|
|
|
|
Since attestation capabilities can differ between platforms, the attestation code should go into a subpackage for that respective platform.
|
|
|
|
|
|
|
|
We commonly implement the following two interfaces for a platform:
|
|
|
|
|
|
|
|
// Issuer issues an attestation document.
|
|
|
|
type Issuer interface {
|
|
|
|
oid.Getter
|
|
|
|
Issue(userData []byte, nonce []byte) (quote []byte, err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validator is able to validate an attestation document.
|
|
|
|
type Validator interface {
|
|
|
|
oid.Getter
|
|
|
|
Validate(attDoc []byte, nonce []byte) ([]byte, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
Attestation code for new platforms needs to implement these two interfaces.
|
|
|
|
*/
|
2022-07-26 04:58:39 -04:00
|
|
|
package attestation
|
|
|
|
|
|
|
|
import (
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/crypto"
|
2022-07-26 04:58:39 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// clusterIDContext is the value to use for info when deriving the cluster ID.
|
|
|
|
clusterIDContext = "clusterID"
|
|
|
|
// MeasurementSecretContext is the value to use for info
|
|
|
|
// when deriving the measurement secret from the master secret.
|
|
|
|
MeasurementSecretContext = "measurementSecret"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DeriveClusterID derives the cluster ID from a salt and secret value.
|
2022-07-29 03:52:47 -04:00
|
|
|
func DeriveClusterID(secret, salt []byte) ([]byte, error) {
|
2023-01-16 05:19:03 -05:00
|
|
|
return crypto.DeriveKey(secret, salt, []byte(crypto.DEKPrefix+clusterIDContext), crypto.DerivedKeyLengthDefault)
|
2022-07-26 04:58:39 -04:00
|
|
|
}
|