Intel® Software Guard Extensions SSL
Introduction
The Intel® Software Guard Extensions SSL (Intel® SGX SSL) cryptographic library is intended to provide cryptographic services for Intel® Software Guard Extensions (SGX) enclave applications. The Intel® SGX SSL cryptographic library is based on the underlying OpenSSL* Open Source project, providing a full-strength general purpose cryptography library. Supported OpenSSL version is 1.1.1q. To work with 1.1.0 version please use "openssl_1.1.0" branch.
In order to build Intel® SGX SSL libraries based on old OpenSSL version, checkout the tag with the corresponding versioning, e.g. lin_2.5_1.1.1c. Tag naming convention [lin/win]_<Intel(R) SGX SDK VERSION>_<OpenSSL VERSION>
.
License
See License.txt for details.
Documentation
- For details on library architecture: Architecture overview
- For details on using the libraries, please refer to the:
Build Intel® SGX SSL package
Windows
Prerequisites
- Microsoft Visual Studio 2019
- Perl
- NASM (Netwide Assembler)
- Intel(R) SGX Windows latest release, including SDK, PSW, and driver
(Note: Perl, NASM need to be included in machine's PATH variable)
To build Intel® SGX SSL package in Windows OS:
- Download OpenSSL package into openssl_source/ directory. (tar.gz package, e.g. openssl-1.1.1q.tar.gz)
- Download and install latest SGX SDK from Intel Developer Zone. You can find installation guide from the same website.
- Change the directory to the SGXSSL path and enter the following command:
build_all.cmd
This will build the Intel® SGX SSL libraries (libsgx_tsgxssl.lib, libsgx_usgxssl.lib, libsgx_tsgxssl_crypto.lib), which can be found in package/lib/{Win32|X64}/{debug|release}/. And the version with CVE-2020-0551 Mitigation enabled can be found in package/lib/X64/{CVE-2020-0551-CF-Release|CVE-2020-0551-Load-Release}/.
Linux
Prerequisites
- Perl
- Toolchain with mitigation (refer to SGX Linux README)
- Intel(R) SGX Linux latest release, including SDK, PSW, and driver
To build Intel® SGX SSL package in Linux OS:
- Download OpenSSL 1.1.1q package into openssl_source/ directory. (tar.gz package, e.g. openssl-1.1.1q.tar.gz)
- Download and install latest SGX SDK from 01.org. You can find installation guide in the same website.
- Source SGX SDK's environment variables.
- Cd to Linux/ directory and run:
make all test
This will build and test the Intel® SGX SSL libraries (libsgx_tsgxssl.a, libsgx_usgxssl.a, libsgx_tsgxssl_crypto.a), which can be found in package/lib64/. And the Intel® SGX SSL trusted libraries (libsgx_tsgxssl.lib, libsgx_tsgxssl_crypto.lib) with CVE-2020-0551 Mitigation enabled can be found in package/lib64/{cve_2020_0551_cf|cve_2020_0551_load}/.
make
flags:
Available - DEBUG={1,0}: Libraries build mode, with debug symbols or without. Default
0
. - NO_THREADS={1,0}: Enable
no-threads
in the OpenSSL's build configuration options. Default0
. - SGX_MODE={HW,SIM}: User can take
SIM
to run the unit test on non-SGX platform if necessary. DefaultHW
. - DESTDIR=<PATH>: Directory realpath to install Intel® SGX SSL libraries in. Default
/opt/intel/sgxssl/
. - VERBOSE={1,0}: Makefile verbose mode. Print compilation commands before executing it. Default
0
.
To install Intel® SGX SSL libraries in Linux OS, run:
make all test
sudo make install