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 13:47:57 +02: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 13:57:40 +02:00
panic("aws validator not implemented")
}