add submodule to messaging agent
Showing
with
425294 additions
and
0 deletions
+425294
-0
- .gitmodules .gitmodules +3 -0
- ebc_enclave_messaging/.gitignore ebc_enclave_messaging/.gitignore +3 -0
- ebc_enclave_messaging/App/App.cpp ebc_enclave_messaging/App/App.cpp +250 -0
- ebc_enclave_messaging/App/App.h ebc_enclave_messaging/App/App.h +65 -0
- ebc_enclave_messaging/App/Ocall_implements.cpp ebc_enclave_messaging/App/Ocall_implements.cpp +192 -0
- ebc_enclave_messaging/App/Ocall_implements.h ebc_enclave_messaging/App/Ocall_implements.h +63 -0
- ebc_enclave_messaging/Enclave/Config.h ebc_enclave_messaging/Enclave/Config.h +33 -0
- ebc_enclave_messaging/Enclave/Enclave.config.xml ebc_enclave_messaging/Enclave/Enclave.config.xml +11 -0
- ebc_enclave_messaging/Enclave/Enclave.cpp ebc_enclave_messaging/Enclave/Enclave.cpp +102 -0
- ebc_enclave_messaging/Enclave/Enclave.edl ebc_enclave_messaging/Enclave/Enclave.edl +57 -0
- ebc_enclave_messaging/Enclave/Enclave.lds ebc_enclave_messaging/Enclave/Enclave.lds +9 -0
- ebc_enclave_messaging/Enclave/Enclave_private.pem ebc_enclave_messaging/Enclave/Enclave_private.pem +39 -0
- ebc_enclave_messaging/Enclave/Helpers.cpp ebc_enclave_messaging/Enclave/Helpers.cpp +395 -0
- ebc_enclave_messaging/Enclave/Helpers.h ebc_enclave_messaging/Enclave/Helpers.h +63 -0
- ebc_enclave_messaging/Enclave/InMemDatabase.cpp ebc_enclave_messaging/Enclave/InMemDatabase.cpp +146 -0
- ebc_enclave_messaging/Enclave/InMemDatabase.h ebc_enclave_messaging/Enclave/InMemDatabase.h +144 -0
- ebc_enclave_messaging/Enclave/Messaging.cpp ebc_enclave_messaging/Enclave/Messaging.cpp +244 -0
- ebc_enclave_messaging/Enclave/Messaging.h ebc_enclave_messaging/Enclave/Messaging.h +135 -0
- ebc_enclave_messaging/Enclave/MessagingInMem.cpp ebc_enclave_messaging/Enclave/MessagingInMem.cpp +147 -0
- ebc_enclave_messaging/Enclave/MessagingSqlite.cpp ebc_enclave_messaging/Enclave/MessagingSqlite.cpp +178 -0
- ebc_enclave_messaging/Enclave/Ocall_sqlite_wrappers.c ebc_enclave_messaging/Enclave/Ocall_sqlite_wrappers.c +348 -0
- ebc_enclave_messaging/Enclave/Openssl.h ebc_enclave_messaging/Enclave/Openssl.h +37 -0
- ebc_enclave_messaging/Enclave/SSLClient.cpp ebc_enclave_messaging/Enclave/SSLClient.cpp +244 -0
- ebc_enclave_messaging/Enclave/SSLServer.cpp ebc_enclave_messaging/Enclave/SSLServer.cpp +261 -0
- ebc_enclave_messaging/Enclave/SqliteDatabase.cpp ebc_enclave_messaging/Enclave/SqliteDatabase.cpp +151 -0
- ebc_enclave_messaging/Enclave/SqliteDatabase.h ebc_enclave_messaging/Enclave/SqliteDatabase.h +22 -0
- ebc_enclave_messaging/Enclave/Types.h ebc_enclave_messaging/Enclave/Types.h +75 -0
- ebc_enclave_messaging/Enclave/third_party/Hashmap.h ebc_enclave_messaging/Enclave/third_party/Hashmap.h +550 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/.gitignore ...lave_messaging/Enclave/third_party/OpenSSL_SGX/.gitignore +120 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/.travis-create-release.sh ...Enclave/third_party/OpenSSL_SGX/.travis-create-release.sh +10 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/.travis.yml ...ave_messaging/Enclave/third_party/OpenSSL_SGX/.travis.yml +59 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/ACKNOWLEDGMENTS ...messaging/Enclave/third_party/OpenSSL_SGX/ACKNOWLEDGMENTS +2 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/CHANGES ...enclave_messaging/Enclave/third_party/OpenSSL_SGX/CHANGES +11450 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/CHANGES.SSLeay ..._messaging/Enclave/third_party/OpenSSL_SGX/CHANGES.SSLeay +968 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/CONTRIBUTING ...ve_messaging/Enclave/third_party/OpenSSL_SGX/CONTRIBUTING +54 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Configure ...clave_messaging/Enclave/third_party/OpenSSL_SGX/Configure +2312 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/FAQ ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/FAQ +2 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/GitConfigure ...ve_messaging/Enclave/third_party/OpenSSL_SGX/GitConfigure +8 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/GitMake ...enclave_messaging/Enclave/third_party/OpenSSL_SGX/GitMake +5 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL ...enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL +367 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.DJGPP ...e_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.DJGPP +47 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.MacOS ...e_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.MacOS +72 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.NW ...lave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.NW +454 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.OS2 ...ave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.OS2 +31 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.VMS ...ave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.VMS +293 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.W32 ...ave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.W32 +325 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.W64 ...ave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.W64 +66 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.WCE ...ave_messaging/Enclave/third_party/OpenSSL_SGX/INSTALL.WCE +95 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/LICENSE ...enclave_messaging/Enclave/third_party/OpenSSL_SGX/LICENSE +127 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GUSI_Init.cpp ...aging/Enclave/third_party/OpenSSL_SGX/MacOS/GUSI_Init.cpp +62 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/CPStringUtils.cpp ...rd_party/OpenSSL_SGX/MacOS/GetHTTPS.src/CPStringUtils.cpp +2753 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/CPStringUtils.hpp ...rd_party/OpenSSL_SGX/MacOS/GetHTTPS.src/CPStringUtils.hpp +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/ErrorHandling.cpp ...rd_party/OpenSSL_SGX/MacOS/GetHTTPS.src/ErrorHandling.cpp +170 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/ErrorHandling.hpp ...rd_party/OpenSSL_SGX/MacOS/GetHTTPS.src/ErrorHandling.hpp +147 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/GetHTTPS.cpp ...e/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/GetHTTPS.cpp +209 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/MacSocket.cpp .../third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/MacSocket.cpp +1607 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/MacSocket.h ...ve/third_party/OpenSSL_SGX/MacOS/GetHTTPS.src/MacSocket.h +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/OpenSSL.mcp.hqx ...ing/Enclave/third_party/OpenSSL_SGX/MacOS/OpenSSL.mcp.hqx +4940 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/Randomizer.cpp ...ging/Enclave/third_party/OpenSSL_SGX/MacOS/Randomizer.cpp +476 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/Randomizer.h ...saging/Enclave/third_party/OpenSSL_SGX/MacOS/Randomizer.h +42 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/TODO ...lave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/TODO +18 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/_MWERKS_GUSI_prefix.h ...clave/third_party/OpenSSL_SGX/MacOS/_MWERKS_GUSI_prefix.h +9 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/_MWERKS_prefix.h ...ng/Enclave/third_party/OpenSSL_SGX/MacOS/_MWERKS_prefix.h +9 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/buildinf.h ...essaging/Enclave/third_party/OpenSSL_SGX/MacOS/buildinf.h +5 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/mklinks.as.hqx ...ging/Enclave/third_party/OpenSSL_SGX/MacOS/mklinks.as.hqx +820 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/MacOS/opensslconf.h ...aging/Enclave/third_party/OpenSSL_SGX/MacOS/opensslconf.h +126 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Makefile.org ...ve_messaging/Enclave/third_party/OpenSSL_SGX/Makefile.org +690 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Makefile.shared ...messaging/Enclave/third_party/OpenSSL_SGX/Makefile.shared +655 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/NEWS ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/NEWS +803 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Netware/build.bat ...ssaging/Enclave/third_party/OpenSSL_SGX/Netware/build.bat +235 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Netware/cpy_tests.bat ...ing/Enclave/third_party/OpenSSL_SGX/Netware/cpy_tests.bat +113 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Netware/do_tests.pl ...aging/Enclave/third_party/OpenSSL_SGX/Netware/do_tests.pl +624 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Netware/globals.txt ...aging/Enclave/third_party/OpenSSL_SGX/Netware/globals.txt +254 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Netware/readme.txt ...saging/Enclave/third_party/OpenSSL_SGX/Netware/readme.txt +19 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/Netware/set_env.bat ...aging/Enclave/third_party/OpenSSL_SGX/Netware/set_env.bat +112 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/PROBLEMS ...nclave_messaging/Enclave/third_party/OpenSSL_SGX/PROBLEMS +213 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/README ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/README +101 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/README.ASN1 ...ave_messaging/Enclave/third_party/OpenSSL_SGX/README.ASN1 +187 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/README.ENGINE ...e_messaging/Enclave/third_party/OpenSSL_SGX/README.ENGINE +289 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/TABLE ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/TABLE +6767 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/TODO ...nclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/TODO +18 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/VMSify-conf.pl ...saging/Enclave/third_party/OpenSSL_SGX/VMS/VMSify-conf.pl +34 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/WISHLIST.TXT ...essaging/Enclave/third_party/OpenSSL_SGX/VMS/WISHLIST.TXT +4 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/install-vms.com ...aging/Enclave/third_party/OpenSSL_SGX/VMS/install-vms.com +67 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/mkshared.com ...essaging/Enclave/third_party/OpenSSL_SGX/VMS/mkshared.com +476 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/multinet_shr.opt ...ging/Enclave/third_party/OpenSSL_SGX/VMS/multinet_shr.opt +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/openssl_startup.com ...g/Enclave/third_party/OpenSSL_SGX/VMS/openssl_startup.com +108 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/openssl_undo.com ...ging/Enclave/third_party/OpenSSL_SGX/VMS/openssl_undo.com +20 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/openssl_utils.com ...ing/Enclave/third_party/OpenSSL_SGX/VMS/openssl_utils.com +46 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/socketshr_shr.opt ...ing/Enclave/third_party/OpenSSL_SGX/VMS/socketshr_shr.opt +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/tcpip_shr_decc.opt ...ng/Enclave/third_party/OpenSSL_SGX/VMS/tcpip_shr_decc.opt +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/test-includes.com ...ing/Enclave/third_party/OpenSSL_SGX/VMS/test-includes.com +28 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/ucx_shr_decc.opt ...ging/Enclave/third_party/OpenSSL_SGX/VMS/ucx_shr_decc.opt +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/ucx_shr_decc_log.opt .../Enclave/third_party/OpenSSL_SGX/VMS/ucx_shr_decc_log.opt +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/VMS/ucx_shr_vaxc.opt ...ging/Enclave/third_party/OpenSSL_SGX/VMS/ucx_shr_vaxc.opt +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/CA.com ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/CA.com +236 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/CA.pl.in ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/CA.pl.in +188 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/CA.sh ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/CA.sh +198 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/Makefile ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/Makefile +1040 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/app_rand.c ...messaging/Enclave/third_party/OpenSSL_SGX/apps/app_rand.c +217 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/apps.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/apps.c +3279 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/apps.h ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/apps.h +389 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/asn1pars.c ...messaging/Enclave/third_party/OpenSSL_SGX/apps/asn1pars.c +430 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ca-cert.srl ...essaging/Enclave/third_party/OpenSSL_SGX/apps/ca-cert.srl +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ca-key.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/ca-key.pem +15 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ca-req.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/ca-req.pem +11 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ca.c ...clave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ca.c +2918 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/cert.pem ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/cert.pem +11 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ciphers.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/ciphers.c +239 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/client.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/client.pem +52 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/cms.c ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/cms.c +1354 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/crl.c ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/crl.c +442 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/crl2p7.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/crl2p7.c +334 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/demoCA/cacert.pem ...ng/Enclave/third_party/OpenSSL_SGX/apps/demoCA/cacert.pem +14 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/demoCA/index.txt ...ing/Enclave/third_party/OpenSSL_SGX/apps/demoCA/index.txt +39 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/demoCA/private/cakey.pem ...ave/third_party/OpenSSL_SGX/apps/demoCA/private/cakey.pem +24 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/demoCA/serial ...saging/Enclave/third_party/OpenSSL_SGX/apps/demoCA/serial +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/demoSRP/srp_verifier.txt ...ave/third_party/OpenSSL_SGX/apps/demoSRP/srp_verifier.txt +6 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/demoSRP/srp_verifier.txt.attr ...hird_party/OpenSSL_SGX/apps/demoSRP/srp_verifier.txt.attr +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dgst.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dgst.c +620 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dh.c ...clave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dh.c +331 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dh1024.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/dh1024.pem +10 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dh2048.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/dh2048.pem +12 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dh4096.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/dh4096.pem +18 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dh512.pem ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/dh512.pem +9 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dhparam.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/dhparam.c +556 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa-ca.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa-ca.pem +40 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa-pca.pem ...essaging/Enclave/third_party/OpenSSL_SGX/apps/dsa-pca.pem +46 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa.c ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa.c +369 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa1024.pem ...essaging/Enclave/third_party/OpenSSL_SGX/apps/dsa1024.pem +9 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa512.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/dsa512.pem +6 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsap.pem ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsap.pem +6 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/dsaparam.c ...messaging/Enclave/third_party/OpenSSL_SGX/apps/dsaparam.c +467 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ec.c ...clave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ec.c +365 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ecparam.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/ecparam.c +661 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/enc.c ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/enc.c +728 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/engine.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/engine.c +515 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/errstr.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/errstr.c +121 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/gendh.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/gendh.c +244 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/gendsa.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/gendsa.c +285 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/genpkey.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/genpkey.c +405 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/genrsa.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/genrsa.c +345 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/install-apps.com ...ing/Enclave/third_party/OpenSSL_SGX/apps/install-apps.com +107 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/makeapps.com ...ssaging/Enclave/third_party/OpenSSL_SGX/apps/makeapps.com +1184 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/nseq.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/nseq.c +170 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ocsp.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ocsp.c +1367 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/oid.cnf ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/oid.cnf +6 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/openssl-vms.cnf ...ging/Enclave/third_party/OpenSSL_SGX/apps/openssl-vms.cnf +350 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/openssl.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/openssl.c +696 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/openssl.cnf ...essaging/Enclave/third_party/OpenSSL_SGX/apps/openssl.cnf +350 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/passwd.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/passwd.c +494 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pca-cert.srl ...ssaging/Enclave/third_party/OpenSSL_SGX/apps/pca-cert.srl +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pca-key.pem ...essaging/Enclave/third_party/OpenSSL_SGX/apps/pca-key.pem +15 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pca-req.pem ...essaging/Enclave/third_party/OpenSSL_SGX/apps/pca-req.pem +11 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkcs12.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkcs12.c +1112 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkcs7.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkcs7.c +310 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkcs8.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkcs8.c +399 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkey.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkey.c +248 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkeyparam.c ...essaging/Enclave/third_party/OpenSSL_SGX/apps/pkeyparam.c +183 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/pkeyutl.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/pkeyutl.c +558 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/prime.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/prime.c +162 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/privkey.pem ...essaging/Enclave/third_party/OpenSSL_SGX/apps/privkey.pem +18 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/progs.h ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/progs.h +366 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/progs.pl ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/progs.pl +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/rand.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/rand.c +227 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/req.c ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/req.c +1731 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/req.pem ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/req.pem +11 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/rsa.c ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/rsa.c +436 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/rsa8192.pem ...essaging/Enclave/third_party/OpenSSL_SGX/apps/rsa8192.pem +101 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/rsautl.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/rsautl.c +372 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s1024key.pem ...ssaging/Enclave/third_party/OpenSSL_SGX/apps/s1024key.pem +15 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s1024req.pem ...ssaging/Enclave/third_party/OpenSSL_SGX/apps/s1024req.pem +11 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s512-key.pem ...ssaging/Enclave/third_party/OpenSSL_SGX/apps/s512-key.pem +9 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s512-req.pem ...ssaging/Enclave/third_party/OpenSSL_SGX/apps/s512-req.pem +8 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_apps.h ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_apps.h +212 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_cb.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_cb.c +1664 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_client.c ...messaging/Enclave/third_party/OpenSSL_SGX/apps/s_client.c +2361 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_server.c ...messaging/Enclave/third_party/OpenSSL_SGX/apps/s_server.c +3519 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_socket.c ...messaging/Enclave/third_party/OpenSSL_SGX/apps/s_socket.c +613 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_time.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/s_time.c +641 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/server.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/server.pem +52 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/server.srl ...messaging/Enclave/third_party/OpenSSL_SGX/apps/server.srl +1 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/server2.pem ...essaging/Enclave/third_party/OpenSSL_SGX/apps/server2.pem +52 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/sess_id.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/sess_id.c +300 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/set/set-g-ca.pem ...ing/Enclave/third_party/OpenSSL_SGX/apps/set/set-g-ca.pem +21 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/set/set-m-ca.pem ...ing/Enclave/third_party/OpenSSL_SGX/apps/set/set-m-ca.pem +21 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/set/set_b_ca.pem ...ing/Enclave/third_party/OpenSSL_SGX/apps/set/set_b_ca.pem +23 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/set/set_c_ca.pem ...ing/Enclave/third_party/OpenSSL_SGX/apps/set/set_c_ca.pem +21 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/set/set_d_ct.pem ...ing/Enclave/third_party/OpenSSL_SGX/apps/set/set_d_ct.pem +21 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/set/set_root.pem ...ing/Enclave/third_party/OpenSSL_SGX/apps/set/set_root.pem +21 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/smime.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/smime.c +775 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/speed.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/speed.c +2878 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/spkac.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/apps/spkac.c +309 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/srp.c ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/srp.c +766 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/testCA.pem ...messaging/Enclave/third_party/OpenSSL_SGX/apps/testCA.pem +8 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/testdsa.h ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/testdsa.h +233 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/testrsa.h ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/testrsa.h +518 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/timeouts.h ...messaging/Enclave/third_party/OpenSSL_SGX/apps/timeouts.h +67 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ts.c ...clave_messaging/Enclave/third_party/OpenSSL_SGX/apps/ts.c +1119 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/tsget ...lave_messaging/Enclave/third_party/OpenSSL_SGX/apps/tsget +196 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/verify.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/apps/verify.c +350 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/version.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/version.c +214 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/vms_decc_init.c ...ging/Enclave/third_party/OpenSSL_SGX/apps/vms_decc_init.c +172 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/vms_term_sock.c ...ging/Enclave/third_party/OpenSSL_SGX/apps/vms_term_sock.c +590 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/vms_term_sock.h ...ging/Enclave/third_party/OpenSSL_SGX/apps/vms_term_sock.h +30 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/winrand.c ..._messaging/Enclave/third_party/OpenSSL_SGX/apps/winrand.c +146 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/apps/x509.c ...ave_messaging/Enclave/third_party/OpenSSL_SGX/apps/x509.c +1278 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/appveyor.yml ...ve_messaging/Enclave/third_party/OpenSSL_SGX/appveyor.yml +52 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/MS ...enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/MS +7 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/SSLv3 ...lave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/SSLv3 +49 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/alpha.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/bugs/alpha.c +92 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/dggccbug.c ...messaging/Enclave/third_party/OpenSSL_SGX/bugs/dggccbug.c +45 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/sgiccbug.c ...messaging/Enclave/third_party/OpenSSL_SGX/bugs/sgiccbug.c +60 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/sslref.dif ...messaging/Enclave/third_party/OpenSSL_SGX/bugs/sslref.dif +26 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/stream.c ...e_messaging/Enclave/third_party/OpenSSL_SGX/bugs/stream.c +132 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/bugs/ultrixcc.c ...messaging/Enclave/third_party/OpenSSL_SGX/bugs/ultrixcc.c +44 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/certs/README.RootCerts ...ng/Enclave/third_party/OpenSSL_SGX/certs/README.RootCerts +4 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/certs/demo/ca-cert.pem ...ng/Enclave/third_party/OpenSSL_SGX/certs/demo/ca-cert.pem +33 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/certs/demo/dsa-ca.pem ...ing/Enclave/third_party/OpenSSL_SGX/certs/demo/dsa-ca.pem +43 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/certs/demo/dsa-pca.pem ...ng/Enclave/third_party/OpenSSL_SGX/certs/demo/dsa-pca.pem +49 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/certs/demo/pca-cert.pem ...g/Enclave/third_party/OpenSSL_SGX/certs/demo/pca-cert.pem +33 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/certs/expired/ICE.crl ...ing/Enclave/third_party/OpenSSL_SGX/certs/expired/ICE.crl +9 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/config ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/config +996 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_nyi.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_nyi.c +44 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_unix.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_unix.c +132 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_vms.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_vms.c +195 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_win.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_win.c +170 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_win32.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_win32.c +29 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_wince.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/LPdir_wince.c +32 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/Makefile ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/Makefile +221 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/aes/Makefile +171 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/README ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/README +3 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes.h +149 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_cbc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_cbc.c +66 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_cfb.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_cfb.c +85 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_core.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_core.c +1363 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ctr.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ctr.c +63 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ecb.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ecb.c +73 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ige.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ige.c +323 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_locl.h ...ing/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_locl.h +89 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_misc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_misc.c +86 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ofb.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_ofb.c +61 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_wrap.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_wrap.c +72 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_x86core.c .../Enclave/third_party/OpenSSL_SGX/crypto/aes/aes_x86core.c +1072 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-586.pl ...Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-586.pl +2987 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-armv4.pl ...clave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-armv4.pl +1217 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-ia64.S ...Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-ia64.S +1123 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-mips.pl ...nclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-mips.pl +2122 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-parisc.pl ...lave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-parisc.pl +1022 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-ppc.pl ...Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-ppc.pl +1452 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-s390x.pl ...clave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-s390x.pl +2228 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-sparcv9.pl ...ave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-sparcv9.pl +1182 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-x86_64.pl ...lave/third_party/OpenSSL_SGX/crypto/aes/asm/aes-x86_64.pl +2813 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aesni-mb-x86_64.pl ...third_party/OpenSSL_SGX/crypto/aes/asm/aesni-mb-x86_64.pl +1395 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aesni-sha1-x86_64.pl ...ird_party/OpenSSL_SGX/crypto/aes/asm/aesni-sha1-x86_64.pl +2058 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aesni-sha256-x86_64.pl ...d_party/OpenSSL_SGX/crypto/aes/asm/aesni-sha256-x86_64.pl +1706 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aesni-x86.pl ...clave/third_party/OpenSSL_SGX/crypto/aes/asm/aesni-x86.pl +2525 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aesni-x86_64.pl ...ve/third_party/OpenSSL_SGX/crypto/aes/asm/aesni-x86_64.pl +4048 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aesp8-ppc.pl ...clave/third_party/OpenSSL_SGX/crypto/aes/asm/aesp8-ppc.pl +1942 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aest4-sparcv9.pl ...e/third_party/OpenSSL_SGX/crypto/aes/asm/aest4-sparcv9.pl +919 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/aesv8-armx.pl ...lave/third_party/OpenSSL_SGX/crypto/aes/asm/aesv8-armx.pl +989 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/bsaes-armv7.pl ...ave/third_party/OpenSSL_SGX/crypto/aes/asm/bsaes-armv7.pl +2451 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/bsaes-x86_64.pl ...ve/third_party/OpenSSL_SGX/crypto/aes/asm/bsaes-x86_64.pl +3102 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/vpaes-ppc.pl ...clave/third_party/OpenSSL_SGX/crypto/aes/asm/vpaes-ppc.pl +1586 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/vpaes-x86.pl ...clave/third_party/OpenSSL_SGX/crypto/aes/asm/vpaes-x86.pl +903 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/aes/asm/vpaes-x86_64.pl ...ve/third_party/OpenSSL_SGX/crypto/aes/asm/vpaes-x86_64.pl +1207 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/alphacpuid.pl ...ging/Enclave/third_party/OpenSSL_SGX/crypto/alphacpuid.pl +126 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/arm64cpuid.S ...aging/Enclave/third_party/OpenSSL_SGX/crypto/arm64cpuid.S +46 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/arm_arch.h ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/arm_arch.h +78 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/armcap.c ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/armcap.c +164 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/armv4cpuid.S ...aging/Enclave/third_party/OpenSSL_SGX/crypto/armv4cpuid.S +209 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/Makefile +933 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_bitstr.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_bitstr.c +263 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_bool.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_bool.c +111 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_bytes.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_bytes.c +334 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_d2i_fp.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_d2i_fp.c +284 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_digest.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_digest.c +115 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_dup.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_dup.c +117 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_enum.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_enum.c +181 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_gentm.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_gentm.c +312 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_i2d_fp.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_i2d_fp.c +157 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_int.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_int.c +464 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_mbstr.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_mbstr.c +423 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_object.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_object.c +406 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_octet.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_octet.c +78 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_print.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_print.c +129 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_set.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_set.c +243 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_sign.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_sign.c +331 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_strex.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_strex.c +649 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_strnid.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_strnid.c +315 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_time.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_time.c +236 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_type.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_type.c +155 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_utctm.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_utctm.c +352 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_utf8.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_utf8.c +237 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_verify.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/a_verify.c +231 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/ameth_lib.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/asn1/ameth_lib.c +486 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1.h +1419 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_err.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_err.c +354 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_gen.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_gen.c +831 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_lib.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_lib.c +483 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_locl.h ...g/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_locl.h +135 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_mac.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_mac.h +579 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_par.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1_par.c +424 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1t.h ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn1t.h +973 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn_mime.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn_mime.c +976 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn_moid.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn_moid.c +153 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn_pack.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/asn_pack.c +207 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/bio_asn1.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/bio_asn1.c +484 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/bio_ndef.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/bio_ndef.c +249 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/charmap.h ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/charmap.h +15 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/charmap.pl ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/charmap.pl +85 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/d2i_pr.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/d2i_pr.c +177 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/d2i_pu.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/d2i_pu.c +136 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/evp_asn1.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/evp_asn1.c +195 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/f_enum.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/f_enum.c +203 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/f_int.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/f_int.c +215 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/f_string.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/f_string.c +209 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/i2d_pr.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/i2d_pr.c +81 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/i2d_pu.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/i2d_pu.c +93 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/n_pkey.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/n_pkey.c +345 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/nsseq.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/nsseq.c +84 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/p5_pbe.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/p5_pbe.c +143 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/p5_pbev2.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/p5_pbev2.c +276 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/p8_pkey.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/p8_pkey.c +145 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_bitst.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_bitst.c +105 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_crl.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_crl.c +133 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_pkey.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_pkey.c +113 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_req.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_req.c +255 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_spki.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_spki.c +108 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_x509.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_x509.c +556 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_x509a.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/t_x509a.c +115 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_dec.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_dec.c +1230 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_enc.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_enc.c +667 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_fre.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_fre.c +249 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_new.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_new.c +384 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_prn.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_prn.c +593 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_typ.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_typ.c +149 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_utl.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/tasn_utl.c +275 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_algor.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_algor.c +148 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_attrib.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_attrib.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_bignum.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_bignum.c +166 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_crl.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_crl.c +518 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_exten.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_exten.c +77 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_info.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_info.c +117 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_long.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_long.c +218 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_name.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_name.c +543 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_nx509.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_nx509.c +72 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_pkey.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_pkey.c +153 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_pubkey.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_pubkey.c +374 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_req.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_req.c +116 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_sig.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_sig.c +69 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_spki.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_spki.c +82 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_val.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_val.c +69 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_x509.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_x509.c +289 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_x509a.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/asn1/x_x509a.c +196 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/COPYRIGHT ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bf/COPYRIGHT +46 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/INSTALL ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/INSTALL +14 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/Makefile ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bf/Makefile +103 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/README ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/README +8 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/VERSION ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/VERSION +6 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/asm/bf-586.pl ...g/Enclave/third_party/OpenSSL_SGX/crypto/bf/asm/bf-586.pl +137 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/asm/bf-686.pl ...g/Enclave/third_party/OpenSSL_SGX/crypto/bf/asm/bf-686.pl +127 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/asm/readme ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bf/asm/readme +10 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_cbc.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_cbc.c +135 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_cfb64.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_cfb64.c +123 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_ecb.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_ecb.c +100 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_enc.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_enc.c +300 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_locl.h ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_locl.h +221 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_ofb64.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_ofb64.c +110 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_opts.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_opts.c +324 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_pi.h ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_pi.h +579 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_skey.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bf_skey.c +125 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bfs.cpp ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bfs.cpp +67 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bfspeed.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bfspeed.c +265 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bftest.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bf/bftest.c +538 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bf/blowfish.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bf/blowfish.h +130 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bio/Makefile +224 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/b_dump.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bio/b_dump.c +208 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/b_print.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/b_print.c +869 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/b_sock.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bio/b_sock.c +962 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_buff.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_buff.c +517 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_lbuf.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_lbuf.c +391 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_nbio.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_nbio.c +253 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_null.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bf_null.c +189 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio.h +883 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_cb.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_cb.c +148 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_err.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_err.c +157 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_lcl.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_lcl.h +36 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_lib.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bio_lib.c +596 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_acpt.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_acpt.c +463 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_bio.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_bio.c +889 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_conn.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_conn.c +612 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_dgram.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_dgram.c +2081 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_fd.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_fd.c +330 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_file.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_file.c +484 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_log.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_log.c +453 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_mem.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_mem.c +313 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_null.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_null.c +149 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_rtcp.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_rtcp.c +321 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_sock.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bio/bss_sock.c +287 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/Makefile ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/Makefile +389 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/README ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/README +27 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/alpha-mont.pl ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/alpha-mont.pl +321 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/armv4-gf2m.pl ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/armv4-gf2m.pl +289 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/armv4-mont.pl ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/armv4-mont.pl +676 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/bn-586.pl ...g/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/bn-586.pl +774 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/co-586.pl ...g/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/co-586.pl +287 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ia64-mont.pl ...nclave/third_party/OpenSSL_SGX/crypto/bn/asm/ia64-mont.pl +851 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ia64.S ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ia64.S +1555 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/mips-mont.pl ...nclave/third_party/OpenSSL_SGX/crypto/bn/asm/mips-mont.pl +426 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/mips.pl ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/mips.pl +2234 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/mips3-mont.pl ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/mips3-mont.pl +327 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/pa-risc2.s .../Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/pa-risc2.s +1618 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/pa-risc2W.s ...Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/pa-risc2W.s +1605 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/parisc-mont.pl ...lave/third_party/OpenSSL_SGX/crypto/bn/asm/parisc-mont.pl +995 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ppc-mont.pl ...Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ppc-mont.pl +335 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ppc.pl ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ppc.pl +2008 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/ppc64-mont.pl ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/ppc64-mont.pl +1628 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/rsaz-avx2.pl ...nclave/third_party/OpenSSL_SGX/crypto/bn/asm/rsaz-avx2.pl +1961 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/rsaz-x86_64.pl ...lave/third_party/OpenSSL_SGX/crypto/bn/asm/rsaz-x86_64.pl +2351 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/s390x-gf2m.pl ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/s390x-gf2m.pl +221 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/s390x-mont.pl ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/s390x-mont.pl +277 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/s390x.S ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/s390x.S +713 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/sparct4-mont.pl ...ave/third_party/OpenSSL_SGX/crypto/bn/asm/sparct4-mont.pl +1222 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv8.S ...g/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv8.S +1458 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv8plus.S ...clave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv8plus.S +1558 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv9-gf2m.pl ...ave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv9-gf2m.pl +190 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv9-mont.pl ...ave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv9-mont.pl +609 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv9a-mont.pl ...ve/third_party/OpenSSL_SGX/crypto/bn/asm/sparcv9a-mont.pl +882 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/via-mont.pl ...Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/via-mont.pl +242 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/vis3-mont.pl ...nclave/third_party/OpenSSL_SGX/crypto/bn/asm/vis3-mont.pl +373 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/vms.mar ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/vms.mar +6440 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86-gf2m.pl ...Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86-gf2m.pl +313 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86-mont.pl ...Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86-mont.pl +615 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86.pl ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86.pl +28 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/add.pl .../Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/add.pl +76 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/comba.pl ...nclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/comba.pl +277 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/div.pl .../Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/div.pl +15 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/f ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/f +3 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/mul.pl .../Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/mul.pl +77 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/mul_add.pl ...lave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/mul_add.pl +87 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/sqr.pl .../Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/sqr.pl +60 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/sub.pl .../Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86/sub.pl +76 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-gcc.c ...nclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-gcc.c +638 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-gf2m.pl ...lave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-gf2m.pl +390 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-mont.pl ...lave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-mont.pl +1512 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-mont5.pl ...ave/third_party/OpenSSL_SGX/crypto/bn/asm/x86_64-mont5.pl +3818 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn.h ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn.h +951 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn.mul ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn.mul +19 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_add.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_add.c +313 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_asm.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_asm.c +1093 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_blind.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_blind.c +385 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_const.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_const.c +547 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_ctx.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_ctx.c +448 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_depr.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_depr.c +115 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_div.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_div.c +477 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_err.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_err.c +154 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_exp.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_exp.c +1458 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_exp2.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_exp2.c +303 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_gcd.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_gcd.c +702 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_gf2m.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_gf2m.c +1300 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_kron.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_kron.c +186 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_lcl.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_lcl.h +537 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_lib.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_lib.c +916 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mod.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mod.c +316 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mont.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mont.c +558 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mpi.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mpi.c +128 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mul.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_mul.c +1165 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_nist.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_nist.c +1262 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_prime.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_prime.c +504 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_prime.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_prime.h +326 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_prime.pl ...ing/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_prime.pl +119 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_print.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_print.c +402 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_rand.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_rand.c +294 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_recp.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_recp.c +252 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_shift.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_shift.c +224 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_sqr.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_sqr.c +291 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_sqrt.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_sqrt.c +409 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_word.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_word.c +249 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_x931p.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bn_x931p.c +277 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bnspeed.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bnspeed.c +232 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bntest.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/bn/bntest.c +2160 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/divtest.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/divtest.c +42 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/exp.c ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/exp.c +61 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/expspeed.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/expspeed.c +381 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/exptest.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/bn/exptest.c +313 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/rsaz_exp.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/rsaz_exp.c +346 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/rsaz_exp.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/bn/rsaz_exp.h +68 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/todo ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/todo +3 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/bn/vms-helper.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/bn/vms-helper.c +68 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/buffer/Makefile ...ng/Enclave/third_party/OpenSSL_SGX/crypto/buffer/Makefile +99 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buf_err.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buf_err.c +97 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buf_str.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buf_str.c +137 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buffer.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buffer.c +187 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buffer.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/buffer/buffer.h +125 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/Makefile .../Enclave/third_party/OpenSSL_SGX/crypto/camellia/Makefile +114 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/asm/cmll-x86.pl ...e/third_party/OpenSSL_SGX/crypto/camellia/asm/cmll-x86.pl +1138 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/asm/cmll-x86_64.pl ...hird_party/OpenSSL_SGX/crypto/camellia/asm/cmll-x86_64.pl +1081 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/asm/cmllt4-sparcv9.pl ...d_party/OpenSSL_SGX/crypto/camellia/asm/cmllt4-sparcv9.pl +929 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/camellia.c ...nclave/third_party/OpenSSL_SGX/crypto/camellia/camellia.c +584 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/camellia.h ...nclave/third_party/OpenSSL_SGX/crypto/camellia/camellia.h +132 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_cbc.c ...nclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_cbc.c +66 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_cfb.c ...nclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_cfb.c +141 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_ctr.c ...nclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_ctr.c +64 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_ecb.c ...nclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_ecb.c +73 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_locl.h ...clave/third_party/OpenSSL_SGX/crypto/camellia/cmll_locl.h +88 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_misc.c ...clave/third_party/OpenSSL_SGX/crypto/camellia/cmll_misc.c +80 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_ofb.c ...nclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_ofb.c +122 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_utl.c ...nclave/third_party/OpenSSL_SGX/crypto/camellia/cmll_utl.c +64 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cast/Makefile +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/asm/cast-586.pl ...clave/third_party/OpenSSL_SGX/crypto/cast/asm/cast-586.pl +177 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/asm/readme ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cast/asm/readme +7 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_cfb64.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_cfb64.c +123 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_ecb.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_ecb.c +83 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_enc.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_enc.c +200 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_ofb64.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_ofb64.c +110 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_skey.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cast/c_skey.c +175 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast.h +107 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast_lcl.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast_lcl.h +227 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast_s.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast_s.h +592 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast_spd.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cast/cast_spd.c +262 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/castopts.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cast/castopts.c +334 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/casts.cpp ...ing/Enclave/third_party/OpenSSL_SGX/crypto/cast/casts.cpp +70 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cast/casttest.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cast/casttest.c +241 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/Makefile +113 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cm_ameth.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cm_ameth.c +96 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cm_pmeth.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cm_pmeth.c +216 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cmac.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cmac.c +306 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cmac.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/cmac/cmac.h +82 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/cms/Makefile +305 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms.h +555 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_asn1.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_asn1.c +459 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_att.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_att.c +197 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_cd.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_cd.c +134 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_dd.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_dd.c +145 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_enc.c +264 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_env.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_env.c +974 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_err.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_err.c +309 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_ess.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_ess.c +394 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_io.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_io.c +133 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_kari.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_kari.c +468 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_lcl.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_lcl.h +471 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_lib.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_lib.c +656 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_pwri.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_pwri.c +435 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_sd.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_sd.c +957 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_smime.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/cms/cms_smime.c +836 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/comp/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/comp/Makefile +110 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/comp/c_rle.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/comp/c_rle.c +63 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/comp/c_zlib.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/comp/c_zlib.c +763 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/comp/comp.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/comp/comp.h +83 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/comp/comp_err.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/comp/comp_err.c +98 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/comp/comp_lib.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/comp/comp_lib.c +66 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/conf/Makefile +154 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/README ...saging/Enclave/third_party/OpenSSL_SGX/crypto/conf/README +73 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/cnf_save.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/cnf_save.c +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf.h +272 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_api.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_api.c +305 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_api.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_api.h +89 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_def.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_def.c +723 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_def.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_def.h +181 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_err.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_err.c +135 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_lib.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_lib.c +395 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_mall.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_mall.c +81 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_mod.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_mod.c +601 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_sap.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/conf_sap.c +99 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/keysets.pl ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/keysets.pl +187 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/ssleay.cnf ...ng/Enclave/third_party/OpenSSL_SGX/crypto/conf/ssleay.cnf +78 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/conf/test.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/conf/test.c +97 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/constant_time_locl.h ...clave/third_party/OpenSSL_SGX/crypto/constant_time_locl.h +211 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/constant_time_test.c ...clave/third_party/OpenSSL_SGX/crypto/constant_time_test.c +304 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cpt_err.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/cpt_err.c +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cryptlib.c ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/cryptlib.c +1035 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cryptlib.h ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/cryptlib.h +111 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/crypto-lib.com ...ing/Enclave/third_party/OpenSSL_SGX/crypto/crypto-lib.com +1537 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/crypto.h ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/crypto.h +661 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/cversion.c ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/cversion.c +107 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/COPYRIGHT ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/COPYRIGHT +50 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/DES.pm ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/des/DES.pm +19 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/DES.xs ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/des/DES.xs +268 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/FILES0 ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/des/FILES0 +96 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/INSTALL ...saging/Enclave/third_party/OpenSSL_SGX/crypto/des/INSTALL +69 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/Imakefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/Imakefile +35 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/KERBEROS ...aging/Enclave/third_party/OpenSSL_SGX/crypto/des/KERBEROS +41 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/des/Makefile +283 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/README ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/des/README +54 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/VERSION ...saging/Enclave/third_party/OpenSSL_SGX/crypto/des/VERSION +412 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/asm/crypt586.pl ...nclave/third_party/OpenSSL_SGX/crypto/des/asm/crypt586.pl +209 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/asm/des-586.pl ...Enclave/third_party/OpenSSL_SGX/crypto/des/asm/des-586.pl +455 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/asm/des_enc.m4 ...Enclave/third_party/OpenSSL_SGX/crypto/des/asm/des_enc.m4 +2101 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/asm/desboth.pl ...Enclave/third_party/OpenSSL_SGX/crypto/des/asm/desboth.pl +79 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/asm/dest4-sparcv9.pl ...e/third_party/OpenSSL_SGX/crypto/des/asm/dest4-sparcv9.pl +617 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/asm/readme ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/asm/readme +131 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/cbc3_enc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/cbc3_enc.c +95 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/cbc_cksm.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/cbc_cksm.c +103 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/cbc_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/cbc_enc.c +61 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/cfb64ede.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/cfb64ede.c +249 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/cfb64enc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/cfb64enc.c +122 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/cfb_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/cfb_enc.c +199 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des-lib.com ...ng/Enclave/third_party/OpenSSL_SGX/crypto/des/des-lib.com +1005 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des.c +868 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des.h +257 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des.pod ...saging/Enclave/third_party/OpenSSL_SGX/crypto/des/des.pod +217 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des3s.cpp ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/des3s.cpp +67 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_enc.c +389 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_locl.h ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/des_locl.h +443 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_old.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_old.c +345 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_old.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_old.h +497 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_old2.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/des_old2.c +80 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_opts.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/des_opts.c +641 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_ver.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/des_ver.h +73 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/dess.cpp ...aging/Enclave/third_party/OpenSSL_SGX/crypto/des/dess.cpp +67 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/destest.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/destest.c +929 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/ecb3_enc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/ecb3_enc.c +82 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/ecb_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/ecb_enc.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/ede_cbcm_enc.c ...Enclave/third_party/OpenSSL_SGX/crypto/des/ede_cbcm_enc.c +189 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/enc_read.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/enc_read.c +235 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/enc_writ.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/enc_writ.c +182 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/fcrypt.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/des/fcrypt.c +167 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/fcrypt_b.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/fcrypt_b.c +140 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/makefile.bc ...ng/Enclave/third_party/OpenSSL_SGX/crypto/des/makefile.bc +50 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/ncbc_enc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/ncbc_enc.c +154 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/ofb64ede.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/ofb64ede.c +123 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/ofb64enc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/ofb64enc.c +109 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/ofb_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/ofb_enc.c +131 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/options.txt ...ng/Enclave/third_party/OpenSSL_SGX/crypto/des/options.txt +39 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/pcbc_enc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/pcbc_enc.c +115 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/qud_cksm.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/qud_cksm.c +143 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/rand_key.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/rand_key.c +67 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/read2pwd.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/read2pwd.c +140 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/read_pwd.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/read_pwd.c +533 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/rpc_des.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/rpc_des.h +130 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/rpc_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/rpc_enc.c +100 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/rpw.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/des/rpw.c +94 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/set_key.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/set_key.c +447 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/speed.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/des/speed.c +299 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/spr.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/des/spr.h +212 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/str2key.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/des/str2key.c +164 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/t/test ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/des/t/test +27 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/486-50.sol ...clave/third_party/OpenSSL_SGX/crypto/des/times/486-50.sol +16 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/586-100.lnx ...lave/third_party/OpenSSL_SGX/crypto/des/times/586-100.lnx +20 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/686-200.fre ...lave/third_party/OpenSSL_SGX/crypto/des/times/686-200.fre +18 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/aix.cc ...g/Enclave/third_party/OpenSSL_SGX/crypto/des/times/aix.cc +26 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/alpha.cc ...Enclave/third_party/OpenSSL_SGX/crypto/des/times/alpha.cc +18 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/hpux.cc .../Enclave/third_party/OpenSSL_SGX/crypto/des/times/hpux.cc +17 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/sparc.gcc ...nclave/third_party/OpenSSL_SGX/crypto/des/times/sparc.gcc +17 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/times/usparc.cc ...nclave/third_party/OpenSSL_SGX/crypto/des/times/usparc.cc +31 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/typemap ...saging/Enclave/third_party/OpenSSL_SGX/crypto/des/typemap +34 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/des/xcbc_enc.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/des/xcbc_enc.c +216 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/Makefile ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/Makefile +204 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh.h ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh.h +410 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh1024.pem ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh1024.pem +5 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh192.pem ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh192.pem +3 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh2048.pem ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh2048.pem +16 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh4096.pem ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh4096.pem +14 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh512.pem ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh512.pem +4 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_ameth.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_ameth.c +957 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_asn1.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_asn1.c +189 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_check.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_check.c +187 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_depr.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_depr.c +82 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_err.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_err.c +126 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_gen.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_gen.c +204 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_kdf.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_kdf.c +187 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_key.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_key.c +291 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_lib.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_lib.c +263 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_pmeth.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_pmeth.c +551 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_prn.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_prn.c +79 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_rfc5114.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/dh/dh_rfc5114.c +285 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dhtest.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/dhtest.c +643 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/example ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/example +50 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/generate ...saging/Enclave/third_party/OpenSSL_SGX/crypto/dh/generate +65 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/p1024.c ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/p1024.c +92 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/p192.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/p192.c +80 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/p512.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/dh/p512.c +85 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/Makefile +211 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/README ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/README +4 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa.h +332 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_ameth.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_ameth.c +678 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_asn1.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_asn1.c +202 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_depr.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_depr.c +113 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_err.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_err.c +133 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_gen.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_gen.c +751 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_key.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_key.c +145 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_lib.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_lib.c +329 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_locl.h ...ing/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_locl.h +69 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_ossl.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_ossl.c +427 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_pmeth.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_pmeth.c +312 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_prn.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_prn.c +119 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_sign.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_sign.c +110 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_vrf.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsa_vrf.c +75 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsagen.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsagen.c +115 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsatest.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/dsatest.c +268 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dsa/fips186a.txt ...g/Enclave/third_party/OpenSSL_SGX/crypto/dsa/fips186a.txt +122 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dso/Makefile +152 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/README ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/README +22 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso.h +451 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_beos.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_beos.c +253 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_dl.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_dl.c +380 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_dlfcn.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_dlfcn.c +465 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_err.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_err.c +158 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_lib.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_lib.c +448 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_null.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_null.c +92 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_openssl.c .../Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_openssl.c +83 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_vms.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_vms.c +547 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_win32.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/dso/dso_win32.c +788 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ebcdic.c ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/ebcdic.c +284 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ebcdic.h ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/ebcdic.h +26 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/Makefile ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/Makefile +274 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/asm/ecp_nistz256-avx2.pl ...hird_party/OpenSSL_SGX/crypto/ec/asm/ecp_nistz256-avx2.pl +2093 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/asm/ecp_nistz256-x86_64.pl ...rd_party/OpenSSL_SGX/crypto/ec/asm/ecp_nistz256-x86_64.pl +3007 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec.h ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec.h +1282 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec2_mult.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec2_mult.c +465 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec2_oct.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec2_oct.c +403 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec2_smpl.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec2_smpl.c +798 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_ameth.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_ameth.c +967 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_asn1.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_asn1.c +1331 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_check.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_check.c +120 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_curve.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_curve.c +3248 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_cvt.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_cvt.c +180 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_err.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_err.c +332 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_key.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_key.c +564 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_lcl.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_lcl.h +568 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_lib.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_lib.c +1134 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_mult.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_mult.c +917 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_oct.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_oct.c +192 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_pmeth.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_pmeth.c +530 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_print.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ec_print.c +179 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/eck_prn.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/ec/eck_prn.c +377 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_mont.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_mont.c +308 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nist.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nist.c +220 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistp224.c .../Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistp224.c +1769 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistp256.c .../Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistp256.c +2369 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistp521.c .../Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistp521.c +2148 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistputil.c ...Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistputil.c +218 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistz256.c .../Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistz256.c +1568 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_nistz256_table.c ...ve/third_party/OpenSSL_SGX/crypto/ec/ecp_nistz256_table.c +9533 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_oct.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_oct.c +428 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_smpl.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ecp_smpl.c +1418 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ectest.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ec/ectest.c +1870 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/Makefile +126 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ecdh.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ecdh.h +134 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ecdhtest.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ecdhtest.c +580 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_err.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_err.c +98 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_kdf.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_kdf.c +111 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_key.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_key.c +81 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_lib.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_lib.c +265 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_locl.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_locl.h +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_ossl.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ecdh/ech_ossl.c +220 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/Makefile ...ing/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/Makefile +142 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecdsa.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecdsa.h +335 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecdsatest.c .../Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecdsatest.c +556 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_asn1.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_asn1.c +67 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_err.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_err.c +107 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_lib.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_lib.c +354 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_locl.h ...g/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_locl.h +120 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_ossl.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_ossl.c +464 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_sign.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_sign.c +106 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_vrf.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ecdsa/ecs_vrf.c +112 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/Makefile ...ng/Enclave/third_party/OpenSSL_SGX/crypto/engine/Makefile +435 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/README ...ging/Enclave/third_party/OpenSSL_SGX/crypto/engine/README +211 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_all.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_all.c +136 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_cnf.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_cnf.c +242 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_cryptodev.c ...ave/third_party/OpenSSL_SGX/crypto/engine/eng_cryptodev.c +1549 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_ctrl.c .../Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_ctrl.c +385 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_dyn.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_dyn.c +570 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_err.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_err.c +181 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_fat.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_fat.c +181 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_init.c .../Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_init.c +157 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_int.h ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_int.h +224 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_lib.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_lib.c +347 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_list.c .../Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_list.c +405 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_openssl.c ...clave/third_party/OpenSSL_SGX/crypto/engine/eng_openssl.c +402 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_pkey.c .../Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_pkey.c +186 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_rdrand.c ...nclave/third_party/OpenSSL_SGX/crypto/engine/eng_rdrand.c +149 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_table.c ...Enclave/third_party/OpenSSL_SGX/crypto/engine/eng_table.c +358 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/engine.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/engine/engine.h +960 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/enginetest.c ...nclave/third_party/OpenSSL_SGX/crypto/engine/enginetest.c +269 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_asnmth.c ...Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_asnmth.c +246 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_cipher.c ...Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_cipher.c +143 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_dh.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_dh.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_digest.c ...Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_digest.c +143 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_dsa.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_dsa.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_ecdh.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_ecdh.c +139 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_ecdsa.c .../Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_ecdsa.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_pkmeth.c ...Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_pkmeth.c +166 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_rand.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_rand.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_rsa.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_rsa.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_store.c .../Enclave/third_party/OpenSSL_SGX/crypto/engine/tb_store.c +129 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/err/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/err/Makefile +112 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/err/err.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/err/err.c +1149 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/err/err.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/err/err.h +390 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/err/err_all.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/err/err_all.c +170 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/err/err_prn.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/err/err_prn.c +113 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/err/openssl.ec ...ing/Enclave/third_party/OpenSSL_SGX/crypto/err/openssl.ec +98 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/Makefile +761 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_b64.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_b64.c +573 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_enc.c +437 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_md.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_md.c +272 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_ok.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/bio_ok.c +624 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/c_all.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/c_all.c +85 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/c_allc.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/c_allc.c +241 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/c_alld.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/c_alld.c +114 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/digest.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/digest.c +408 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_aes.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_aes.c +2031 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_aes_cbc_hmac_sha1.c .../third_party/OpenSSL_SGX/crypto/evp/e_aes_cbc_hmac_sha1.c +1010 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_aes_cbc_hmac_sha256.c ...hird_party/OpenSSL_SGX/crypto/evp/e_aes_cbc_hmac_sha256.c +989 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_bf.c ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_bf.c +87 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_camellia.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_camellia.c +394 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_cast.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_cast.c +89 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_des.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_des.c +269 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_des3.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_des3.c +497 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_dsa.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_dsa.c +69 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_idea.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_idea.c +119 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_null.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_null.c +100 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_old.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_old.c +164 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_rc2.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_rc2.c +235 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_rc4.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_rc4.c +133 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_rc4_hmac_md5.c ...clave/third_party/OpenSSL_SGX/crypto/evp/e_rc4_hmac_md5.c +312 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_rc5.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_rc5.c +122 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_seed.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_seed.c +83 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_xcbc_d.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/e_xcbc_d.c +130 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/encode.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/encode.c +460 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp.h +1536 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_acnf.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_acnf.c +73 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_cnf.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_cnf.c +118 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_enc.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_enc.c +673 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_err.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_err.c +255 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_extra_test.c ...clave/third_party/OpenSSL_SGX/crypto/evp/evp_extra_test.c +489 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_key.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_key.c +197 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_lib.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_lib.c +391 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_locl.h ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_locl.h +373 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_pbe.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_pbe.c +312 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_pkey.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_pkey.c +229 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_test.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/evp_test.c +598 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/evptests.txt ...g/Enclave/third_party/OpenSSL_SGX/crypto/evp/evptests.txt +401 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_dss.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_dss.c +104 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_dss1.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_dss1.c +105 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_ecdsa.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_ecdsa.c +154 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_md2.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_md2.c +106 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_md4.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_md4.c +108 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_md5.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_md5.c +107 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_mdc2.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_mdc2.c +108 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_null.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_null.c +98 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_ripemd.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_ripemd.c +107 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_sha.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_sha.c +106 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_sha1.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_sha1.c +235 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_sigver.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_sigver.c +203 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_wp.c ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/m_wp.c +48 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/names.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/names.c +215 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/openbsd_hw.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/evp/openbsd_hw.c +453 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p5_crpt.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p5_crpt.c +149 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p5_crpt2.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/p5_crpt2.c +334 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_dec.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_dec.c +87 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_enc.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_enc.c +87 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_lib.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_lib.c +464 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_open.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_open.c +129 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_seal.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_seal.c +121 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_sign.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_sign.c +133 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_verify.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/p_verify.c +116 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/pmeth_fn.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/pmeth_fn.c +348 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/pmeth_gn.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/evp/pmeth_gn.c +222 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/evp/pmeth_lib.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/evp/pmeth_lib.c +591 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ex_data.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/ex_data.c +653 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/fips_err.h ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/fips_err.h +223 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/fips_ers.c ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/fips_ers.c +7 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/Makefile +112 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hm_ameth.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hm_ameth.c +167 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hm_pmeth.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hm_pmeth.c +265 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hmac.c ...saging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hmac.c +268 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hmac.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hmac.h +109 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hmactest.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/hmac/hmactest.c +335 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ia64cpuid.S ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ia64cpuid.S +167 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/idea/Makefile +91 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_cbc.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_cbc.c +171 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_cfb64.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_cfb64.c +123 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_ecb.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_ecb.c +88 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_ofb64.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_ofb64.c +110 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_skey.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/idea/i_skey.c +171 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/idea.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/idea/idea.h +105 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/idea_lcl.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/idea/idea_lcl.h +216 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/idea_spd.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/idea/idea_spd.c +283 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/ideatest.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/idea/ideatest.c +232 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/idea/version ...aging/Enclave/third_party/OpenSSL_SGX/crypto/idea/version +12 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/include/internal/bn_conf.h ...third_party/OpenSSL_SGX/crypto/include/internal/bn_conf.h +28 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/include/internal/dso_conf.h ...hird_party/OpenSSL_SGX/crypto/include/internal/dso_conf.h +16 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/install-crypto.com ...Enclave/third_party/OpenSSL_SGX/crypto/install-crypto.com +196 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/jpake/Makefile ...ing/Enclave/third_party/OpenSSL_SGX/crypto/jpake/Makefile +66 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpake.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpake.c +516 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpake.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpake.h +128 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpake_err.c .../Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpake_err.c +108 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpaketest.c .../Enclave/third_party/OpenSSL_SGX/crypto/jpake/jpaketest.c +185 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/krb5/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/krb5/Makefile +86 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/krb5/krb5_asn.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/krb5/krb5_asn.c +162 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/krb5/krb5_asn.h ...ng/Enclave/third_party/OpenSSL_SGX/crypto/krb5/krb5_asn.h +240 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/Makefile ...ing/Enclave/third_party/OpenSSL_SGX/crypto/lhash/Makefile +90 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lh_stats.c ...g/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lh_stats.c +246 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lh_test.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lh_test.c +88 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lhash.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lhash.c +458 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lhash.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/lhash.h +240 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/num.pl ...aging/Enclave/third_party/OpenSSL_SGX/crypto/lhash/num.pl +17 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/md2/Makefile +91 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2.c +119 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2.h +94 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2_dgst.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2_dgst.c +224 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2_one.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2_one.c +96 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2test.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/md2/md2test.c +142 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md32_common.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/md32_common.h +436 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/md4/Makefile +91 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4.c +121 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4.h +119 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4_dgst.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4_dgst.c +199 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4_locl.h ...ing/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4_locl.h +113 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4_one.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4_one.c +96 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4s.cpp ...aging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4s.cpp +78 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4test.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/md4/md4test.c +133 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/md5/Makefile +107 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-586.pl ...Enclave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-586.pl +307 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-ia64.S ...Enclave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-ia64.S +992 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-sparcv9.pl ...ave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-sparcv9.pl +430 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-x86_64.pl ...lave/third_party/OpenSSL_SGX/crypto/md5/asm/md5-x86_64.pl +370 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5.c +121 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5.h ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5.h +119 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5_dgst.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5_dgst.c +216 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5_locl.h ...ing/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5_locl.h +133 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5_one.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5_one.c +96 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5s.cpp ...aging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5s.cpp +78 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5test.c ...ging/Enclave/third_party/OpenSSL_SGX/crypto/md5/md5test.c +138 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/Makefile +93 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2.h +94 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2_one.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2_one.c +76 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2dgst.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2dgst.c +196 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2test.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/mdc2/mdc2test.c +146 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mem.c ...ve_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mem.c +461 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mem_clr.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/mem_clr.c +75 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/mem_dbg.c ...essaging/Enclave/third_party/OpenSSL_SGX/crypto/mem_dbg.c +830 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/Makefile ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/Makefile +160 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/aesni-gcm-x86_64.pl ...rd_party/OpenSSL_SGX/crypto/modes/asm/aesni-gcm-x86_64.pl +1057 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-alpha.pl ...e/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-alpha.pl +460 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-armv4.pl ...e/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-armv4.pl +498 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-ia64.pl ...ve/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-ia64.pl +463 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-parisc.pl .../third_party/OpenSSL_SGX/crypto/modes/asm/ghash-parisc.pl +731 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-s390x.pl ...e/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-s390x.pl +260 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-sparcv9.pl ...third_party/OpenSSL_SGX/crypto/modes/asm/ghash-sparcv9.pl +573 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-x86.pl ...ave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-x86.pl +1393 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghash-x86_64.pl .../third_party/OpenSSL_SGX/crypto/modes/asm/ghash-x86_64.pl +1753 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghashp8-ppc.pl ...e/third_party/OpenSSL_SGX/crypto/modes/asm/ghashp8-ppc.pl +234 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/asm/ghashv8-armx.pl .../third_party/OpenSSL_SGX/crypto/modes/asm/ghashv8-armx.pl +409 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/cbc128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/cbc128.c +207 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/ccm128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/ccm128.c +479 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/cfb128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/cfb128.c +254 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/ctr128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/ctr128.c +263 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/cts128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/cts128.c +544 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/gcm128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/gcm128.c +2371 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/modes.h ...ging/Enclave/third_party/OpenSSL_SGX/crypto/modes/modes.h +163 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/modes_lcl.h .../Enclave/third_party/OpenSSL_SGX/crypto/modes/modes_lcl.h +143 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/ofb128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/ofb128.c +124 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/wrap128.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/modes/wrap128.c +138 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/modes/xts128.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/modes/xts128.c +204 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_dir.c ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_dir.c +87 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_dir.h ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_dir.h +55 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_dir_test.c ...aging/Enclave/third_party/OpenSSL_SGX/crypto/o_dir_test.c +68 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_fips.c ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_fips.c +96 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_init.c ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_init.c +86 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_str.c ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_str.c +116 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_str.h ..._messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_str.h +69 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_time.c ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_time.c +474 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_time.h ...messaging/Enclave/third_party/OpenSSL_SGX/crypto/o_time.h +70 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/Makefile ...g/Enclave/third_party/OpenSSL_SGX/crypto/objects/Makefile +132 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/o_names.c .../Enclave/third_party/OpenSSL_SGX/crypto/objects/o_names.c +367 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_dat.c .../Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_dat.c +801 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_dat.h .../Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_dat.h +5319 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_dat.pl ...Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_dat.pl +307 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_err.c .../Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_err.c +100 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_lib.c .../Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_lib.c +135 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_mac.h .../Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_mac.h +4194 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_mac.num ...nclave/third_party/OpenSSL_SGX/crypto/objects/obj_mac.num +957 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_xref.c ...Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_xref.c +222 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_xref.h ...Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_xref.h +99 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/obj_xref.txt ...clave/third_party/OpenSSL_SGX/crypto/objects/obj_xref.txt +58 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/objects.README ...ave/third_party/OpenSSL_SGX/crypto/objects/objects.README +44 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/objects.h .../Enclave/third_party/OpenSSL_SGX/crypto/objects/objects.h +1143 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/objects.pl ...Enclave/third_party/OpenSSL_SGX/crypto/objects/objects.pl +240 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/objects.txt ...nclave/third_party/OpenSSL_SGX/crypto/objects/objects.txt +1350 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/objects/objxref.pl ...Enclave/third_party/OpenSSL_SGX/crypto/objects/objxref.pl +116 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/Makefile ...ging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/Makefile +215 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp.h ...saging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp.h +637 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_asn.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_asn.c +183 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_cl.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_cl.c +385 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_err.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_err.c +149 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_ext.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_ext.c +566 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_ht.c ...ing/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_ht.c +555 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_lib.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_lib.c +290 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_prn.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_prn.c +299 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_srv.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_srv.c +271 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_vfy.c ...ng/Enclave/third_party/OpenSSL_SGX/crypto/ocsp/ocsp_vfy.c +454 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/opensslconf.h.in ...g/Enclave/third_party/OpenSSL_SGX/crypto/opensslconf.h.in +154 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/opensslv.h ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/opensslv.h +97 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/ossl_typ.h ...ssaging/Enclave/third_party/OpenSSL_SGX/crypto/ossl_typ.h +213 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/pariscid.pl ...saging/Enclave/third_party/OpenSSL_SGX/crypto/pariscid.pl +225 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/pem/Makefile ...aging/Enclave/third_party/OpenSSL_SGX/crypto/pem/Makefile +261 -0
- ebc_enclave_messaging/Enclave/third_party/OpenSSL_SGX/crypto/pem/message ...saging/Enclave/third_party/OpenSSL_SGX/crypto/pem/message +16 -0
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.
.gitmodules
0 → 100644