├── .idea ├── .name ├── PaXoS_PSI_New.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── CMakeFiles ├── CMakeDirectoryInformation.cmake ├── CMakeOutput.log ├── Makefile.cmake ├── Makefile2 ├── TargetDirectories.txt ├── cmake.check_cache ├── feature_tests.bin ├── feature_tests.c ├── feature_tests.cxx └── progress.marks ├── CMakeLists.txt ├── Makefile ├── README.md ├── Tests ├── CMakeFiles │ ├── CMakeDirectoryInformation.cmake │ └── libOTe_Tests.dir │ │ ├── CXX.includecache │ │ ├── CuckooGraph_Tests.cpp.o │ │ ├── DependInfo.cmake │ │ ├── NcoOT_Tests.cpp.o │ │ ├── PSI_Tests.cpp.o │ │ ├── build.make │ │ ├── depend.internal │ │ ├── depend.make │ │ └── flags.make ├── Makefile └── cmake_install.cmake ├── bin ├── Parties.txt └── frontend.exe ├── core ├── frontend ├── CMakeFiles │ ├── CMakeDirectoryInformation.cmake │ ├── frontend.exe.dir │ │ ├── CLP.cpp.o │ │ ├── CXX.includecache │ │ ├── DependInfo.cmake │ │ ├── Hasher.cpp.o │ │ ├── ObliviousDictionary.cpp.o │ │ ├── ProtocolParty.cpp.o │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── depend.internal │ │ ├── depend.make │ │ ├── ecdhMain.cpp.o │ │ ├── flags.make │ │ ├── gf2e_mat_solve.cpp.o │ │ ├── link.txt │ │ ├── main.cpp.o │ │ ├── progress.make │ │ ├── signalHandle.cpp.o │ │ └── util.cpp.o │ └── progress.marks ├── CMakeLists.txt ├── Hasher.cpp ├── Hasher.h ├── Makefile ├── ObliviousDictionary.cpp ├── ObliviousDictionary.h ├── ProtocolParty.cpp ├── ProtocolParty.h ├── cmake_install.cmake ├── frontend.vcxproj ├── frontend.vcxproj.filters ├── gf2e_mat_solve.cpp ├── gf2e_mat_solve.h ├── main.cpp ├── main.h └── xxHash │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── appveyor.yml │ ├── cmake_unofficial │ ├── .gitignore │ ├── CMakeLists.txt │ └── README.md │ ├── doc │ ├── README.md │ └── xxhash_spec.md │ ├── tests │ └── bench │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── benchHash.c │ │ ├── benchHash.h │ │ ├── benchfn.c │ │ ├── benchfn.h │ │ ├── bhDisplay.c │ │ ├── bhDisplay.h │ │ ├── hashes.h │ │ ├── main.c │ │ ├── timefn.c │ │ └── timefn.h │ ├── xxh3.h │ ├── xxhash.c │ ├── xxhash.h │ ├── xxhsum.1 │ ├── xxhsum.1.md │ └── xxhsum.c ├── libOTe ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── buildAll.ps1 ├── copySourceToLinux.ps1 ├── cryptoTools │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── copySourceToLinux.ps1 │ ├── cryptoTools │ │ ├── CMakeLists.txt │ │ ├── Common │ │ │ ├── BitIterator.h │ │ │ ├── BitVector.cpp │ │ │ ├── BitVector.h │ │ │ ├── CLP.cpp │ │ │ ├── CLP.h │ │ │ ├── CuckooIndex.cpp │ │ │ ├── CuckooIndex.h │ │ │ ├── Defines.cpp │ │ │ ├── Defines.h │ │ │ ├── Finally.h │ │ │ ├── Log.cpp │ │ │ ├── Log.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixView.h │ │ │ ├── TestCollection.cpp │ │ │ ├── TestCollection.h │ │ │ ├── ThreadBarrier.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ └── Version.h │ │ ├── Crypto │ │ │ ├── AES.cpp │ │ │ ├── AES.h │ │ │ ├── Blake2.cpp │ │ │ ├── Blake2.h │ │ │ ├── Commit.h │ │ │ ├── Curve.cpp │ │ │ ├── Curve.h │ │ │ ├── PRNG.cpp │ │ │ ├── PRNG.h │ │ │ ├── RandomOracle.h │ │ │ ├── asm │ │ │ │ ├── sha_lnx.S │ │ │ │ └── sha_win64.asm │ │ │ ├── blake2 │ │ │ │ ├── blake2-config.h │ │ │ │ ├── blake2-impl.h │ │ │ │ ├── blake2.h │ │ │ │ ├── blake2b-load-sse2.h │ │ │ │ ├── blake2b-load-sse41.h │ │ │ │ ├── blake2b-round.h │ │ │ │ ├── blake2b.c │ │ │ │ ├── blake2bp.c │ │ │ │ └── blake2xb.c │ │ │ ├── sha1.cpp │ │ │ └── sha1.h │ │ ├── Network │ │ │ ├── Channel.cpp │ │ │ ├── Channel.h │ │ │ ├── Endpoint.h │ │ │ ├── IOService.cpp │ │ │ ├── IOService.h │ │ │ ├── IoBuffer.cpp │ │ │ ├── IoBuffer.h │ │ │ ├── Session.cpp │ │ │ ├── Session.h │ │ │ └── SocketAdapter.h │ │ ├── cryptoTools.vcxproj │ │ ├── cryptoTools.vcxproj.filters │ │ ├── cryptoToolsconfig.cmake │ │ └── gsl │ │ │ ├── GSL.natvis │ │ │ ├── gls-lite.hpp │ │ │ ├── gsl │ │ │ ├── gsl_algorithm │ │ │ ├── gsl_assert │ │ │ ├── gsl_byte │ │ │ ├── gsl_util │ │ │ ├── multi_span │ │ │ ├── span │ │ │ └── string_span │ ├── cryptotools-config.cmake │ ├── frontend_cryptoTools │ │ ├── CMakeLists.txt │ │ ├── Tutorials │ │ │ ├── Network.cpp │ │ │ └── Network.h │ │ ├── frontend_cryptoTools.vcxproj │ │ ├── frontend_cryptoTools.vcxproj.filters │ │ ├── main.cpp │ │ ├── signalHandle.cpp │ │ └── signalHandle.h │ ├── readme.md │ ├── testsVS_cryptoTools │ │ ├── AES_TestsVS.cpp │ │ ├── BtChannel_TestsVS.cpp │ │ ├── Cuckoo_TestsVS.cpp │ │ ├── Ecc_TestsVS.cpp │ │ ├── Misc_Tests_VS.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── testsVS_cryptoTools.vcxproj │ │ └── testsVS_cryptoTools.vcxproj.filters │ ├── tests_cryptoTools │ │ ├── AES_Tests.cpp │ │ ├── AES_Tests.h │ │ ├── BtChannel_Tests.cpp │ │ ├── BtChannel_Tests.h │ │ ├── CMakeLists.txt │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── Cuckoo_Tests.cpp │ │ ├── Cuckoo_Tests.h │ │ ├── Ecc_Tests.cpp │ │ ├── Ecc_Tests.h │ │ ├── Misc_Tests.cpp │ │ ├── Misc_Tests.h │ │ ├── SimpleCuckoo.cpp │ │ ├── SimpleCuckoo.h │ │ ├── UnitTests.cpp │ │ ├── UnitTests.h │ │ ├── tests_cryptoTools.vcxproj │ │ └── tests_cryptoTools.vcxproj.filters │ └── thirdparty │ │ ├── linux │ │ ├── all.get │ │ ├── boost.get │ │ └── miracl.get │ │ └── win │ │ ├── getBoost.ps1 │ │ └── getMiracl.ps1 ├── frontend │ ├── CMakeLists.txt │ ├── frontend.vcxproj │ ├── frontend.vcxproj.filters │ ├── main.cpp │ ├── main.h │ ├── signalHandle.cpp │ ├── signalHandle.h │ ├── util.cpp │ └── util.h ├── lib │ └── readelfoutput ├── libOTe │ ├── Base │ │ ├── naor-pinkas.cpp │ │ └── naor-pinkas.h │ ├── CMakeLists.txt │ ├── NChooseK │ │ ├── AknOtReceiver.cpp │ │ ├── AknOtReceiver.h │ │ ├── AknOtSender.cpp │ │ └── AknOtSender.h │ ├── NChooseOne │ │ ├── Kkrt │ │ │ ├── KkrtDefines.h │ │ │ ├── KkrtNcoOtReceiver.cpp │ │ │ ├── KkrtNcoOtReceiver.h │ │ │ ├── KkrtNcoOtSender.cpp │ │ │ └── KkrtNcoOtSender.h │ │ ├── NcoOtExt.h │ │ ├── Oos │ │ │ ├── OosDefines.h │ │ │ ├── OosNcoOtReceiver.cpp │ │ │ ├── OosNcoOtReceiver.h │ │ │ ├── OosNcoOtSender.cpp │ │ │ └── OosNcoOtSender.h │ │ └── RR17 │ │ │ ├── Rr17NcoOtReceiver.cpp │ │ │ ├── Rr17NcoOtReceiver.h │ │ │ ├── Rr17NcoOtSender.cpp │ │ │ └── Rr17NcoOtSender.h │ ├── Tools │ │ ├── LinearCode.cpp │ │ ├── LinearCode.h │ │ ├── Tools.cpp │ │ ├── Tools.h │ │ ├── bch511.h │ │ └── bch511.txt │ ├── TwoChooseOne │ │ ├── IknpDotExtReceiver.cpp │ │ ├── IknpDotExtReceiver.h │ │ ├── IknpDotExtSender.cpp │ │ ├── IknpDotExtSender.h │ │ ├── IknpOtExtReceiver.cpp │ │ ├── IknpOtExtReceiver.h │ │ ├── IknpOtExtSender.cpp │ │ ├── IknpOtExtSender.h │ │ ├── KosDotExtReceiver.cpp │ │ ├── KosDotExtReceiver.h │ │ ├── KosDotExtSender.cpp │ │ ├── KosDotExtSender.h │ │ ├── KosOtExtReceiver.cpp │ │ ├── KosOtExtReceiver.h │ │ ├── KosOtExtSender.cpp │ │ ├── KosOtExtSender.h │ │ ├── LzKosOtExtReceiver.cpp │ │ ├── LzKosOtExtReceiver.h │ │ ├── LzKosOtExtSender.cpp │ │ ├── LzKosOtExtSender.h │ │ ├── OTExtInterface.h │ │ └── TcoOtDefines.h │ ├── libOTe.vcxproj.filters │ └── libOTe.vcxproj.vcxproj ├── libOTe_Tests │ ├── AknOt_Tests.cpp │ ├── AknOt_Tests.h │ ├── BaseOT_Tests.cpp │ ├── BaseOT_Tests.h │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── Common.h │ ├── NcoOT_Tests.cpp │ ├── NcoOT_Tests.h │ ├── OTOracleReceiver.cpp │ ├── OTOracleReceiver.h │ ├── OTOracleSender.cpp │ ├── OTOracleSender.h │ ├── OT_Tests.cpp │ ├── OT_Tests.h │ ├── UnitTests.cpp │ ├── UnitTests.h │ ├── libOTe_Tests.vcxproj.filters │ ├── libOTe_Tests.vcxproj.vcxproj │ └── testData │ │ ├── code1280_BCH511.h │ │ ├── code1280_BCH511.txt │ │ ├── code128_BCH511.h │ │ ├── code128_BCH511.txt │ │ ├── code256_BCH511.h │ │ ├── code256_BCH511.txt │ │ ├── code384_BCH511.h │ │ ├── code384_BCH511.txt │ │ ├── code640_BCH511.h │ │ └── code640_BCH511.txt └── libOTe_TestsVS │ ├── AknOT_TestsVS.cpp │ ├── BaseOT_TestsVS.cpp │ ├── OT_TestsVS.cpp │ ├── libOTe_TestsVS.filters │ ├── libOTe_TestsVS.vcxproj │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── libPSI ├── CMakeFiles │ ├── 3.10.2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeOutput.log │ ├── cmake.check_cache │ ├── feature_tests.bin │ ├── feature_tests.c │ ├── feature_tests.cxx │ ├── libPSI.dir │ │ ├── CMakeFiles │ │ │ └── 3.10.2 │ │ │ │ └── CompilerIdCXX │ │ │ │ └── CMakeCXXCompilerId.cpp.o │ │ ├── CXX.includecache │ │ ├── DependInfo.cmake │ │ ├── ECDH │ │ │ ├── EcdhPsiReceiver.cpp.o │ │ │ └── EcdhPsiSender.cpp.o │ │ ├── PRTY │ │ │ ├── PrtyReceiver.cpp.o │ │ │ └── PrtySender.cpp.o │ │ ├── PRTY2 │ │ │ ├── PrtyMOtReceiver.cpp.o │ │ │ ├── PrtyMOtSender.cpp.o │ │ │ ├── PrtyMPsiReceiver.cpp.o │ │ │ └── PrtyMPsiSender.cpp.o │ │ ├── Poly │ │ │ ├── polyFFT.cpp.o │ │ │ ├── polyFFT2.cpp.o │ │ │ └── polyNTL.cpp.o │ │ ├── Tools │ │ │ ├── BalancedIndex.cpp.o │ │ │ ├── CuckooGraph.cpp.o │ │ │ ├── CuckooHasher.cpp.o │ │ │ ├── GaussianElimination.cpp.o │ │ │ └── SimpleIndex_.cpp.o │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── cmake_clean_target.cmake │ │ ├── depend.internal │ │ ├── depend.make │ │ ├── flags.make │ │ ├── link.txt │ │ └── progress.make │ └── progress.marks ├── CMakeLists.txt ├── Makefile ├── PRTY2 │ ├── PrtyMDefines.h │ ├── PrtyMOtReceiver.cpp │ ├── PrtyMOtReceiver.h │ ├── PrtyMOtSender.cpp │ └── PrtyMOtSender.h ├── PsiDefines.h ├── Tools │ ├── mx_132_by_583.h │ ├── mx_138_by_594.h │ ├── mx_144_by_605.h │ ├── mx_150_by_616.h │ ├── mx_156_by_627.h │ ├── mx_162_by_638.h │ ├── mx_168_by_649.h │ ├── mx_174_by_660.h │ ├── mx_210_by_732.h │ ├── mx_217_by_744.h │ ├── mx_231_by_768.h │ ├── mx_238_by_776.h │ ├── mx_65_by_448.h │ ├── mx_72_by_462.h │ ├── mx_84_by_495.h │ ├── mx_90_by_495.h │ └── mx_linear_code.h ├── libPSI.vcxproj.filters └── libPSI.vcxproj.vcxproj └── thirdparty └── linux ├── all.get ├── gf2x.get ├── gf2x ├── .deps │ ├── libgf2x_la-gf2x.Plo │ ├── libgf2x_la-toom-gpl.Plo │ ├── libgf2x_la-toom.Plo │ └── libgf2x_la-toom128.Plo ├── .libs │ ├── libgf2x.a │ ├── libgf2x.la │ ├── libgf2x.lai │ ├── libgf2x.so │ ├── libgf2x.so.1 │ ├── libgf2x.so.1.0.2 │ ├── libgf2x_la-gf2x.o │ ├── libgf2x_la-toom-gpl.o │ ├── libgf2x_la-toom.o │ └── libgf2x_la-toom128.o ├── AUTHORS ├── BUGS ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── Makefile ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TODO ├── aclocal.m4 ├── already_tuned │ ├── armv7l │ │ ├── gf2x-thresholds.h │ │ ├── gf2x_mul1.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul5.h │ │ └── gf2x_mul6.h │ ├── coreihwl │ │ ├── gf2x-thresholds.h │ │ ├── gf2x_mul1.h │ │ ├── gf2x_mul2.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul4.h │ │ ├── gf2x_mul5.h │ │ ├── gf2x_mul6.h │ │ └── gf2x_mul9.h │ ├── generic │ │ ├── gf2x_mul2.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul4.h │ │ ├── gf2x_mul5.h │ │ ├── gf2x_mul6.h │ │ ├── gf2x_mul7.h │ │ ├── gf2x_mul8.h │ │ └── gf2x_mul9.h │ ├── generic32 │ │ ├── gf2x-thresholds.h │ │ └── gf2x_mul1.h │ ├── generic64 │ │ ├── gf2x-thresholds.h │ │ └── gf2x_mul1.h │ ├── opteron │ │ ├── gf2x-thresholds.h │ │ └── gf2x_mul1.h │ ├── tuned │ │ └── README │ ├── x86_64 │ │ ├── gf2x-thresholds.h │ │ ├── gf2x_mul1.h │ │ ├── gf2x_mul2.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul4.h │ │ ├── gf2x_mul5.h │ │ ├── gf2x_mul6.h │ │ ├── gf2x_mul7.h │ │ ├── gf2x_mul8.h │ │ └── gf2x_mul9.h │ ├── x86_64_nosse │ │ ├── gf2x-thresholds.h │ │ ├── gf2x_mul1.h │ │ ├── gf2x_mul2.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul4.h │ │ ├── gf2x_mul5.h │ │ ├── gf2x_mul6.h │ │ ├── gf2x_mul7.h │ │ ├── gf2x_mul8.h │ │ └── gf2x_mul9.h │ ├── x86_64_pclmul │ │ ├── gf2x-thresholds.h │ │ ├── gf2x_mul1.h │ │ ├── gf2x_mul2.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul4.h │ │ ├── gf2x_mul5.h │ │ ├── gf2x_mul6.h │ │ ├── gf2x_mul7.h │ │ ├── gf2x_mul8.h │ │ └── gf2x_mul9.h │ └── x86_sse2 │ │ ├── gf2x-thresholds.h │ │ ├── gf2x_mul1.h │ │ ├── gf2x_mul2.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul4.h │ │ ├── gf2x_mul5.h │ │ ├── gf2x_mul6.h │ │ ├── gf2x_mul7.h │ │ ├── gf2x_mul8.h │ │ └── gf2x_mul9.h ├── apps │ ├── .deps │ │ ├── factor.Po │ │ └── halfgcd.Po │ ├── COPYING │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── check-factor-000.sh │ ├── check-factor-001.sh │ ├── check-factor-002.sh │ ├── check-factor-003.sh │ ├── factor.cpp │ ├── halfgcd.cpp │ └── halfgcd.hpp ├── config.log ├── config.status ├── config │ ├── acinclude.m4 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configfsf.guess │ ├── configfsf.sub │ ├── depcomp │ ├── install-sh │ ├── libtool.m4 │ ├── ltmain.sh │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── missing │ └── test-driver ├── configure ├── configure.ac ├── fft │ ├── .deps │ │ ├── .dirstamp │ │ ├── libcantor128_la-gf2x-cantor-fft.Plo │ │ ├── libcantor128gm_la-gf2x-cantor-fft.Plo │ │ ├── libcantor128gmt_la-gf2x-cantor-fft.Plo │ │ ├── libcantor128nt_la-gf2x-cantor-fft.Plo │ │ ├── libcantor64_la-gf2x-cantor-fft.Plo │ │ ├── libcantor64gm_la-gf2x-cantor-fft.Plo │ │ ├── libcantor64gmt_la-gf2x-cantor-fft.Plo │ │ ├── libcantor64nt_la-gf2x-cantor-fft.Plo │ │ ├── libgf2x_la-gf2x-cantor-fft.Plo │ │ ├── libgf2x_la-gf2x-fake-fft.Plo │ │ ├── libgf2x_la-gf2x-ternary-fft.Plo │ │ └── libternary_la-gf2x-ternary-fft.Plo │ ├── .dirstamp │ ├── .libs │ │ ├── libgf2x_la-gf2x-ternary-fft.o │ │ ├── libternary.a │ │ ├── libternary.la │ │ └── libternary_la-gf2x-ternary-fft.o │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── fft_adapter.hpp │ ├── gf2x-cantor-fft.c │ ├── gf2x-cantor-fft.h │ ├── gf2x-fake-fft.c │ ├── gf2x-fake-fft.h │ ├── gf2x-fft.h │ ├── gf2x-ternary-fft.c │ ├── gf2x-ternary-fft.h │ ├── libgf2x_la-gf2x-ternary-fft.lo │ ├── libgf2x_la-gf2x-ternary-fft.o │ ├── libternary.la │ ├── libternary_la-gf2x-ternary-fft.lo │ ├── libternary_la-gf2x-ternary-fft.o │ └── mpfq │ │ ├── README.mpfq │ │ ├── i386 │ │ ├── mpfq_2_128.c │ │ ├── mpfq_2_128.h │ │ ├── mpfq_2_64.c │ │ └── mpfq_2_64.h │ │ ├── mpfq.h │ │ ├── mpfq_gf2n_common.h │ │ ├── mpfq_name_K.h │ │ └── x86_64 │ │ ├── mpfq_2_128.c │ │ ├── mpfq_2_128.h │ │ ├── mpfq_2_64.c │ │ └── mpfq_2_64.h ├── gf2x.c ├── gf2x.h ├── gf2x │ ├── gf2x-config-export.h │ ├── gf2x-config-export.h.in │ ├── gf2x-config.h │ ├── gf2x-config.h.in │ ├── gf2x-impl-export.h │ ├── gf2x-impl.h │ ├── gf2x-small.h │ ├── gf2x-thresholds.h │ ├── gf2x_mul1.h │ ├── gf2x_mul2.h │ ├── gf2x_mul3.h │ ├── gf2x_mul4.h │ ├── gf2x_mul5.h │ ├── gf2x_mul6.h │ ├── gf2x_mul7.h │ ├── gf2x_mul8.h │ ├── gf2x_mul9.h │ ├── stamp-h1 │ └── stamp-h2 ├── include │ ├── gf2x.h │ └── gf2x │ │ ├── gf2x-config-export.h │ │ ├── gf2x-config.h │ │ ├── gf2x-impl-export.h │ │ ├── gf2x-impl.h │ │ ├── gf2x-small.h │ │ ├── gf2x-thresholds.h │ │ ├── gf2x_mul1.h │ │ ├── gf2x_mul2.h │ │ ├── gf2x_mul3.h │ │ ├── gf2x_mul4.h │ │ ├── gf2x_mul5.h │ │ ├── gf2x_mul6.h │ │ ├── gf2x_mul7.h │ │ ├── gf2x_mul8.h │ │ └── gf2x_mul9.h ├── lib │ ├── libgf2x.a │ ├── libgf2x.la │ ├── libgf2x.so │ ├── libgf2x.so.1 │ └── libgf2x.so.1.0.2 ├── libgf2x.la ├── libgf2x_la-gf2x.lo ├── libgf2x_la-gf2x.o ├── libgf2x_la-toom-gpl.lo ├── libgf2x_la-toom-gpl.o ├── libgf2x_la-toom.lo ├── libgf2x_la-toom.o ├── libgf2x_la-toom128.lo ├── libgf2x_la-toom128.o ├── libtool ├── lowlevel │ ├── .deps │ │ ├── tune_mul1cl-mul1cl.Po │ │ ├── tune_mul2cl-mul2cl.Po │ │ ├── tune_mul2cl2-mul2cl2.Po │ │ ├── tune_mul2k-mul2k.Po │ │ ├── tune_mul2t-mul2t.Po │ │ ├── tune_mul2t2-mul2t2.Po │ │ ├── tune_mul3cl-mul3cl.Po │ │ ├── tune_mul3k-mul3k.Po │ │ ├── tune_mul3k2-mul3k2.Po │ │ ├── tune_mul3t-mul3t.Po │ │ ├── tune_mul4cl1-mul4cl1.Po │ │ ├── tune_mul4clk-mul4clk.Po │ │ ├── tune_mul4k-mul4k.Po │ │ ├── tune_mul4t-mul4t.Po │ │ ├── tune_mul5clk2-mul5clk2.Po │ │ ├── tune_mul5clk_c-mul5clk_c.Po │ │ ├── tune_mul5k3-mul5k3.Po │ │ ├── tune_mul5k_a-mul5k_a.Po │ │ ├── tune_mul5k_b-mul5k_b.Po │ │ ├── tune_mul5k_c-mul5k_c.Po │ │ ├── tune_mul5k_d-mul5k_d.Po │ │ ├── tune_mul6clk2-mul6clk2.Po │ │ ├── tune_mul6k_a-mul6k_a.Po │ │ ├── tune_mul6k_b-mul6k_b.Po │ │ ├── tune_mul6k_c-mul6k_c.Po │ │ ├── tune_mul7cl-mul7cl.Po │ │ ├── tune_mul7k-mul7k.Po │ │ ├── tune_mul7k3-mul7k3.Po │ │ ├── tune_mul8k-mul8k.Po │ │ ├── tune_mul9cl-mul9cl.Po │ │ ├── tune_mul9clk2-mul9clk2.Po │ │ ├── tune_mul9k-mul9k.Po │ │ ├── tune_mul9k2-mul9k2.Po │ │ └── tune_mul9k3-mul9k3.Po │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README.adding_code │ ├── gen_bb_mul_code.c │ ├── mul1cl.c │ ├── mul2cl.c │ ├── mul2cl2.c │ ├── mul2k.c │ ├── mul2t.c │ ├── mul2t2.c │ ├── mul3cl.c │ ├── mul3k.c │ ├── mul3k2.c │ ├── mul3k3.c │ ├── mul3t.c │ ├── mul4cl1.c │ ├── mul4clk.c │ ├── mul4k.c │ ├── mul4t.c │ ├── mul5clk2.c │ ├── mul5clk_c.c │ ├── mul5k3.c │ ├── mul5k_a.c │ ├── mul5k_b.c │ ├── mul5k_c.c │ ├── mul5k_d.c │ ├── mul6clk2.c │ ├── mul6k_a.c │ ├── mul6k_b.c │ ├── mul6k_c.c │ ├── mul7cl.c │ ├── mul7k.c │ ├── mul7k3.c │ ├── mul8k.c │ ├── mul9cl.c │ ├── mul9clk2.c │ ├── mul9k.c │ ├── mul9k2.c │ └── mul9k3.c ├── src │ ├── .deps │ │ ├── check_mul1cl-check_small_size.Po │ │ ├── check_mul2cl-check_small_size.Po │ │ ├── check_mul2cl2-check_small_size.Po │ │ ├── check_mul2k-check_small_size.Po │ │ ├── check_mul2t-check_small_size.Po │ │ ├── check_mul2t2-check_small_size.Po │ │ ├── check_mul3cl-check_small_size.Po │ │ ├── check_mul3k-check_small_size.Po │ │ ├── check_mul3k2-check_small_size.Po │ │ ├── check_mul3t-check_small_size.Po │ │ ├── check_mul4cl1-check_small_size.Po │ │ ├── check_mul4clk-check_small_size.Po │ │ ├── check_mul4k-check_small_size.Po │ │ ├── check_mul4t-check_small_size.Po │ │ ├── check_mul5clk2-check_small_size.Po │ │ ├── check_mul5clk_c-check_small_size.Po │ │ ├── check_mul5k3-check_small_size.Po │ │ ├── check_mul5k_a-check_small_size.Po │ │ ├── check_mul5k_b-check_small_size.Po │ │ ├── check_mul5k_c-check_small_size.Po │ │ ├── check_mul5k_d-check_small_size.Po │ │ ├── check_mul6clk2-check_small_size.Po │ │ ├── check_mul6k_a-check_small_size.Po │ │ ├── check_mul6k_b-check_small_size.Po │ │ ├── check_mul6k_c-check_small_size.Po │ │ ├── check_mul7cl-check_small_size.Po │ │ ├── check_mul7k-check_small_size.Po │ │ ├── check_mul7k3-check_small_size.Po │ │ ├── check_mul8k-check_small_size.Po │ │ ├── check_mul9cl-check_small_size.Po │ │ ├── check_mul9clk2-check_small_size.Po │ │ ├── check_mul9k-check_small_size.Po │ │ ├── check_mul9k2-check_small_size.Po │ │ ├── check_mul9k3-check_small_size.Po │ │ ├── libtuneup_s1_la-tuneup_1.Plo │ │ ├── libtuneup_s2_la-tuneup_2.Plo │ │ ├── libtuneup_s3_la-tuneup_3.Plo │ │ ├── libtuneup_s4_la-tuneup_4.Plo │ │ ├── libtuneup_s5_la-tuneup_5.Plo │ │ ├── libtuneup_s6_la-tuneup_6.Plo │ │ ├── libtuneup_s7_la-tuneup_7.Plo │ │ ├── libtuneup_s8_la-tuneup_8.Plo │ │ ├── libtuneup_s9_la-tuneup_9.Plo │ │ ├── modify-thresholds.Po │ │ ├── replace.Po │ │ ├── timing.Plo │ │ ├── tune_gen_mul1_w32k2-gen_mul1_w32k2.Po │ │ ├── tune_gen_mul1_w32k3-gen_mul1_w32k3.Po │ │ ├── tune_gen_mul1_w32k4-gen_mul1_w32k4.Po │ │ ├── tune_gen_mul1_w32k5-gen_mul1_w32k5.Po │ │ ├── tune_gen_mul1_w32k6-gen_mul1_w32k6.Po │ │ ├── tune_gen_mul1_w64k2-gen_mul1_w64k2.Po │ │ ├── tune_gen_mul1_w64k3-gen_mul1_w64k3.Po │ │ ├── tune_gen_mul1_w64k4-gen_mul1_w64k4.Po │ │ ├── tune_gen_mul1_w64k5-gen_mul1_w64k5.Po │ │ ├── tune_gen_mul1_w64k6-gen_mul1_w64k6.Po │ │ ├── tunefft.Po │ │ ├── tunetoom.Po │ │ └── tuning-common.Po │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── check_mul1cl │ ├── check_mul1cl-check_small_size.o │ ├── check_mul1cl.log │ ├── check_mul1cl.trs │ ├── check_mul2cl │ ├── check_mul2cl-check_small_size.o │ ├── check_mul2cl.log │ ├── check_mul2cl.trs │ ├── check_mul2cl2 │ ├── check_mul2cl2-check_small_size.o │ ├── check_mul2cl2.log │ ├── check_mul2cl2.trs │ ├── check_mul2k │ ├── check_mul2k-check_small_size.o │ ├── check_mul2k.log │ ├── check_mul2k.trs │ ├── check_mul2t │ ├── check_mul2t-check_small_size.o │ ├── check_mul2t.log │ ├── check_mul2t.trs │ ├── check_mul2t2 │ ├── check_mul2t2-check_small_size.o │ ├── check_mul2t2.log │ ├── check_mul2t2.trs │ ├── check_mul3cl │ ├── check_mul3cl-check_small_size.o │ ├── check_mul3cl.log │ ├── check_mul3cl.trs │ ├── check_mul3k │ ├── check_mul3k-check_small_size.o │ ├── check_mul3k.log │ ├── check_mul3k.trs │ ├── check_mul3k2 │ ├── check_mul3k2-check_small_size.o │ ├── check_mul3k2.log │ ├── check_mul3k2.trs │ ├── check_mul4cl1 │ ├── check_mul4cl1-check_small_size.o │ ├── check_mul4cl1.log │ ├── check_mul4cl1.trs │ ├── check_mul4clk │ ├── check_mul4clk-check_small_size.o │ ├── check_mul4clk.log │ ├── check_mul4clk.trs │ ├── check_mul4k │ ├── check_mul4k-check_small_size.o │ ├── check_mul4k.log │ ├── check_mul4k.trs │ ├── check_mul5clk2 │ ├── check_mul5clk2-check_small_size.o │ ├── check_mul5clk2.log │ ├── check_mul5clk2.trs │ ├── check_mul5clk_c │ ├── check_mul5clk_c-check_small_size.o │ ├── check_mul5clk_c.log │ ├── check_mul5clk_c.trs │ ├── check_mul5k3 │ ├── check_mul5k3-check_small_size.o │ ├── check_mul5k3.log │ ├── check_mul5k3.trs │ ├── check_mul5k_a │ ├── check_mul5k_a-check_small_size.o │ ├── check_mul5k_a.log │ ├── check_mul5k_a.trs │ ├── check_mul5k_b │ ├── check_mul5k_b-check_small_size.o │ ├── check_mul5k_b.log │ ├── check_mul5k_b.trs │ ├── check_mul5k_c │ ├── check_mul5k_c-check_small_size.o │ ├── check_mul5k_c.log │ ├── check_mul5k_c.trs │ ├── check_mul5k_d │ ├── check_mul5k_d-check_small_size.o │ ├── check_mul5k_d.log │ ├── check_mul5k_d.trs │ ├── check_mul6clk2 │ ├── check_mul6clk2-check_small_size.o │ ├── check_mul6clk2.log │ ├── check_mul6clk2.trs │ ├── check_mul6k_a │ ├── check_mul6k_a-check_small_size.o │ ├── check_mul6k_a.log │ ├── check_mul6k_a.trs │ ├── check_mul6k_b │ ├── check_mul6k_b-check_small_size.o │ ├── check_mul6k_b.log │ ├── check_mul6k_b.trs │ ├── check_mul6k_c │ ├── check_mul6k_c-check_small_size.o │ ├── check_mul6k_c.log │ ├── check_mul6k_c.trs │ ├── check_mul7cl │ ├── check_mul7cl-check_small_size.o │ ├── check_mul7cl.log │ ├── check_mul7cl.trs │ ├── check_mul7k │ ├── check_mul7k-check_small_size.o │ ├── check_mul7k.log │ ├── check_mul7k.trs │ ├── check_mul7k3 │ ├── check_mul7k3-check_small_size.o │ ├── check_mul7k3.log │ ├── check_mul7k3.trs │ ├── check_mul8k │ ├── check_mul8k-check_small_size.o │ ├── check_mul8k.log │ ├── check_mul8k.trs │ ├── check_mul9cl │ ├── check_mul9cl-check_small_size.o │ ├── check_mul9cl.log │ ├── check_mul9cl.trs │ ├── check_mul9clk2 │ ├── check_mul9clk2-check_small_size.o │ ├── check_mul9clk2.log │ ├── check_mul9clk2.trs │ ├── check_mul9k │ ├── check_mul9k-check_small_size.o │ ├── check_mul9k.log │ ├── check_mul9k.trs │ ├── check_mul9k2 │ ├── check_mul9k2-check_small_size.o │ ├── check_mul9k2.log │ ├── check_mul9k2.trs │ ├── check_mul9k3 │ ├── check_mul9k3-check_small_size.o │ ├── check_mul9k3.log │ ├── check_mul9k3.trs │ ├── check_small_size.c │ ├── gen_bb_mul_code │ ├── gen_mul1_w64k2.c │ ├── gen_mul1_w64k3.c │ ├── gen_mul1_w64k4.c │ ├── gen_mul1_w64k5.c │ ├── gen_mul1_w64k6.c │ ├── generate-test-list.pl │ ├── modify-thresholds.c │ ├── replace.c │ ├── replace.h │ ├── test-suite.log │ ├── timing.c │ ├── timing.h │ ├── tune-lowlevel.pl │ ├── tunefft.c │ ├── tunetoom.c │ ├── tuneup_1.c │ ├── tuneup_2.c │ ├── tuneup_3.c │ ├── tuneup_4.c │ ├── tuneup_5.c │ ├── tuneup_6.c │ ├── tuneup_7.c │ ├── tuneup_8.c │ ├── tuneup_9.c │ ├── tuneup_pre.c │ ├── tuning-common.c │ ├── tuning-common.h │ ├── tuning_undef_wrapper.h │ ├── tuning_undefs_1.h │ ├── tuning_undefs_2.h │ ├── tuning_undefs_3.h │ ├── tuning_undefs_4.h │ ├── tuning_undefs_5.h │ ├── tuning_undefs_6.h │ ├── tuning_undefs_7.h │ ├── tuning_undefs_8.h │ ├── tuning_undefs_9.h │ └── tuning_undefs_pre.h ├── tests │ ├── .deps │ │ ├── bench_ternary-bench.Po │ │ ├── bench_ternary-check-and-bench-common.Po │ │ ├── bench_ternary-test-tools.Po │ │ ├── check-addmul.Po │ │ ├── check-mul.Po │ │ ├── check_cantor128-check-and-bench-common.Po │ │ ├── check_cantor128-check.Po │ │ ├── check_cantor128-test-tools.Po │ │ ├── check_cantor128gm-check-and-bench-common.Po │ │ ├── check_cantor128gm-check.Po │ │ ├── check_cantor128gm-test-tools.Po │ │ ├── check_cantor128gmt-check-and-bench-common.Po │ │ ├── check_cantor128gmt-check.Po │ │ ├── check_cantor128gmt-test-tools.Po │ │ ├── check_cantor128nt-check-and-bench-common.Po │ │ ├── check_cantor128nt-check.Po │ │ ├── check_cantor128nt-test-tools.Po │ │ ├── check_cantor64-check-and-bench-common.Po │ │ ├── check_cantor64-check.Po │ │ ├── check_cantor64-test-tools.Po │ │ ├── check_cantor64gm-check-and-bench-common.Po │ │ ├── check_cantor64gm-check.Po │ │ ├── check_cantor64gm-test-tools.Po │ │ ├── check_cantor64gmt-check-and-bench-common.Po │ │ ├── check_cantor64gmt-check.Po │ │ ├── check_cantor64gmt-test-tools.Po │ │ ├── check_cantor64nt-check-and-bench-common.Po │ │ ├── check_cantor64nt-check.Po │ │ ├── check_cantor64nt-test-tools.Po │ │ ├── check_ternary-check-and-bench-common.Po │ │ ├── check_ternary-check.Po │ │ ├── check_ternary-test-tools.Po │ │ ├── check_ternaryns-check-and-bench-common.Po │ │ ├── check_ternaryns-check.Po │ │ ├── check_ternaryns-test-tools.Po │ │ └── test-tools.Po │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── bench.c │ ├── bench_ternary │ ├── bench_ternary-bench.o │ ├── bench_ternary-check-and-bench-common.o │ ├── bench_ternary-test-tools.o │ ├── check-addmul │ ├── check-addmul.c │ ├── check-addmul.log │ ├── check-addmul.o │ ├── check-addmul.trs │ ├── check-and-bench-common.c │ ├── check-and-bench-common.h │ ├── check-mul │ ├── check-mul.c │ ├── check-mul.o │ ├── check.c │ ├── check_10000_10000_1_2706ca53.log │ ├── check_10000_10000_1_2706ca53.mul │ ├── check_10000_10000_1_2706ca53.trs │ ├── check_10000_1000_1_3b8778b1.log │ ├── check_10000_1000_1_3b8778b1.mul │ ├── check_10000_1000_1_3b8778b1.trs │ ├── check_10000_100_1_f2e7cc20.log │ ├── check_10000_100_1_f2e7cc20.mul │ ├── check_10000_100_1_f2e7cc20.trs │ ├── check_10000_20_1_4d3b9b2d.log │ ├── check_10000_20_1_4d3b9b2d.mul │ ├── check_10000_20_1_4d3b9b2d.trs │ ├── check_10000_5437_1_b337c8eb.log │ ├── check_10000_5437_1_b337c8eb.mul │ ├── check_10000_5437_1_b337c8eb.trs │ ├── check_1000_1000_1_c28bc2e3.log │ ├── check_1000_1000_1_c28bc2e3.mul │ ├── check_1000_1000_1_c28bc2e3.trs │ ├── check_1000_100_1_08825281.log │ ├── check_1000_100_1_08825281.mul │ ├── check_1000_100_1_08825281.trs │ ├── check_1000_20_1_6ce07fed.log │ ├── check_1000_20_1_6ce07fed.mul │ ├── check_1000_20_1_6ce07fed.trs │ ├── check_100_100_1_5094c182.log │ ├── check_100_100_1_5094c182.mul │ ├── check_100_100_1_5094c182.trs │ ├── check_100_20_1_6dc5ac13.log │ ├── check_100_20_1_6dc5ac13.mul │ ├── check_100_20_1_6dc5ac13.trs │ ├── check_1_1_1_819ea234.log │ ├── check_1_1_1_819ea234.mul │ ├── check_1_1_1_819ea234.trs │ ├── check_20_20_1_d40a21e3.log │ ├── check_20_20_1_d40a21e3.mul │ ├── check_20_20_1_d40a21e3.trs │ ├── check_2_2_1_928e7e94.log │ ├── check_2_2_1_928e7e94.mul │ ├── check_2_2_1_928e7e94.trs │ ├── check_3_3_1_14aac2f1.log │ ├── check_3_3_1_14aac2f1.mul │ ├── check_3_3_1_14aac2f1.trs │ ├── check_4_4_1_fbc8042f.log │ ├── check_4_4_1_fbc8042f.mul │ ├── check_4_4_1_fbc8042f.trs │ ├── check_5437_1000_1_c546a34c.log │ ├── check_5437_1000_1_c546a34c.mul │ ├── check_5437_1000_1_c546a34c.trs │ ├── check_5437_100_1_8eb064ef.log │ ├── check_5437_100_1_8eb064ef.mul │ ├── check_5437_100_1_8eb064ef.trs │ ├── check_5437_20_1_ad84f617.log │ ├── check_5437_20_1_ad84f617.mul │ ├── check_5437_20_1_ad84f617.trs │ ├── check_5437_5437_1_f09c5936.log │ ├── check_5437_5437_1_f09c5936.mul │ ├── check_5437_5437_1_f09c5936.trs │ ├── check_5_5_1_049e6e28.log │ ├── check_5_5_1_049e6e28.mul │ ├── check_5_5_1_049e6e28.trs │ ├── check_6_6_1_f7fa48ac.log │ ├── check_6_6_1_f7fa48ac.mul │ ├── check_6_6_1_f7fa48ac.trs │ ├── check_785672_1271244_1_842e0d19.log │ ├── check_785672_1271244_1_842e0d19.mul │ ├── check_785672_1271244_1_842e0d19.trs │ ├── check_7_7_1_39d1a8b9.log │ ├── check_7_7_1_39d1a8b9.mul │ ├── check_7_7_1_39d1a8b9.trs │ ├── check_832040_1346269_1_8513d1fb.log │ ├── check_832040_1346269_1_8513d1fb.mul │ ├── check_832040_1346269_1_8513d1fb.trs │ ├── check_8_8_1_11334230.log │ ├── check_8_8_1_11334230.mul │ ├── check_8_8_1_11334230.trs │ ├── check_9_9_1_a499e414.log │ ├── check_9_9_1_a499e414.mul │ ├── check_9_9_1_a499e414.trs │ ├── check_ternary │ ├── check_ternary-check-and-bench-common.o │ ├── check_ternary-check.o │ ├── check_ternary-test-tools.o │ ├── check_ternary_100000_1_fca70ced.fft │ ├── check_ternary_100000_1_fca70ced.log │ ├── check_ternary_100000_1_fca70ced.trs │ ├── check_ternary_100000_2_cd1293a5.fft │ ├── check_ternary_100000_2_cd1293a5.log │ ├── check_ternary_100000_2_cd1293a5.trs │ ├── check_ternary_100000_3_91e7d307.fft │ ├── check_ternary_100000_3_91e7d307.log │ ├── check_ternary_100000_3_91e7d307.trs │ ├── check_ternary_10000_1_2706ca53.fft │ ├── check_ternary_10000_1_2706ca53.log │ ├── check_ternary_10000_1_2706ca53.trs │ ├── check_ternary_10000_2_3f32a516.fft │ ├── check_ternary_10000_2_3f32a516.log │ ├── check_ternary_10000_2_3f32a516.trs │ ├── check_ternary_10000_3_fd7bba07.fft │ ├── check_ternary_10000_3_fd7bba07.log │ ├── check_ternary_10000_3_fd7bba07.trs │ ├── check_ternary_1000_1_c28bc2e3.fft │ ├── check_ternary_1000_1_c28bc2e3.log │ ├── check_ternary_1000_1_c28bc2e3.trs │ ├── check_ternary_1000_2_77db95cc.fft │ ├── check_ternary_1000_2_77db95cc.log │ ├── check_ternary_1000_2_77db95cc.trs │ ├── check_ternary_1000_3_6dc06b2f.fft │ ├── check_ternary_1000_3_6dc06b2f.log │ ├── check_ternary_1000_3_6dc06b2f.trs │ ├── check_ternaryns │ ├── check_ternaryns-check-and-bench-common.o │ ├── check_ternaryns-check.o │ ├── check_ternaryns-test-tools.o │ ├── check_ternaryns_100000_1_fca70ced.fft │ ├── check_ternaryns_100000_1_fca70ced.log │ ├── check_ternaryns_100000_1_fca70ced.trs │ ├── check_ternaryns_100000_2_cd1293a5.fft │ ├── check_ternaryns_100000_2_cd1293a5.log │ ├── check_ternaryns_100000_2_cd1293a5.trs │ ├── check_ternaryns_100000_3_91e7d307.fft │ ├── check_ternaryns_100000_3_91e7d307.log │ ├── check_ternaryns_100000_3_91e7d307.trs │ ├── check_ternaryns_10000_1_2706ca53.fft │ ├── check_ternaryns_10000_1_2706ca53.log │ ├── check_ternaryns_10000_1_2706ca53.trs │ ├── check_ternaryns_10000_2_3f32a516.fft │ ├── check_ternaryns_10000_2_3f32a516.log │ ├── check_ternaryns_10000_2_3f32a516.trs │ ├── check_ternaryns_10000_3_fd7bba07.fft │ ├── check_ternaryns_10000_3_fd7bba07.log │ ├── check_ternaryns_10000_3_fd7bba07.trs │ ├── check_ternaryns_1000_1_c28bc2e3.fft │ ├── check_ternaryns_1000_1_c28bc2e3.log │ ├── check_ternaryns_1000_1_c28bc2e3.trs │ ├── check_ternaryns_1000_2_77db95cc.fft │ ├── check_ternaryns_1000_2_77db95cc.log │ ├── check_ternaryns_1000_2_77db95cc.trs │ ├── check_ternaryns_1000_3_6dc06b2f.fft │ ├── check_ternaryns_1000_3_6dc06b2f.log │ ├── check_ternaryns_1000_3_6dc06b2f.trs │ ├── do-check-fft.sh │ ├── do-check-mul.sh │ ├── test-suite.log │ ├── test-tools.c │ ├── test-tools.h │ └── test-tools.o ├── toom-gpl-placeholder.c ├── toom-gpl.c ├── toom.c ├── toom128.c ├── version.sh └── version.sh.in ├── gmp.get ├── ntl.get └── ntl_patch ├── ZZ_p.h ├── config.h └── lip.h /.idea/.name: -------------------------------------------------------------------------------- 1 | libPSI -------------------------------------------------------------------------------- /.idea/PaXoS_PSI_New.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/.idea/PaXoS_PSI_New.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/README.md -------------------------------------------------------------------------------- /Tests/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/CXX.includecache -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/NcoOT_Tests.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/NcoOT_Tests.cpp.o -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/PSI_Tests.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/PSI_Tests.cpp.o -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/build.make -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/depend.internal -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/depend.make -------------------------------------------------------------------------------- /Tests/CMakeFiles/libOTe_Tests.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/CMakeFiles/libOTe_Tests.dir/flags.make -------------------------------------------------------------------------------- /Tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/Makefile -------------------------------------------------------------------------------- /Tests/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/Tests/cmake_install.cmake -------------------------------------------------------------------------------- /bin/Parties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/bin/Parties.txt -------------------------------------------------------------------------------- /bin/frontend.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/bin/frontend.exe -------------------------------------------------------------------------------- /core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/core -------------------------------------------------------------------------------- /frontend/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/CLP.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/CLP.cpp.o -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/CXX.includecache -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/DependInfo.cmake -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/Hasher.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/Hasher.cpp.o -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/build.make -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/depend.internal -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/depend.make -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/ecdhMain.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/ecdhMain.cpp.o -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/flags.make -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/link.txt -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/main.cpp.o -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/progress.make -------------------------------------------------------------------------------- /frontend/CMakeFiles/frontend.exe.dir/util.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeFiles/frontend.exe.dir/util.cpp.o -------------------------------------------------------------------------------- /frontend/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 28 2 | -------------------------------------------------------------------------------- /frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/Hasher.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by moriya on 7/31/19. 3 | // 4 | 5 | #include "Hasher.h" 6 | -------------------------------------------------------------------------------- /frontend/Hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/Hasher.h -------------------------------------------------------------------------------- /frontend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/Makefile -------------------------------------------------------------------------------- /frontend/ObliviousDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/ObliviousDictionary.cpp -------------------------------------------------------------------------------- /frontend/ObliviousDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/ObliviousDictionary.h -------------------------------------------------------------------------------- /frontend/ProtocolParty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/ProtocolParty.cpp -------------------------------------------------------------------------------- /frontend/ProtocolParty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/ProtocolParty.h -------------------------------------------------------------------------------- /frontend/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/cmake_install.cmake -------------------------------------------------------------------------------- /frontend/frontend.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/frontend.vcxproj -------------------------------------------------------------------------------- /frontend/frontend.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/frontend.vcxproj.filters -------------------------------------------------------------------------------- /frontend/gf2e_mat_solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/gf2e_mat_solve.cpp -------------------------------------------------------------------------------- /frontend/gf2e_mat_solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/gf2e_mat_solve.h -------------------------------------------------------------------------------- /frontend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/main.cpp -------------------------------------------------------------------------------- /frontend/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/xxHash/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/.gitattributes -------------------------------------------------------------------------------- /frontend/xxHash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/.gitignore -------------------------------------------------------------------------------- /frontend/xxHash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/.travis.yml -------------------------------------------------------------------------------- /frontend/xxHash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/LICENSE -------------------------------------------------------------------------------- /frontend/xxHash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/Makefile -------------------------------------------------------------------------------- /frontend/xxHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/README.md -------------------------------------------------------------------------------- /frontend/xxHash/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/appveyor.yml -------------------------------------------------------------------------------- /frontend/xxHash/cmake_unofficial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/cmake_unofficial/.gitignore -------------------------------------------------------------------------------- /frontend/xxHash/cmake_unofficial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/cmake_unofficial/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/xxHash/cmake_unofficial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/cmake_unofficial/README.md -------------------------------------------------------------------------------- /frontend/xxHash/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/doc/README.md -------------------------------------------------------------------------------- /frontend/xxHash/doc/xxhash_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/doc/xxhash_spec.md -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/.gitignore -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/Makefile -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/benchHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/benchHash.c -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/benchHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/benchHash.h -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/benchfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/benchfn.c -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/benchfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/benchfn.h -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/bhDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/bhDisplay.c -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/bhDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/bhDisplay.h -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/hashes.h -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/main.c -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/timefn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/timefn.c -------------------------------------------------------------------------------- /frontend/xxHash/tests/bench/timefn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/tests/bench/timefn.h -------------------------------------------------------------------------------- /frontend/xxHash/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/xxh3.h -------------------------------------------------------------------------------- /frontend/xxHash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/xxhash.c -------------------------------------------------------------------------------- /frontend/xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/xxhash.h -------------------------------------------------------------------------------- /frontend/xxHash/xxhsum.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/xxhsum.1 -------------------------------------------------------------------------------- /frontend/xxHash/xxhsum.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/xxhsum.1.md -------------------------------------------------------------------------------- /frontend/xxHash/xxhsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/frontend/xxHash/xxhsum.c -------------------------------------------------------------------------------- /libOTe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/.gitignore -------------------------------------------------------------------------------- /libOTe/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/.gitmodules -------------------------------------------------------------------------------- /libOTe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/LICENSE -------------------------------------------------------------------------------- /libOTe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/README.md -------------------------------------------------------------------------------- /libOTe/buildAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/buildAll.ps1 -------------------------------------------------------------------------------- /libOTe/copySourceToLinux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/copySourceToLinux.ps1 -------------------------------------------------------------------------------- /libOTe/cryptoTools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/.gitignore -------------------------------------------------------------------------------- /libOTe/cryptoTools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/cryptoTools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/LICENSE -------------------------------------------------------------------------------- /libOTe/cryptoTools/copySourceToLinux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/copySourceToLinux.ps1 -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/BitIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/BitIterator.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/BitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/BitVector.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/BitVector.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/CLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/CLP.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/CLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/CLP.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/CuckooIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/CuckooIndex.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/CuckooIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/CuckooIndex.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Defines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Defines.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Defines.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Finally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Finally.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Log.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Log.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Matrix.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/MatrixView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/MatrixView.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/TestCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/TestCollection.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/ThreadBarrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/ThreadBarrier.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Timer.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Timer.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Common/Version.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/AES.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/AES.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/Blake2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/Blake2.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/Blake2.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/Commit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/Commit.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/Curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/Curve.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/Curve.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/PRNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/PRNG.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/PRNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/PRNG.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/RandomOracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/RandomOracle.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/asm/sha_lnx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/asm/sha_lnx.S -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/blake2/blake2.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/blake2/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/blake2/blake2b.c -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/sha1.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Crypto/sha1.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/Channel.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/Channel.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/Endpoint.h: -------------------------------------------------------------------------------- 1 | #include "Session.h" -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/IOService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/IOService.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/IOService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/IOService.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/IoBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/IoBuffer.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/IoBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/IoBuffer.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/Session.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/Session.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/Network/SocketAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/Network/SocketAdapter.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/cryptoTools.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/cryptoTools.vcxproj -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/cryptoToolsconfig.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/GSL.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/GSL.natvis -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/gls-lite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/gls-lite.hpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/gsl -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/gsl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/gsl_algorithm -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/gsl_assert -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/gsl_byte -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/gsl_util -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/multi_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/multi_span -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/span -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptoTools/gsl/string_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptoTools/gsl/string_span -------------------------------------------------------------------------------- /libOTe/cryptoTools/cryptotools-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/cryptotools-config.cmake -------------------------------------------------------------------------------- /libOTe/cryptoTools/frontend_cryptoTools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/frontend_cryptoTools/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/cryptoTools/frontend_cryptoTools/Tutorials/Network.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | 5 | void networkTutorial(); 6 | -------------------------------------------------------------------------------- /libOTe/cryptoTools/frontend_cryptoTools/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/frontend_cryptoTools/main.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/frontend_cryptoTools/signalHandle.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | void backtraceHook(); 3 | -------------------------------------------------------------------------------- /libOTe/cryptoTools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/readme.md -------------------------------------------------------------------------------- /libOTe/cryptoTools/testsVS_cryptoTools/AES_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/testsVS_cryptoTools/AES_TestsVS.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/testsVS_cryptoTools/Ecc_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/testsVS_cryptoTools/Ecc_TestsVS.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/testsVS_cryptoTools/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/testsVS_cryptoTools/stdafx.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/testsVS_cryptoTools/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/testsVS_cryptoTools/stdafx.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/testsVS_cryptoTools/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/testsVS_cryptoTools/targetver.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/AES_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/AES_Tests.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/AES_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/AES_Tests.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/BtChannel_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/BtChannel_Tests.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Common.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Common.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Cuckoo_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Cuckoo_Tests.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Cuckoo_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Cuckoo_Tests.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Ecc_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Ecc_Tests.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Ecc_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Ecc_Tests.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Misc_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Misc_Tests.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/Misc_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/Misc_Tests.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/SimpleCuckoo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/SimpleCuckoo.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/SimpleCuckoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/SimpleCuckoo.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/UnitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/UnitTests.cpp -------------------------------------------------------------------------------- /libOTe/cryptoTools/tests_cryptoTools/UnitTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/tests_cryptoTools/UnitTests.h -------------------------------------------------------------------------------- /libOTe/cryptoTools/thirdparty/linux/all.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/thirdparty/linux/all.get -------------------------------------------------------------------------------- /libOTe/cryptoTools/thirdparty/linux/boost.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/thirdparty/linux/boost.get -------------------------------------------------------------------------------- /libOTe/cryptoTools/thirdparty/linux/miracl.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/thirdparty/linux/miracl.get -------------------------------------------------------------------------------- /libOTe/cryptoTools/thirdparty/win/getBoost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/thirdparty/win/getBoost.ps1 -------------------------------------------------------------------------------- /libOTe/cryptoTools/thirdparty/win/getMiracl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/cryptoTools/thirdparty/win/getMiracl.ps1 -------------------------------------------------------------------------------- /libOTe/frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/frontend/frontend.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/frontend/frontend.vcxproj -------------------------------------------------------------------------------- /libOTe/frontend/frontend.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/frontend/frontend.vcxproj.filters -------------------------------------------------------------------------------- /libOTe/frontend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/frontend/main.cpp -------------------------------------------------------------------------------- /libOTe/frontend/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libOTe/frontend/signalHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/frontend/signalHandle.cpp -------------------------------------------------------------------------------- /libOTe/frontend/signalHandle.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | void backtraceHook(); 3 | -------------------------------------------------------------------------------- /libOTe/frontend/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/frontend/util.cpp -------------------------------------------------------------------------------- /libOTe/frontend/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/frontend/util.h -------------------------------------------------------------------------------- /libOTe/lib/readelfoutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/lib/readelfoutput -------------------------------------------------------------------------------- /libOTe/libOTe/Base/naor-pinkas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Base/naor-pinkas.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/Base/naor-pinkas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Base/naor-pinkas.h -------------------------------------------------------------------------------- /libOTe/libOTe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseK/AknOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseK/AknOtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseK/AknOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseK/AknOtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseK/AknOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseK/AknOtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseK/AknOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseK/AknOtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Kkrt/KkrtDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Kkrt/KkrtDefines.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Kkrt/KkrtNcoOtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/NcoOtExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/NcoOtExt.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Oos/OosDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Oos/OosDefines.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Oos/OosNcoOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Oos/OosNcoOtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Oos/OosNcoOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Oos/OosNcoOtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Oos/OosNcoOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Oos/OosNcoOtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/Oos/OosNcoOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/Oos/OosNcoOtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/NChooseOne/RR17/Rr17NcoOtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/Tools/LinearCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Tools/LinearCode.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/Tools/LinearCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Tools/LinearCode.h -------------------------------------------------------------------------------- /libOTe/libOTe/Tools/Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Tools/Tools.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/Tools/Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Tools/Tools.h -------------------------------------------------------------------------------- /libOTe/libOTe/Tools/bch511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Tools/bch511.h -------------------------------------------------------------------------------- /libOTe/libOTe/Tools/bch511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/Tools/bch511.txt -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpDotExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpDotExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpDotExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpDotExtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpDotExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpDotExtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpDotExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpDotExtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpOtExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpOtExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpOtExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpOtExtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpOtExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpOtExtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/IknpOtExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/IknpOtExtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosDotExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosDotExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosDotExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosDotExtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosDotExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosDotExtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosDotExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosDotExtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosOtExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosOtExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosOtExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosOtExtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosOtExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosOtExtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/KosOtExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/KosOtExtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/LzKosOtExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/LzKosOtExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/LzKosOtExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/LzKosOtExtReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/LzKosOtExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/LzKosOtExtSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/LzKosOtExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/LzKosOtExtSender.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/OTExtInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/OTExtInterface.h -------------------------------------------------------------------------------- /libOTe/libOTe/TwoChooseOne/TcoOtDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/TwoChooseOne/TcoOtDefines.h -------------------------------------------------------------------------------- /libOTe/libOTe/libOTe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/libOTe.vcxproj.filters -------------------------------------------------------------------------------- /libOTe/libOTe/libOTe.vcxproj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe/libOTe.vcxproj.vcxproj -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/AknOt_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/AknOt_Tests.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/AknOt_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/AknOt_Tests.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/BaseOT_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/BaseOT_Tests.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/BaseOT_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/BaseOT_Tests.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/Common.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/Common.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/NcoOT_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/NcoOT_Tests.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/NcoOT_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/NcoOT_Tests.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/OTOracleReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/OTOracleReceiver.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/OTOracleReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/OTOracleReceiver.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/OTOracleSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/OTOracleSender.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/OTOracleSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/OTOracleSender.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/OT_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/OT_Tests.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/OT_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/OT_Tests.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/UnitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/UnitTests.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/UnitTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/UnitTests.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/libOTe_Tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/libOTe_Tests.vcxproj.filters -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/libOTe_Tests.vcxproj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/libOTe_Tests.vcxproj.vcxproj -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code1280_BCH511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code1280_BCH511.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code1280_BCH511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code1280_BCH511.txt -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code128_BCH511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code128_BCH511.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code128_BCH511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code128_BCH511.txt -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code256_BCH511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code256_BCH511.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code256_BCH511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code256_BCH511.txt -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code384_BCH511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code384_BCH511.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code384_BCH511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code384_BCH511.txt -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code640_BCH511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code640_BCH511.h -------------------------------------------------------------------------------- /libOTe/libOTe_Tests/testData/code640_BCH511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_Tests/testData/code640_BCH511.txt -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/AknOT_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/AknOT_TestsVS.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/BaseOT_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/BaseOT_TestsVS.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/OT_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/OT_TestsVS.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/libOTe_TestsVS.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/libOTe_TestsVS.filters -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/libOTe_TestsVS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/libOTe_TestsVS.vcxproj -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/stdafx.cpp -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/stdafx.h -------------------------------------------------------------------------------- /libOTe/libOTe_TestsVS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libOTe/libOTe_TestsVS/targetver.h -------------------------------------------------------------------------------- /libPSI/CMakeFiles/3.10.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/3.10.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /libPSI/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /libPSI/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /libPSI/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /libPSI/CMakeFiles/3.10.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/3.10.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /libPSI/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /libPSI/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /libPSI/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /libPSI/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /libPSI/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /libPSI/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/CXX.includecache -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/DependInfo.cmake -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/ECDH/EcdhPsiSender.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/ECDH/EcdhPsiSender.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/PRTY/PrtyReceiver.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/PRTY/PrtyReceiver.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/PRTY/PrtySender.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/PRTY/PrtySender.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/PRTY2/PrtyMOtSender.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/PRTY2/PrtyMOtSender.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/Poly/polyFFT.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/Poly/polyFFT.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/Poly/polyFFT2.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/Poly/polyFFT2.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/Poly/polyNTL.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/Poly/polyNTL.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/Tools/BalancedIndex.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/Tools/BalancedIndex.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/Tools/CuckooGraph.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/Tools/CuckooGraph.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/Tools/CuckooHasher.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/Tools/CuckooHasher.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/Tools/SimpleIndex_.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/Tools/SimpleIndex_.cpp.o -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/build.make -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/cmake_clean_target.cmake -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/depend.internal -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/depend.make -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/flags.make -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/link.txt -------------------------------------------------------------------------------- /libPSI/CMakeFiles/libPSI.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeFiles/libPSI.dir/progress.make -------------------------------------------------------------------------------- /libPSI/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /libPSI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/CMakeLists.txt -------------------------------------------------------------------------------- /libPSI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Makefile -------------------------------------------------------------------------------- /libPSI/PRTY2/PrtyMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/PRTY2/PrtyMDefines.h -------------------------------------------------------------------------------- /libPSI/PRTY2/PrtyMOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/PRTY2/PrtyMOtReceiver.cpp -------------------------------------------------------------------------------- /libPSI/PRTY2/PrtyMOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/PRTY2/PrtyMOtReceiver.h -------------------------------------------------------------------------------- /libPSI/PRTY2/PrtyMOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/PRTY2/PrtyMOtSender.cpp -------------------------------------------------------------------------------- /libPSI/PRTY2/PrtyMOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/PRTY2/PrtyMOtSender.h -------------------------------------------------------------------------------- /libPSI/PsiDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/PsiDefines.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_132_by_583.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_132_by_583.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_138_by_594.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_138_by_594.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_144_by_605.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_144_by_605.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_150_by_616.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_150_by_616.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_156_by_627.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_156_by_627.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_162_by_638.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_162_by_638.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_168_by_649.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_168_by_649.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_174_by_660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_174_by_660.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_210_by_732.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_210_by_732.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_217_by_744.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_217_by_744.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_231_by_768.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_231_by_768.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_238_by_776.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_238_by_776.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_65_by_448.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_65_by_448.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_72_by_462.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_72_by_462.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_84_by_495.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_84_by_495.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_90_by_495.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_90_by_495.h -------------------------------------------------------------------------------- /libPSI/Tools/mx_linear_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/Tools/mx_linear_code.h -------------------------------------------------------------------------------- /libPSI/libPSI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/libPSI.vcxproj.filters -------------------------------------------------------------------------------- /libPSI/libPSI.vcxproj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/libPSI/libPSI.vcxproj.vcxproj -------------------------------------------------------------------------------- /thirdparty/linux/all.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/all.get -------------------------------------------------------------------------------- /thirdparty/linux/gf2x.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x.get -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.deps/libgf2x_la-gf2x.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.deps/libgf2x_la-gf2x.Plo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.deps/libgf2x_la-toom-gpl.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.deps/libgf2x_la-toom-gpl.Plo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.deps/libgf2x_la-toom.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.deps/libgf2x_la-toom.Plo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.deps/libgf2x_la-toom128.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.deps/libgf2x_la-toom128.Plo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.libs/libgf2x.a -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x.la: -------------------------------------------------------------------------------- 1 | ../libgf2x.la -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.libs/libgf2x.lai -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x.so: -------------------------------------------------------------------------------- 1 | libgf2x.so.1.0.2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x.so.1: -------------------------------------------------------------------------------- 1 | libgf2x.so.1.0.2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x.so.1.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.libs/libgf2x.so.1.0.2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x_la-gf2x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.libs/libgf2x_la-gf2x.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x_la-toom-gpl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.libs/libgf2x_la-toom-gpl.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x_la-toom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.libs/libgf2x_la-toom.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/.libs/libgf2x_la-toom128.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/.libs/libgf2x_la-toom128.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | gf2x is the work of 3 | 4 | Richard Brent 5 | Pierrick Gaudry 6 | Emmanuel Thomé 7 | Paul Zimmermann 8 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/BUGS -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/COPYING -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/COPYING.LIB -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/ChangeLog -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/INSTALL -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/Makefile -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/Makefile.am -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/Makefile.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/NEWS -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/README -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/TODO -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/aclocal.m4 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/already_tuned/tuned/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/already_tuned/tuned/README -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/.deps/factor.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/.deps/halfgcd.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/COPYING -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/Makefile -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/Makefile.am -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/Makefile.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/check-factor-000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/check-factor-000.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/check-factor-001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/check-factor-001.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/check-factor-002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/check-factor-002.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/check-factor-003.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/check-factor-003.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/factor.cpp -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/halfgcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/halfgcd.cpp -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/apps/halfgcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/apps/halfgcd.hpp -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config.log -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config.status -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/acinclude.m4 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/compile -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/config.guess -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/config.sub -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/configfsf.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/configfsf.guess -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/configfsf.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/configfsf.sub -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/depcomp -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/install-sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/libtool.m4 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/ltmain.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/ltoptions.m4 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/ltsugar.m4 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/ltversion.m4 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/lt~obsolete.m4 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/missing -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/config/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/config/test-driver -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/configure -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/configure.ac -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor128_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor128gm_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor128gmt_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor128nt_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor64_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor64gm_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor64gmt_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libcantor64nt_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libgf2x_la-gf2x-cantor-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.deps/libgf2x_la-gf2x-fake-fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.libs/libternary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/.libs/libternary.a -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/.libs/libternary.la: -------------------------------------------------------------------------------- 1 | ../libternary.la -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/Makefile -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/Makefile.am -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/Makefile.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/README -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/fft_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/fft_adapter.hpp -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/gf2x-cantor-fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/gf2x-cantor-fft.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/gf2x-cantor-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/gf2x-cantor-fft.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/gf2x-fake-fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/gf2x-fake-fft.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/gf2x-fake-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/gf2x-fake-fft.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/gf2x-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/gf2x-fft.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/gf2x-ternary-fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/gf2x-ternary-fft.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/gf2x-ternary-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/gf2x-ternary-fft.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/libternary.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/libternary.la -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/README.mpfq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/README.mpfq -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_128.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_128.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_64.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/i386/mpfq_2_64.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/mpfq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/mpfq.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/mpfq_gf2n_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/mpfq_gf2n_common.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/mpfq_name_K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/mpfq_name_K.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_128.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_128.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_64.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/fft/mpfq/x86_64/mpfq_2_64.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-config-export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/gf2x-config-export.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-config-export.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/gf2x-config-export.h.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/gf2x-config.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/gf2x-config.h.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-impl-export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/gf2x-impl-export.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/gf2x-impl.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/gf2x-small.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x-thresholds.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x-thresholds.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul1.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul1.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul2.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul2.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul3.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul3.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul4.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul4.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul5.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul5.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul6.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul6.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul7.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul7.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul8.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul8.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/gf2x_mul9.h: -------------------------------------------------------------------------------- 1 | ../already_tuned/x86_64_pclmul/gf2x_mul9.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/stamp-h1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/stamp-h1 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/gf2x/stamp-h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/gf2x/stamp-h2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x-config.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x-impl.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x-small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x-small.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul1.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul2.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul3.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul4.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul5.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul6.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul7.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul8.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/include/gf2x/gf2x_mul9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/include/gf2x/gf2x_mul9.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lib/libgf2x.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lib/libgf2x.a -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lib/libgf2x.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lib/libgf2x.la -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lib/libgf2x.so: -------------------------------------------------------------------------------- 1 | libgf2x.so.1.0.2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lib/libgf2x.so.1: -------------------------------------------------------------------------------- 1 | libgf2x.so.1.0.2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lib/libgf2x.so.1.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lib/libgf2x.so.1.0.2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x.la -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-gf2x.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-gf2x.lo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-gf2x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-gf2x.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-toom-gpl.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-toom-gpl.lo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-toom-gpl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-toom-gpl.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-toom.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-toom.lo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-toom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-toom.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-toom128.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-toom128.lo -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libgf2x_la-toom128.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libgf2x_la-toom128.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/libtool -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul1cl-mul1cl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul2cl-mul2cl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul2cl2-mul2cl2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul2k-mul2k.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul2t-mul2t.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul2t2-mul2t2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul3cl-mul3cl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul3k-mul3k.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul3k2-mul3k2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul3t-mul3t.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul4cl1-mul4cl1.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul4clk-mul4clk.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul4k-mul4k.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul4t-mul4t.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul5clk2-mul5clk2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul5clk_c-mul5clk_c.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul5k3-mul5k3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul5k_a-mul5k_a.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul5k_b-mul5k_b.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul5k_c-mul5k_c.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul5k_d-mul5k_d.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul6clk2-mul6clk2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul6k_a-mul6k_a.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul6k_b-mul6k_b.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul6k_c-mul6k_c.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul7cl-mul7cl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul7k-mul7k.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul7k3-mul7k3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul8k-mul8k.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul9cl-mul9cl.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul9clk2-mul9clk2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul9k-mul9k.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul9k2-mul9k2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/.deps/tune_mul9k3-mul9k3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/Makefile -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/Makefile.am -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/Makefile.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/README.adding_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/README.adding_code -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/gen_bb_mul_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/gen_bb_mul_code.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul1cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul1cl.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul2cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul2cl.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul2cl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul2cl2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul2k.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul2t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul2t.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul2t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul2t2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul3cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul3cl.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul3k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul3k.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul3k2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul3k2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul3k3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul3k3.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul3t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul3t.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul4cl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul4cl1.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul4clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul4clk.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul4k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul4k.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul4t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul4t.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul5clk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul5clk2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul5clk_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul5clk_c.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul5k3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul5k3.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul5k_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul5k_a.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul5k_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul5k_b.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul5k_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul5k_c.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul5k_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul5k_d.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul6clk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul6clk2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul6k_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul6k_a.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul6k_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul6k_b.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul6k_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul6k_c.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul7cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul7cl.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul7k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul7k.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul7k3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul7k3.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul8k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul8k.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul9cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul9cl.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul9clk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul9clk2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul9k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul9k.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul9k2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul9k2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/lowlevel/mul9k3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/lowlevel/mul9k3.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/check_mul3t-check_small_size.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/check_mul4t-check_small_size.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s1_la-tuneup_1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s2_la-tuneup_2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s3_la-tuneup_3.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s4_la-tuneup_4.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s5_la-tuneup_5.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s6_la-tuneup_6.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s7_la-tuneup_7.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s8_la-tuneup_8.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/libtuneup_s9_la-tuneup_9.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/modify-thresholds.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/replace.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/timing.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w32k2-gen_mul1_w32k2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w32k3-gen_mul1_w32k3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w32k4-gen_mul1_w32k4.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w32k5-gen_mul1_w32k5.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w32k6-gen_mul1_w32k6.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w64k2-gen_mul1_w64k2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w64k3-gen_mul1_w64k3.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w64k4-gen_mul1_w64k4.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w64k5-gen_mul1_w64k5.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tune_gen_mul1_w64k6-gen_mul1_w64k6.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tunefft.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tunetoom.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/.deps/tuning-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/Makefile -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/Makefile.am -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/Makefile.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/README -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/TODO -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul1cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul1cl -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul1cl.log: -------------------------------------------------------------------------------- 1 | PASS check_mul1cl (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul1cl.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul1cl.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2cl -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2cl.log: -------------------------------------------------------------------------------- 1 | PASS check_mul2cl (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2cl.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2cl.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2cl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2cl2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2cl2.log: -------------------------------------------------------------------------------- 1 | PASS check_mul2cl2 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2cl2.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2cl2.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2k -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2k.log: -------------------------------------------------------------------------------- 1 | PASS check_mul2k (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2k.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2k.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2t -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2t.log: -------------------------------------------------------------------------------- 1 | PASS check_mul2t (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2t.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2t.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2t2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2t2.log: -------------------------------------------------------------------------------- 1 | PASS check_mul2t2 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul2t2.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul2t2.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul3cl -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3cl.log: -------------------------------------------------------------------------------- 1 | PASS check_mul3cl (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3cl.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul3cl.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul3k -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3k.log: -------------------------------------------------------------------------------- 1 | PASS check_mul3k (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3k.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul3k.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3k2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul3k2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3k2.log: -------------------------------------------------------------------------------- 1 | PASS check_mul3k2 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul3k2.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul3k2.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4cl1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul4cl1 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4cl1.log: -------------------------------------------------------------------------------- 1 | PASS check_mul4cl1 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4cl1.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul4cl1.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4clk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul4clk -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4clk.log: -------------------------------------------------------------------------------- 1 | PASS check_mul4clk (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4clk.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul4clk.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul4k -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4k.log: -------------------------------------------------------------------------------- 1 | PASS check_mul4k (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul4k.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul4k.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5clk2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5clk2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5clk2.log: -------------------------------------------------------------------------------- 1 | PASS check_mul5clk2 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5clk2.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5clk2.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5clk_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5clk_c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5clk_c.log: -------------------------------------------------------------------------------- 1 | PASS check_mul5clk_c (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5clk_c.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5clk_c.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k3 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k3.log: -------------------------------------------------------------------------------- 1 | PASS check_mul5k3 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k3.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k3.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_a -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_a.log: -------------------------------------------------------------------------------- 1 | PASS check_mul5k_a (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_a.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_a.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_b -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_b.log: -------------------------------------------------------------------------------- 1 | PASS check_mul5k_b (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_b.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_b.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_c.log: -------------------------------------------------------------------------------- 1 | PASS check_mul5k_c (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_c.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_c.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_d -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_d.log: -------------------------------------------------------------------------------- 1 | PASS check_mul5k_d (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul5k_d.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul5k_d.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6clk2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6clk2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6clk2.log: -------------------------------------------------------------------------------- 1 | PASS check_mul6clk2 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6clk2.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6clk2.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6k_a -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_a.log: -------------------------------------------------------------------------------- 1 | PASS check_mul6k_a (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_a.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6k_a.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6k_b -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_b.log: -------------------------------------------------------------------------------- 1 | PASS check_mul6k_b (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_b.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6k_b.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6k_c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_c.log: -------------------------------------------------------------------------------- 1 | PASS check_mul6k_c (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul6k_c.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul6k_c.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul7cl -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7cl.log: -------------------------------------------------------------------------------- 1 | PASS check_mul7cl (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7cl.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul7cl.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul7k -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7k.log: -------------------------------------------------------------------------------- 1 | PASS check_mul7k (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7k.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul7k.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7k3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul7k3 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7k3.log: -------------------------------------------------------------------------------- 1 | PASS check_mul7k3 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul7k3.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul7k3.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul8k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul8k -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul8k.log: -------------------------------------------------------------------------------- 1 | PASS check_mul8k (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul8k.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul8k.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9cl -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9cl.log: -------------------------------------------------------------------------------- 1 | PASS check_mul9cl (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9cl.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9cl.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9clk2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9clk2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9clk2.log: -------------------------------------------------------------------------------- 1 | PASS check_mul9clk2 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9clk2.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9clk2.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9k -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k.log: -------------------------------------------------------------------------------- 1 | PASS check_mul9k (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9k.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9k2 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k2.log: -------------------------------------------------------------------------------- 1 | PASS check_mul9k2 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k2.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9k2.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9k3 -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k3.log: -------------------------------------------------------------------------------- 1 | PASS check_mul9k3 (exit status: 0) 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_mul9k3.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_mul9k3.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/check_small_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/check_small_size.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/gen_bb_mul_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/gen_bb_mul_code -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/gen_mul1_w64k2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/gen_mul1_w64k2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/gen_mul1_w64k3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/gen_mul1_w64k3.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/gen_mul1_w64k4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/gen_mul1_w64k4.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/gen_mul1_w64k5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/gen_mul1_w64k5.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/gen_mul1_w64k6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/gen_mul1_w64k6.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/generate-test-list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/generate-test-list.pl -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/modify-thresholds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/modify-thresholds.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/replace.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/replace.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/test-suite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/test-suite.log -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/timing.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/timing.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tune-lowlevel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tune-lowlevel.pl -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tunefft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tunefft.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tunetoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tunetoom.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_1.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_2.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_3.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_4.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_5.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_6.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_7.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_8.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_9.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuneup_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuneup_pre.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning-common.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning-common.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undef_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undef_wrapper.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_1.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_2.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_3.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_4.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_5.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_6.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_7.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_8.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_9.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/src/tuning_undefs_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/src/tuning_undefs_pre.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check-addmul.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/.deps/check-addmul.Po -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check-mul.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/.deps/check-mul.Po -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128gm-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128gm-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128gm-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128gmt-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128gmt-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128gmt-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128nt-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128nt-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor128nt-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64gm-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64gm-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64gm-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64gmt-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64gmt-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64gmt-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64nt-check-and-bench-common.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64nt-check.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/check_cantor64nt-test-tools.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/.deps/test-tools.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/.deps/test-tools.Po -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/Makefile -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/Makefile.am -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/Makefile.in -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/bench.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/bench_ternary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/bench_ternary -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/bench_ternary-bench.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/bench_ternary-bench.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-addmul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-addmul -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-addmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-addmul.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-addmul.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-addmul.log -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-addmul.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-addmul.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-addmul.trs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-addmul.trs -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-mul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-mul -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-mul.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check-mul.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check-mul.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_10000_10000_1_2706ca53.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_10000_1000_1_3b8778b1.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_10000_100_1_f2e7cc20.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_10000_20_1_4d3b9b2d.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_10000_5437_1_b337c8eb.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_1000_1000_1_c28bc2e3.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_1000_100_1_08825281.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_1000_20_1_6ce07fed.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_100_100_1_5094c182.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_100_20_1_6dc5ac13.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_1_1_1_819ea234.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_20_20_1_d40a21e3.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_2_2_1_928e7e94.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_3_3_1_14aac2f1.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_4_4_1_fbc8042f.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_5437_1000_1_c546a34c.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_5437_100_1_8eb064ef.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_5437_20_1_ad84f617.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_5437_5437_1_f09c5936.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_5_5_1_049e6e28.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_6_6_1_f7fa48ac.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_785672_1271244_1_842e0d19.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_7_7_1_39d1a8b9.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_832040_1346269_1_8513d1fb.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_8_8_1_11334230.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_9_9_1_a499e414.mul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check_ternary -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary-check.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check_ternary-check.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_100000_1_fca70ced.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_100000_2_cd1293a5.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_100000_3_91e7d307.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_10000_1_2706ca53.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_10000_2_3f32a516.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_10000_3_fd7bba07.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_1000_1_c28bc2e3.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_1000_2_77db95cc.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternary_1000_3_6dc06b2f.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check_ternaryns -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns-check.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/check_ternaryns-check.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_100000_1_fca70ced.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_100000_2_cd1293a5.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_100000_3_91e7d307.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_10000_1_2706ca53.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_10000_2_3f32a516.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_10000_3_fd7bba07.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_1000_1_c28bc2e3.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_1000_2_77db95cc.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/check_ternaryns_1000_3_6dc06b2f.fft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/do-check-fft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/do-check-fft.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/do-check-mul.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/do-check-mul.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/test-suite.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/test-suite.log -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/test-tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/test-tools.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/test-tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/test-tools.h -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/tests/test-tools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/tests/test-tools.o -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/toom-gpl-placeholder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/toom-gpl-placeholder.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/toom-gpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/toom-gpl.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/toom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/toom.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/toom128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/toom128.c -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/version.sh -------------------------------------------------------------------------------- /thirdparty/linux/gf2x/version.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gf2x/version.sh.in -------------------------------------------------------------------------------- /thirdparty/linux/gmp.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/gmp.get -------------------------------------------------------------------------------- /thirdparty/linux/ntl.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/ntl.get -------------------------------------------------------------------------------- /thirdparty/linux/ntl_patch/ZZ_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/ntl_patch/ZZ_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl_patch/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/ntl_patch/config.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl_patch/lip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptobiu/PaXoS_PSI/HEAD/thirdparty/linux/ntl_patch/lip.h --------------------------------------------------------------------------------