mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-05 09:35:24 -05:00
14 lines
232 B
Go
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")
|
|
}
|