corda/sdk/sign_tool/SignTool
llly 6662022bf8 Linux 1.7 Open Source Gold release
Signed-off-by: Li, Xun <xun.li@email.com>
2016-12-20 09:47:15 +09:00
..
elf_helper.h Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00
enclave_creator_sign.cpp update enclave_creator to align with driver API change 2016-10-24 12:27:44 +08:00
enclave_creator_sign.h update enclave_creator to align with driver API change 2016-10-24 12:27:44 +08:00
Makefile Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00
manage_metadata.cpp Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00
manage_metadata.h Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00
parse_key_file.cpp Upgrade to Linux 1.6 gold release 2016-09-19 14:55:22 +08:00
parse_key_file.h Initial release of Intel SGX for Linux. 2016-06-23 18:51:53 -04:00
README.txt Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00
sign_tool.cpp Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00
util_st.cpp Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00
util_st.h Linux 1.7 Open Source Gold release 2016-12-20 09:47:15 +09:00

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.
        -ignore-rel-error   By default, sgx_sign provides an error for enclaves with 
                            text relocations. You can ignore the error and continue signing
                            by providing this option. But it is recommended you eliminate the
                            text relocations instead of bypassing the error with this option.