constellation/internal/attestation/aws/issuer.go

18 lines
300 B
Go
Raw Normal View History

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package aws
import "github.com/edgelesssys/constellation/internal/oid"
type Issuer struct {
oid.AWS
}
func (i *Issuer) Issue(userData []byte, nonce []byte) ([]byte, error) {
2022-04-21 11:57:40 +00:00
panic("aws issuer not implemented")
}