Skip to content

Commit 1433630

Browse files
author
jinghe-INTC
authored
upgrade version string to 1.1.1u (#158)
Signed-off-by: Jing He <[email protected]>
1 parent 1068072 commit 1433630

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Linux/build_openssl.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
SGXSSL_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3838
echo $SGXSSL_ROOT
3939

40-
OPENSSL_VERSION=`ls $SGXSSL_ROOT/../openssl_source/*1.1.1t.tar.gz | head -1 | grep -o '[^/]*$' | sed -s -- 's/\.tar\.gz//'`
40+
OPENSSL_VERSION=`ls $SGXSSL_ROOT/../openssl_source/*1.1.1u.tar.gz | head -1 | grep -o '[^/]*$' | sed -s -- 's/\.tar\.gz//'`
4141
if [ "$OPENSSL_VERSION" == "" ]
4242
then
43-
echo "In order to run this script, OpenSSL 1.1.1t tar.gz package must be located in openssl_source/ directory."
43+
echo "In order to run this script, OpenSSL 1.1.1u.tar.gz package must be located in openssl_source/ directory."
4444
exit 1
4545
fi
4646
echo $OPENSSL_VERSION

Linux/sgx/libsgx_tsgxssl/tsgxssl_version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131

3232
// This string should be updated before every release!!
33-
#define STRFILEVER "1.1.1t"
33+
#define STRFILEVER "1.1.1u"
3434

3535
#define __CONCAT(x, y) x/**/y
3636

Linux/sgx/libsgx_usgxssl/usgxssl_version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131

3232
// This string should be updated before every release!!
33-
#define STRFILEVER "1.1.1t"
33+
#define STRFILEVER "1.1.1u"
3434

3535
#define __CONCAT(x, y) x/**/y
3636

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Introduction
55
------------
66
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.
77
The Intel® SGX SSL cryptographic library is based on the underlying OpenSSL* Open Source project, providing a full-strength general purpose cryptography library.
8-
Supported OpenSSL version is 1.1.1t.
8+
Supported OpenSSL version is 1.1.1u.
99

1010
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>``.
1111

@@ -35,7 +35,7 @@ Windows
3535
(Note: Perl, NASM need to be included in machine's PATH variable)
3636

3737
To build Intel® SGX SSL package in Windows OS:
38-
1. Download OpenSSL package into openssl_source/ directory. (tar.gz package, e.g. openssl-1.1.1t.tar.gz)
38+
1. Download OpenSSL package into openssl_source/ directory. (tar.gz package, e.g. openssl-1.1.1u.tar.gz)
3939
2. Download and install latest SGX SDK from [Intel Developer Zone](https://software.intel.com/en-us/sgx-sdk/download). You can find installation guide from the same website.
4040
3. Change the directory to the SGXSSL path and enter the following command:
4141
```
@@ -51,7 +51,7 @@ Linux
5151
- Intel(R) SGX Linux latest release, including SDK, PSW, and driver
5252

5353
To build Intel® SGX SSL package in Linux OS:
54-
1. Download OpenSSL 1.1.1t package into openssl_source/ directory. (tar.gz package, e.g. openssl-1.1.1t.tar.gz)
54+
1. Download OpenSSL 1.1.1u package into openssl_source/ directory. (tar.gz package, e.g. openssl-1.1.1u.tar.gz)
5555
2. Download and install latest SGX SDK from [01.org](https://01.org/intel-software-guard-extensions/downloads). You can find installation guide in the same website.
5656
3. Source SGX SDK's environment variables.
5757
4. Cd to Linux/ directory and run:

0 commit comments

Comments
 (0)