Skip to content

Commit 4589dad

Browse files
committed
Linux 2.9 Open Source Gold Release
Fixed bugs. Signed-off-by: Li, Xun <[email protected]>
1 parent e0a51c4 commit 4589dad

File tree

2,443 files changed

+29366
-489489
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,443 files changed

+29366
-489489
lines changed

License.txt

Lines changed: 301 additions & 301 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
# Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -29,7 +29,7 @@
2929
#
3030
#
3131

32-
DCAP_VER?= 1.4
32+
DCAP_VER?= 1.5
3333
DCAP_DOWNLOAD_BASE ?= https://github.com/intel/SGXDataCenterAttestationPrimitives/archive
3434

3535
CHECK_OPT :=
@@ -69,13 +69,24 @@ endif
6969
psw: $(CHECK_OPT)
7070
$(MAKE) -C psw/ USE_OPT_LIBS=$(USE_OPT_LIBS)
7171

72-
sdk:
72+
sdk_no_mitigation:
7373
$(MAKE) -C sdk/ USE_OPT_LIBS=$(USE_OPT_LIBS)
7474

75+
sdk:
76+
$(MAKE) -C sdk/ clean
77+
$(MAKE) -C sdk/ MODE=$(MODE) MITIGATION-CVE-2020-0551=LOAD
78+
$(MAKE) -C sdk/ clean
79+
$(MAKE) -C sdk/ MODE=$(MODE) MITIGATION-CVE-2020-0551=CF
80+
$(MAKE) -C sdk/ clean
81+
$(MAKE) -C sdk/ MODE=$(MODE)
82+
7583
# Generate SE SDK Install package
76-
sdk_install_pkg: sdk
84+
sdk_install_pkg_no_mitigation: sdk_no_mitigation
7785
./linux/installer/bin/build-installpkg.sh sdk
7886

87+
sdk_install_pkg: sdk
88+
./linux/installer/bin/build-installpkg.sh sdk cve-2020-0551
89+
7990
psw_install_pkg: psw
8091
./linux/installer/bin/build-installpkg.sh psw
8192

README.md

Lines changed: 3 additions & 8 deletions

SampleCode/Cxx11SGXDemo/App/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/App/App.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/App/TrustedLibrary/Libcxx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/Enclave/Enclave.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/Enclave/Enclave.edl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/Enclave/Enclave.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/Enclave/TrustedLibrary/Libcxx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/Enclave/TrustedLibrary/Libcxx.edl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/Cxx11SGXDemo/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
# Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/App/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/App/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
# Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -74,7 +74,7 @@ SGX_INC := -I$(SGX_SDK)/include
7474

7575
App.o: App.cpp
7676
@$(CXX) $(CXXFLAGS) -c $< -o $@
77-
@echo "CC <= $<"
77+
@echo "CXX <= $<"
7878

7979
UntrustedEnclaveMessageExchange.o: UntrustedEnclaveMessageExchange.cpp
8080
@$(CXX) $(CXXFLAGS) -c $< -o $@

SampleCode/LocalAttestation/App/UntrustedEnclaveMessageExchange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/App/UntrustedEnclaveMessageExchange.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppInitiator/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppInitiator/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
# Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -75,7 +75,7 @@ SGX_COMMON_CFLAGS := -I$(SGX_SDK)/include
7575

7676
UntrustedEnclaveMessageExchange.o: UntrustedEnclaveMessageExchange.cpp
7777
@$(CXX) $(CXXFLAGS) -c $< -o $@
78-
@echo "CXX <= $<"
78+
@echo "CC <= $<"
7979

8080
App.o: App.cpp
8181
@$(CXX) $(CXXFLAGS) -c $< -o $@

SampleCode/LocalAttestation/AppInitiator/UntrustedEnclaveMessageExchange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppInitiator/UntrustedEnclaveMessageExchange.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppInitiator/datatypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/App.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/CPServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/CPServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/CPTask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/CPTask.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
# Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/Queue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/Thread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/AppResponder/Thread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/EnclaveInitiator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/EnclaveInitiator.edl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/EnclaveMessageExchange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/EnclaveMessageExchange.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
# Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/Utility_E1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/Utility_E1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveInitiator/datatypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/EnclaveMessageExchange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/EnclaveMessageExchange.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/EnclaveResponder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/EnclaveResponder.edl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
# Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/Utility_E2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/Utility_E2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/EnclaveResponder/datatypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/Include/cpdef.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

SampleCode/LocalAttestation/Include/datatypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2011-2019 Intel Corporation. All rights reserved.
2+
* Copyright (C) 2011-2020 Intel Corporation. All rights reserved.
33
*
44
* Redistribution and use in source and binary forms, with or without
55
* modification, are permitted provided that the following conditions

0 commit comments

Comments
 (0)