config.go 525 字节
Newer Older
1 2 3
package configs // import "github.com/opencontainers/runc/libenclave/configs"

type InitEnclaveConfig struct {
4 5 6
	Type                  string `json:"type"`
	Path                  string `json:"path"`
	Args                  string `json:"args"`
7
	IsProductEnclave      uint32 `json:"is_product_enclave"`
8
	RaType                uint32 `json:"ra_type"`
9 10
	RaEpidSpid            string `json:"ra_epid_spid"`
	RaEpidSubscriptionKey string `json:"ra_epid_subscription_key"`
11
	RaEpidIsLinkable      uint32 `json:"ra_epid_is_linkable"`
12
}