mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
9441de4c38
This release is used in conjunction with the linux-sgx-driver Intial release: https://github.com/01org/linux-sgx-driver commit-id: 0e865ce5e6b297a787bcdc12d98bada8174be6d7 Intel-id: 33399 Signed-off-by: Angie Chinchilla <angie.v.chinchilla@intel.com>
28 lines
1.4 KiB
Plaintext
28 lines
1.4 KiB
Plaintext
The sgx_sign generates the enclave signature and meta-data, and inserts the
|
|
information into the enclave file.
|
|
Meanwhile, the sgx_sign checks the enclave compatibility and provides the detail
|
|
information to users.
|
|
|
|
Usage:
|
|
sgx_sign <command> [options] file...
|
|
Commands:
|
|
sign Sign the enclave using the private key.
|
|
gendata Generate enclave signing material to be signed.
|
|
catsig Generate the signed enclave with the input signature
|
|
file, the public key and the enclave signing material.
|
|
Options:
|
|
-enclave Specify the enclave file to be signed.
|
|
It is a required option for the listed sgx_sign commands.
|
|
-key Specify the key file.
|
|
It is a required option for the sign and catsig commands.
|
|
-config Specify the configuration for the enclave.
|
|
-out Specify the output file.
|
|
It is a required option for the listed sgx_sign commands.
|
|
-sig Specify the signature file for the enclave signing
|
|
material.
|
|
It is a required option for the catsig command.
|
|
-unsigned Specify the enclave signing material generated by the
|
|
gendata command.
|
|
It is a required option for the catsig command.
|
|
|