constellation/internal/attestation/aws/validator.go
Daniel Weiße 3467df6b69 Move attestation, atls and oid packages to internal directory
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
2022-06-08 17:17:06 +02:00

14 lines
232 B
Go

package aws
import (
"github.com/edgelesssys/constellation/internal/oid"
)
type Validator struct {
oid.AWS
}
func (a *Validator) Validate(attDoc []byte, nonce []byte) ([]byte, error) {
panic("aws validator not implemented")
}