enclave.go 294 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
package configs

// Define the types of enclave hardware
const (
	EnclaveHwDefault  string = ""
	EnclaveHwIntelSgx string = "intelSgx"
)

type Enclave struct {
	Type string `json:"type"`
	Path string `json:"path"`
	Args string `json:"args,omitempty"`
13
	Signer string `json:"signer,omitempty"`
14
}