constellation/internal/attestation/aws/validator.go

20 lines
318 B
Go
Raw Normal View History

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package aws
import (
2022-09-21 11:47:57 +00:00
"github.com/edgelesssys/constellation/v2/internal/oid"
)
type Validator struct {
oid.AWS
}
func (a *Validator) Validate(attDoc []byte, nonce []byte) ([]byte, error) {
2022-04-21 11:57:40 +00:00
panic("aws validator not implemented")
}