mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
3467df6b69
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
12 lines
217 B
Go
12 lines
217 B
Go
package aws
|
|
|
|
import "github.com/edgelesssys/constellation/internal/oid"
|
|
|
|
type Issuer struct {
|
|
oid.AWS
|
|
}
|
|
|
|
func (i *Issuer) Issue(userData []byte, nonce []byte) ([]byte, error) {
|
|
panic("aws issuer not implemented")
|
|
}
|