14 lines
232 B
Go
Raw Normal View History

package aws
import (
"github.com/edgelesssys/constellation/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")
}