├── .gitignore ├── .gitmodules ├── .vs └── nPSI │ └── v16 │ ├── Browse.VC.db-shm │ ├── Browse.VC.db-wal │ ├── Solution.VC.db-shm │ ├── Solution.VC.db-wal │ └── TestStore │ └── 0 │ ├── 000.testlog │ └── testlog.manifest ├── Ben-Efraim-comparison.py ├── CMakeLists.txt ├── ExternalDependancies.props ├── LICENSE ├── README.md ├── UnitTest ├── UnitTest.cpp ├── UnitTest.vcxproj ├── UnitTest.vcxproj.filters ├── pch.cpp └── pch.h ├── copySourceToLinux.ps1 ├── cryptoTools ├── .gitignore ├── CMakeLists.txt ├── Common │ ├── ArrayView.h │ ├── BitIterator.cpp │ ├── BitIterator.h │ ├── BitVector.cpp │ ├── BitVector.h │ ├── ByteStream.cpp │ ├── ByteStream.h │ ├── Defines.cpp │ ├── Defines.h │ ├── Exceptions.h │ ├── Log.cpp │ ├── Log.h │ ├── Log1.cpp │ ├── Log1.h │ ├── MatrixView.h │ ├── Timer.cpp │ ├── Timer.h │ └── mpsc_queue.h ├── Crypto │ ├── AES.cpp │ ├── AES.h │ ├── Commit.h │ ├── Curve.cpp │ ├── Curve.h │ ├── PRNG.cpp │ ├── PRNG.h │ ├── asm │ │ ├── sha_lnx.S │ │ └── sha_win64.asm │ ├── sha1.cpp │ └── sha1.h ├── Network │ ├── BtAcceptor.cpp │ ├── BtAcceptor.h │ ├── BtChannel.cpp │ ├── BtChannel.h │ ├── BtEndpoint.cpp │ ├── BtEndpoint.h │ ├── BtIOService.cpp │ ├── BtIOService.h │ ├── BtSocket.h │ ├── Channel.cpp │ ├── Channel.h │ └── Endpoint.h ├── cryptoTools.vcxproj ├── cryptoTools.vcxproj.filters └── readme.md ├── frontend ├── CLP.cpp ├── CLP.h ├── CMakeLists.txt ├── OtBinMain.cpp ├── OtBinMain.h ├── OtBinMain.v2.cpp ├── OtBinMain.v2.h ├── _ ├── bitPosition.cpp ├── bitPosition.h ├── e_ ├── frontend.vcxproj ├── frontend.vcxproj.filters ├── gbf.h ├── ime_ ├── main.cpp ├── me_ ├── miraclTest.cpp ├── ntime ├── ntime_ ├── o1party.h ├── psi3.h ├── runtime3.txt ├── runtime_ ├── runtime_aug_client.txt ├── runtime_aug_leader.txt ├── runtime_client.txt ├── runtime_leader.txt ├── stashSizes.txt ├── time_ ├── tpsi.h ├── untime_ ├── util.cpp └── util.h ├── libOPRF ├── CMakeLists.txt ├── Hashing │ ├── BitPosition.cpp │ ├── BitPosition.h │ ├── CuckooHasher1.cpp │ ├── CuckooHasher1.h │ ├── SimpleHasher1.cpp │ ├── SimpleHasher1.h │ ├── polyFFT.cpp │ └── polyFFT.h ├── OPPRF │ ├── OPPRFReceiver.cpp │ ├── OPPRFReceiver.h │ ├── OPPRFSender.cpp │ ├── OPPRFSender.h │ ├── binSet.cpp │ └── binSet.h ├── libOPRF.vcxproj └── libOPRF.vcxproj.filters ├── libOTe ├── .gitignore ├── .gitmodules ├── Base │ ├── naor-pinkas.cpp │ └── naor-pinkas.h ├── CMakeLists.txt ├── NChooseK │ ├── AknOtReceiver.cpp │ ├── AknOtReceiver.h │ ├── AknOtSender.cpp │ └── AknOtSender.h ├── NChooseOne │ ├── KkrtDefines.h │ ├── KkrtNcoOtReceiver.cpp │ ├── KkrtNcoOtReceiver.h │ ├── KkrtNcoOtSender.cpp │ ├── KkrtNcoOtSender.h │ ├── NcoOtExt.h │ └── Oos │ │ ├── OosDefines.h │ │ ├── OosNcoOtReceiver.cpp │ │ ├── OosNcoOtReceiver.h │ │ ├── OosNcoOtSender.cpp │ │ └── OosNcoOtSender.h ├── README.md ├── Tools │ ├── LinearCode.cpp │ ├── LinearCode.h │ ├── Tools.cpp │ ├── Tools.h │ ├── bch511.bin │ └── bch511.txt ├── TwoChooseOne │ ├── 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 ├── buildAll.ps1 ├── libOTe.vcxproj.filters └── libOTe.vcxproj.vcxproj ├── libPSI_Tests ├── AES_Tests.cpp ├── AES_Tests.h ├── AknBfPsi_Tests.cpp ├── AknBfPsi_Tests.h ├── AknOt_Tests.cpp ├── AknOt_Tests.h ├── BaseOT_Tests.cpp ├── BaseOT_Tests.h ├── BinOtPsi_Tests.cpp ├── BinOtPsi_Tests.h ├── BtChannel_Tests.cpp ├── BtChannel_Tests.h ├── CMakeLists.txt ├── Common.cpp ├── Common.h ├── DcwBfPsi_Tests.cpp ├── DcwBfPsi_Tests.h ├── DktMPsi_Tests.cpp ├── DktMPsi_Tests.h ├── EQ_Tests.cpp ├── EQ_Tests.h ├── Ecc_Tests.cpp ├── Ecc_Tests.h ├── NcoOT_Tests.cpp ├── NcoOT_Tests.h ├── OPPRF_Tests.cpp ├── OPPRF_Tests.h ├── OTOracleReceiver.cpp ├── OTOracleReceiver.h ├── OTOracleSender.cpp ├── OTOracleSender.h ├── OT_Tests.cpp ├── OT_Tests.h ├── libPSI_Tests.vcxproj ├── libPSI_Tests.vcxproj.filters ├── nPSI.cpp ├── nPSI.h ├── nPSIv2.cpp └── nPSIv2.h ├── libPSI_TestsVS ├── AES_TestsVS.cpp ├── AknBfPsi_TestsVS.cpp ├── AknOT_TestsVS.cpp ├── BaseOT_TestsVS.cpp ├── BinOtPsi_TestsVS.cpp ├── BtChannel_TestsVS.cpp ├── DcwBfPsi_TestsVS.cpp ├── DtkMPsi_TestsVS.cpp ├── Ecc_TestsVS.cpp ├── OPPRF_TestsVS.cpp ├── OT_TestsVS.cpp ├── ShamirSSScheme_TestsVS.cpp ├── libPSI_TestsVS.vcxproj ├── libPSI_TestsVS.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── libPaXoS ├── CMakeLists.txt ├── Hasher.cpp ├── Hasher.h ├── ObliviousDictionary.cpp ├── ObliviousDictionary.h ├── Poly │ ├── polyFFT.cpp │ ├── polyFFT.h │ ├── polyFFT2.cpp │ ├── polyFFT2.h │ ├── polyNTL.cpp │ └── polyNTL.h ├── README.md ├── cmake_install.cmake ├── gf2e_mat_solve.cpp ├── gf2e_mat_solve.h ├── install.sh └── 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 ├── nPSI.sln ├── script ├── psi ccs17.txt ├── script_2psi.txt ├── script_3psi.txt ├── script_augpsi.txt ├── script_psiO1t=1.txt ├── script_tpsi.txt ├── setup-network └── testoutput.txt └── thirdparty ├── all_linux.get ├── all_win.ps1 ├── linux ├── boost.get ├── miracl.get ├── miracl │ ├── .gitignore │ ├── Miracl.sln │ ├── miracl │ │ ├── include │ │ │ ├── big.h │ │ │ ├── brick.h │ │ │ ├── crt.h │ │ │ ├── ebrick.h │ │ │ ├── ebrick2.h │ │ │ ├── ec2.h │ │ │ ├── ecn.h │ │ │ ├── ecnzzn.h │ │ │ ├── flash.h │ │ │ ├── floating.h │ │ │ ├── gf2m.h │ │ │ ├── miracl.h │ │ │ ├── mirdef.h │ │ │ └── zzn.h │ │ ├── miracl.vcxproj │ │ ├── miracl.vcxproj.filters │ │ └── source │ │ │ ├── linux64 │ │ │ ├── mr87f.c │ │ │ ├── mr87v.c │ │ │ ├── mraes.c │ │ │ ├── mralloc.c │ │ │ ├── mrarth0.c │ │ │ ├── mrarth1.c │ │ │ ├── mrarth2.c │ │ │ ├── mrarth3.c │ │ │ ├── mrbits.c │ │ │ ├── mrbrick.c │ │ │ ├── mrbuild.c │ │ │ ├── mrcore.c │ │ │ ├── mrcrt.c │ │ │ ├── mrcurve.c │ │ │ ├── mrdouble.c │ │ │ ├── mrebrick.c │ │ │ ├── mrec2m.c │ │ │ ├── mrecn2.c │ │ │ ├── mrfast.c │ │ │ ├── mrflash.c │ │ │ ├── mrflsh1.c │ │ │ ├── mrflsh2.c │ │ │ ├── mrflsh3.c │ │ │ ├── mrflsh4.c │ │ │ ├── mrfpe.c │ │ │ ├── mrfrnd.c │ │ │ ├── mrgcd.c │ │ │ ├── mrgcm.c │ │ │ ├── mrgf2m.c │ │ │ ├── mrio1.c │ │ │ ├── mrio2.c │ │ │ ├── mrjack.c │ │ │ ├── mrlucas.c │ │ │ ├── mrmonty.c │ │ │ ├── mrmuldv.c │ │ │ ├── mrpi.c │ │ │ ├── mrpower.c │ │ │ ├── mrprime.c │ │ │ ├── mrrand.c │ │ │ ├── mrround.c │ │ │ ├── mrscrt.c │ │ │ ├── mrsha3.c │ │ │ ├── mrshs.c │ │ │ ├── mrshs256.c │ │ │ ├── mrshs512.c │ │ │ ├── mrsmall.c │ │ │ ├── mrsroot.c │ │ │ ├── mrstrong.c │ │ │ ├── mrxgcd.c │ │ │ ├── mrzzn2.c │ │ │ ├── mrzzn2b.c │ │ │ ├── mrzzn3.c │ │ │ ├── mrzzn4.c │ │ │ ├── octet.c │ │ │ ├── octet.h │ │ │ └── p1363 │ │ │ ├── octet.c │ │ │ └── octet.h │ └── miracl_osmt │ │ ├── include │ │ ├── MIRDEF.AMD │ │ ├── MIRDEF.SPR │ │ ├── big.h │ │ ├── brick.h │ │ ├── crt.h │ │ ├── ebrick.h │ │ ├── ebrick2.h │ │ ├── ec2.h │ │ ├── ecn.h │ │ ├── ecnzzn.h │ │ ├── flash.h │ │ ├── floating.h │ │ ├── gf2m.h │ │ ├── miracl.h │ │ ├── mirdef │ │ ├── mirdef.arm │ │ ├── mirdef.ash │ │ ├── mirdef.atm │ │ ├── mirdef.bfp │ │ ├── mirdef.bpp │ │ ├── mirdef.bs │ │ ├── mirdef.ccc │ │ ├── mirdef.cm │ │ ├── mirdef.dll │ │ ├── mirdef.gcc │ │ ├── mirdef.gen │ │ ├── mirdef.gfp │ │ ├── mirdef.h │ │ ├── mirdef.h16 │ │ ├── mirdef.h32 │ │ ├── mirdef.h64 │ │ ├── mirdef.haf │ │ ├── mirdef.hio │ │ ├── mirdef.hpc │ │ ├── mirdef.hpp │ │ ├── mirdef.ibe │ │ ├── mirdef.kep │ │ ├── mirdef.lnx │ │ ├── mirdef.mik │ │ ├── mirdef.mip │ │ ├── mirdef.mmm │ │ ├── mirdef.ol │ │ ├── mirdef.pic │ │ ├── mirdef.ppc │ │ ├── mirdef.scr │ │ ├── mirdef.sjc │ │ ├── mirdef.w64 │ │ ├── mirdef.wpp │ │ ├── ms64doit.bat │ │ └── zzn.h │ │ ├── miracl.vcxproj │ │ ├── miracl.vcxproj.filters │ │ └── source │ │ ├── MIRDEF.AMD │ │ ├── MIRDEF.SPR │ │ ├── ake.cpp │ │ ├── ake.txt │ │ ├── ake12blsa.cpp │ │ ├── ake12bna.cpp │ │ ├── ake12bne.cpp │ │ ├── ake12bnr.cpp │ │ ├── ake12bnx.cpp │ │ ├── ake18kssx.cpp │ │ ├── ake1kmt.cpp │ │ ├── ake24blsa.cpp │ │ ├── ake2cpt.cpp │ │ ├── ake2cpt2.cpp │ │ ├── ake2cpw.cpp │ │ ├── ake2nsst.cpp │ │ ├── ake2sst.cpp │ │ ├── ake4cpt.cpp │ │ ├── ake4fsta.cpp │ │ ├── ake4mnta.c │ │ ├── ake4mnta.cpp │ │ ├── ake4mntt.c │ │ ├── ake4mntt.cpp │ │ ├── ake4sbt.cpp │ │ ├── ake6fsta.cpp │ │ ├── ake6mnta.cpp │ │ ├── ake6mntt.c │ │ ├── ake6mntt.cpp │ │ ├── ake6mntx.cpp │ │ ├── ake8bwt.cpp │ │ ├── ake8cpt.cpp │ │ ├── amd64.mcs │ │ ├── arm.mcs │ │ ├── avr.mcs │ │ ├── avr2.mcs │ │ ├── avr4.mcs │ │ ├── bandw.cpp │ │ ├── bgw.cpp │ │ ├── big.cpp │ │ ├── big.h │ │ ├── big.o │ │ ├── bk2.ecs │ │ ├── blackfin.mcs │ │ ├── blmq.cpp │ │ ├── bls.cpp │ │ ├── bls12.cpp │ │ ├── bls24.cpp │ │ ├── bls_gen.cpp │ │ ├── bls_pair.cpp │ │ ├── bls_sign.cpp │ │ ├── bls_ver.cpp │ │ ├── bmark.c │ │ ├── bmc.cpp │ │ ├── bn.cpp │ │ ├── bn_pair.cpp │ │ ├── bp160.ecs │ │ ├── bpt160.ecs │ │ ├── brent.c │ │ ├── brent.cpp │ │ ├── brent_mt.c │ │ ├── brick.c │ │ ├── brick.cpp │ │ ├── brick.h │ │ ├── brute.c │ │ ├── brute.cpp │ │ ├── c.mcs │ │ ├── c1.mcs │ │ ├── c2.mcs │ │ ├── cardano.cpp │ │ ├── clmul.mcs │ │ ├── cm.cpp │ │ ├── cm.txt │ │ ├── common.dss │ │ ├── common.ecs │ │ ├── common2.ecs │ │ ├── complex.cpp │ │ ├── complex.h │ │ ├── cp_pair.cpp │ │ ├── cpabe.cpp │ │ ├── crdecode.cpp │ │ ├── crencode.cpp │ │ ├── crgen.cpp │ │ ├── crsetup.cpp │ │ ├── crt.cpp │ │ ├── crt.h │ │ ├── crt.o │ │ ├── cs.mcs │ │ ├── curve │ │ ├── cm.cpp │ │ ├── cm.txt │ │ ├── complex.cpp │ │ ├── complex.h │ │ ├── flpoly.cpp │ │ ├── flpoly.h │ │ ├── glv.cpp │ │ ├── modpol.cpp │ │ ├── mueller.cpp │ │ ├── pairing │ │ │ ├── ake.cpp │ │ │ ├── ake.txt │ │ │ ├── ake12blsa.cpp │ │ │ ├── ake12bna.cpp │ │ │ ├── ake12bne.cpp │ │ │ ├── ake12bnr.cpp │ │ │ ├── ake12bnx.cpp │ │ │ ├── ake18kssx.cpp │ │ │ ├── ake1kmt.cpp │ │ │ ├── ake24blsa.cpp │ │ │ ├── ake2cpt.cpp │ │ │ ├── ake2cpt2.cpp │ │ │ ├── ake2cpw.cpp │ │ │ ├── ake2nsst.cpp │ │ │ ├── ake2sst.cpp │ │ │ ├── ake4cpt.cpp │ │ │ ├── ake4fsta.cpp │ │ │ ├── ake4mnta.c │ │ │ ├── ake4mnta.cpp │ │ │ ├── ake4mntt.c │ │ │ ├── ake4mntt.cpp │ │ │ ├── ake4sbt.cpp │ │ │ ├── ake6fsta.cpp │ │ │ ├── ake6mnta.cpp │ │ │ ├── ake6mntt.c │ │ │ ├── ake6mntt.cpp │ │ │ ├── ake6mntx.cpp │ │ │ ├── ake8bwt.cpp │ │ │ ├── ake8cpt.cpp │ │ │ ├── bandw.cpp │ │ │ ├── bgw.cpp │ │ │ ├── bk2.ecs │ │ │ ├── blmq.cpp │ │ │ ├── bls.cpp │ │ │ ├── bls12.cpp │ │ │ ├── bls24.cpp │ │ │ ├── bls_gen.cpp │ │ │ ├── bls_pair.cpp │ │ │ ├── bls_sign.cpp │ │ │ ├── bls_ver.cpp │ │ │ ├── bmc.cpp │ │ │ ├── bn.cpp │ │ │ ├── bn_pair.cpp │ │ │ ├── cp_pair.cpp │ │ │ ├── cpabe.cpp │ │ │ ├── daa.cpp │ │ │ ├── dl.cpp │ │ │ ├── dl2.cpp │ │ │ ├── ecn2.cpp │ │ │ ├── ecn2.h │ │ │ ├── ecn3.cpp │ │ │ ├── ecn3.h │ │ │ ├── ecn4.cpp │ │ │ ├── ecn4.h │ │ │ ├── ecn6.cpp │ │ │ ├── ecn6.h │ │ │ ├── etat271.c │ │ │ ├── folklore.cpp │ │ │ ├── freeman.cpp │ │ │ ├── fuzzy.cpp │ │ │ ├── gf2m12x.cpp │ │ │ ├── gf2m12x.h │ │ │ ├── gf2m4x.cpp │ │ │ ├── gf2m4x.h │ │ │ ├── gf2m6x.cpp │ │ │ ├── gf2m6x.h │ │ │ ├── hibe.cpp │ │ │ ├── ipe.cpp │ │ │ ├── ipk.txt │ │ │ ├── ipk_dec.cpp │ │ │ ├── ipk_enc.cpp │ │ │ ├── ipk_ext.cpp │ │ │ ├── ipk_set.cpp │ │ │ ├── irred.cpp │ │ │ ├── k2.ecs │ │ │ ├── k2ss.ecs │ │ │ ├── k4.ecs │ │ │ ├── k4mnt.ecs │ │ │ ├── k6.ecs │ │ │ ├── k8.ecs │ │ │ ├── kss18.cpp │ │ │ ├── kss36.cpp │ │ │ ├── kss8.cpp │ │ │ ├── kss_pair.cpp │ │ │ ├── kw4.ecs │ │ │ ├── make_k1.cpp │ │ │ ├── mnt.cpp │ │ │ ├── mnt.ecs │ │ │ ├── mnt_pair.cpp │ │ │ ├── nk4.ecs │ │ │ ├── pairing_1.h │ │ │ ├── pairing_3.h │ │ │ ├── pairings.txt │ │ │ ├── peks.cpp │ │ │ ├── sf2m12x.cpp │ │ │ ├── sf2m12x.h │ │ │ ├── sk_1.cpp │ │ │ ├── sk_3.cpp │ │ │ ├── ss2_pair.cpp │ │ │ ├── ssp_pair.cpp │ │ │ ├── wang.cpp │ │ │ ├── weng.ecs │ │ │ ├── xk1.ecs │ │ │ ├── zzn12.cpp │ │ │ ├── zzn12.h │ │ │ ├── zzn12a.cpp │ │ │ ├── zzn12a.h │ │ │ ├── zzn12b.cpp │ │ │ ├── zzn12b.h │ │ │ ├── zzn18.cpp │ │ │ ├── zzn18.h │ │ │ ├── zzn2.cpp │ │ │ ├── zzn2.h │ │ │ ├── zzn24.cpp │ │ │ ├── zzn24.h │ │ │ ├── zzn3.cpp │ │ │ ├── zzn3.h │ │ │ ├── zzn36.cpp │ │ │ ├── zzn36.h │ │ │ ├── zzn4.cpp │ │ │ ├── zzn4.h │ │ │ ├── zzn6.cpp │ │ │ ├── zzn6.h │ │ │ ├── zzn6a.cpp │ │ │ ├── zzn6a.h │ │ │ ├── zzn8.cpp │ │ │ └── zzn8.h │ │ ├── poly.cpp │ │ ├── poly.h │ │ ├── poly2.cpp │ │ ├── poly2.h │ │ ├── poly2mod.cpp │ │ ├── poly2mod.h │ │ ├── poly2xy.cpp │ │ ├── poly2xy.h │ │ ├── polymod.cpp │ │ ├── polymod.h │ │ ├── polyxy.cpp │ │ ├── polyxy.h │ │ ├── process.cpp │ │ ├── ps_big.cpp │ │ ├── ps_big.h │ │ ├── ps_zzn.cpp │ │ ├── ps_zzn.h │ │ ├── schoof.cpp │ │ ├── schoof.txt │ │ ├── schoof2.cpp │ │ ├── schoof2.txt │ │ ├── sea.cpp │ │ ├── sea.txt │ │ ├── super2.cpp │ │ ├── trans.cpp │ │ ├── variable.h │ │ └── weil.cpp │ │ ├── daa.cpp │ │ ├── deciph.c │ │ ├── deciph.cpp │ │ ├── decode.c │ │ ├── decode.cpp │ │ ├── dl.cpp │ │ ├── dl2.cpp │ │ ├── dssetup.c │ │ ├── dssetup.cpp │ │ ├── dssgen.c │ │ ├── dssgen.cpp │ │ ├── dssign.c │ │ ├── dssign.cpp │ │ ├── dssver.c │ │ ├── dssver.cpp │ │ ├── ebrick.c │ │ ├── ebrick.cpp │ │ ├── ebrick.h │ │ ├── ebrick2.c │ │ ├── ebrick2.cpp │ │ ├── ebrick2.h │ │ ├── ec2.cpp │ │ ├── ec2.h │ │ ├── ec2.o │ │ ├── ecdh.c │ │ ├── ecdh.h │ │ ├── ecdh2m.c │ │ ├── ecdh2m16.c │ │ ├── ecdh2m8.c │ │ ├── ecdhp.c │ │ ├── ecdhp16.c │ │ ├── ecdhp32.c │ │ ├── ecdhp8.c │ │ ├── ecn.cpp │ │ ├── ecn.h │ │ ├── ecn.o │ │ ├── ecn2.cpp │ │ ├── ecn2.h │ │ ├── ecn2_opt.c │ │ ├── ecn3.cpp │ │ ├── ecn3.h │ │ ├── ecn4.cpp │ │ ├── ecn4.h │ │ ├── ecn6.cpp │ │ ├── ecn6.h │ │ ├── ecnzzn.cpp │ │ ├── ecnzzn.h │ │ ├── ecsgen.c │ │ ├── ecsgen.cpp │ │ ├── ecsgen2.c │ │ ├── ecsgen2.cpp │ │ ├── ecsgen2s.c │ │ ├── ecsgen_s.c │ │ ├── ecsign.c │ │ ├── ecsign.cpp │ │ ├── ecsign2.c │ │ ├── ecsign2.cpp │ │ ├── ecsign2s.c │ │ ├── ecsign_s.c │ │ ├── ecsver.c │ │ ├── ecsver.cpp │ │ ├── ecsver2.c │ │ ├── ecsver2.cpp │ │ ├── ecsver2s.c │ │ ├── ecsver_s.c │ │ ├── edwards.ecs │ │ ├── enciph.c │ │ ├── enciph.cpp │ │ ├── encode.c │ │ ├── encode.cpp │ │ ├── etat271.c │ │ ├── fact.c │ │ ├── fact.cpp │ │ ├── factor.c │ │ ├── findbase.cpp │ │ ├── flash.cpp │ │ ├── flash.h │ │ ├── flash.o │ │ ├── floating.cpp │ │ ├── floating.h │ │ ├── flpoly.cpp │ │ ├── flpoly.h │ │ ├── folklore.cpp │ │ ├── freeman.cpp │ │ ├── fsample.cpp │ │ ├── fuzzy.cpp │ │ ├── gcc386.mcs │ │ ├── gccarm.mcs │ │ ├── gcclmul.mcs │ │ ├── gccmsp430.mcs │ │ ├── gccppc.mcs │ │ ├── gccsse2.mcs │ │ ├── genkey.c │ │ ├── genkey.cpp │ │ ├── genprime.c │ │ ├── genprime.cpp │ │ ├── gf2m.cpp │ │ ├── gf2m.h │ │ ├── gf2m12x.cpp │ │ ├── gf2m12x.h │ │ ├── gf2m4x.cpp │ │ ├── gf2m4x.h │ │ ├── gf2m6x.cpp │ │ ├── gf2m6x.h │ │ ├── glv.cpp │ │ ├── hail.c │ │ ├── hail.cpp │ │ ├── hibe.cpp │ │ ├── hilbert.c │ │ ├── hilbert.cpp │ │ ├── identity.c │ │ ├── imratio.c │ │ ├── imratio2.c │ │ ├── index.c │ │ ├── index.cpp │ │ ├── ipe.cpp │ │ ├── ipk.txt │ │ ├── ipk_dec.cpp │ │ ├── ipk_enc.cpp │ │ ├── ipk_ext.cpp │ │ ├── ipk_set.cpp │ │ ├── irp.cpp │ │ ├── irred.cpp │ │ ├── itanium.mcs │ │ ├── k2.ecs │ │ ├── k2ss.ecs │ │ ├── k4.ecs │ │ ├── k4mnt.ecs │ │ ├── k6.ecs │ │ ├── k8.ecs │ │ ├── kangaroo.c │ │ ├── kangaroo.cpp │ │ ├── kob163.ecs │ │ ├── kob233.ecs │ │ ├── kob283.ecs │ │ ├── kob571.ecs │ │ ├── kss18.cpp │ │ ├── kss36.cpp │ │ ├── kss8.cpp │ │ ├── kss_pair.cpp │ │ ├── kw4.ecs │ │ ├── lenstra.c │ │ ├── lenstra.cpp │ │ ├── libmiracl.a │ │ ├── libmiracl___.a │ │ ├── limlee.c │ │ ├── limlee.cpp │ │ ├── linux64_cpp │ │ ├── make_k1.cpp │ │ ├── mersenne.c │ │ ├── mersenne.cpp │ │ ├── mips.mcs │ │ ├── miracl.h │ │ ├── mirdef │ │ ├── mirdef.arm │ │ ├── mirdef.ash │ │ ├── mirdef.atm │ │ ├── mirdef.bfp │ │ ├── mirdef.bpp │ │ ├── mirdef.bs │ │ ├── mirdef.ccc │ │ ├── mirdef.cm │ │ ├── mirdef.dll │ │ ├── mirdef.gcc │ │ ├── mirdef.gen │ │ ├── mirdef.gfp │ │ ├── mirdef.h │ │ ├── mirdef.h16 │ │ ├── mirdef.h32 │ │ ├── mirdef.h64 │ │ ├── mirdef.haf │ │ ├── mirdef.hio │ │ ├── mirdef.hpc │ │ ├── mirdef.hpp │ │ ├── mirdef.ibe │ │ ├── mirdef.kep │ │ ├── mirdef.lnx │ │ ├── mirdef.mik │ │ ├── mirdef.mip │ │ ├── mirdef.mmm │ │ ├── mirdef.ol │ │ ├── mirdef.pic │ │ ├── mirdef.ppc │ │ ├── mirdef.scr │ │ ├── mirdef.sjc │ │ ├── mirdef.tst │ │ ├── mirdef.w64 │ │ ├── mirdef.wpp │ │ ├── mnt.cpp │ │ ├── mnt.ecs │ │ ├── mnt_pair.cpp │ │ ├── modpol.cpp │ │ ├── mr87f.c │ │ ├── mr87v.c │ │ ├── mraes.c │ │ ├── mralloc.c │ │ ├── mrarth0.c │ │ ├── mrarth1.c │ │ ├── mrarth2.c │ │ ├── mrarth3.c │ │ ├── mrbits.c │ │ ├── mrbrick.c │ │ ├── mrbuild.c │ │ ├── mrcomba.tpl │ │ ├── mrcomba2.tpl │ │ ├── mrcore.c │ │ ├── mrcrt.c │ │ ├── mrcurve.c │ │ ├── mrdouble.c │ │ ├── mrebrick.c │ │ ├── mrec2m.c │ │ ├── mrecn2.c │ │ ├── mrfast.c │ │ ├── mrflash.c │ │ ├── mrflsh1.c │ │ ├── mrflsh2.c │ │ ├── mrflsh3.c │ │ ├── mrflsh4.c │ │ ├── mrfpe.c │ │ ├── mrfrnd.c │ │ ├── mrgcd.c │ │ ├── mrgcm.c │ │ ├── mrgf2m.c │ │ ├── mrio1.c │ │ ├── mrio2.c │ │ ├── mrjack.c │ │ ├── mrkcm.tpl │ │ ├── mrlucas.c │ │ ├── mrmonty.c │ │ ├── mrmuldv.any │ │ ├── mrmuldv.c │ │ ├── mrmuldv.c32 │ │ ├── mrmuldv.ccc │ │ ├── mrmuldv.g64 │ │ ├── mrmuldv.gcc │ │ ├── mrmuldv.gpp │ │ ├── mrmuldv.ppc │ │ ├── mrmuldv.s │ │ ├── mrmuldv.s64 │ │ ├── mrmuldv.tcc │ │ ├── mrpi.c │ │ ├── mrpower.c │ │ ├── mrprime.c │ │ ├── mrrand.c │ │ ├── mrround.c │ │ ├── mrscrt.c │ │ ├── mrsha3.c │ │ ├── mrshs.c │ │ ├── mrshs256.c │ │ ├── mrshs512.c │ │ ├── mrsmall.c │ │ ├── mrsroot.c │ │ ├── mrstrong.c │ │ ├── mrxgcd.c │ │ ├── mrzzn2.c │ │ ├── mrzzn2b.c │ │ ├── mrzzn3.c │ │ ├── mrzzn4.c │ │ ├── ms64doit.bat │ │ ├── ms86.mcs │ │ ├── msp430.mcs │ │ ├── mueller.cpp │ │ ├── my160.ecs │ │ ├── newbasis.cpp │ │ ├── nist163.ecs │ │ ├── nist233.ecs │ │ ├── nist283.ecs │ │ ├── nist571.ecs │ │ ├── nk4.ecs │ │ ├── octet.c │ │ ├── octet.h │ │ ├── p1363.c │ │ ├── p1363.h │ │ ├── p1363 │ │ ├── ecdh.c │ │ ├── ecdh.h │ │ ├── octet.c │ │ ├── octet.h │ │ ├── p1363.c │ │ ├── p1363.h │ │ ├── rsa.c │ │ ├── test1363.c │ │ └── testecc.c │ │ ├── pairing_1.h │ │ ├── pairing_3.h │ │ ├── pairings.txt │ │ ├── pal_dec.cpp │ │ ├── pal_enc.cpp │ │ ├── palin.c │ │ ├── palin.cpp │ │ ├── peks.cpp │ │ ├── pk-demo.c │ │ ├── pk-demo.cpp │ │ ├── pm.cpp │ │ ├── pm112.ecs │ │ ├── pm128.ecs │ │ ├── pm160.ecs │ │ ├── pollard.c │ │ ├── pollard.cpp │ │ ├── poly.cpp │ │ ├── poly.h │ │ ├── poly2.cpp │ │ ├── poly2.h │ │ ├── poly2mod.cpp │ │ ├── poly2mod.h │ │ ├── poly2xy.cpp │ │ ├── poly2xy.h │ │ ├── polymod.cpp │ │ ├── polymod.h │ │ ├── polyxy.cpp │ │ ├── polyxy.h │ │ ├── process.cpp │ │ ├── ps_big.cpp │ │ ├── ps_big.h │ │ ├── ps_zzn.cpp │ │ ├── ps_zzn.h │ │ ├── qsieve.c │ │ ├── qsieve.cpp │ │ ├── ratcalc.c │ │ ├── romaker.c │ │ ├── romaker2.c │ │ ├── roots.c │ │ ├── roots.cpp │ │ ├── rsa.c │ │ ├── rsat.c │ │ ├── sample.c │ │ ├── sample.cpp │ │ ├── schoof.cpp │ │ ├── schoof.txt │ │ ├── schoof2.cpp │ │ ├── schoof2.txt │ │ ├── sea.cpp │ │ ├── sea.txt │ │ ├── secp160.ecs │ │ ├── secp192.ecs │ │ ├── secp224.ecs │ │ ├── secp256.ecs │ │ ├── secp521.ecs │ │ ├── sf2m12x.cpp │ │ ├── sf2m12x.h │ │ ├── sk_1.cpp │ │ ├── sk_3.cpp │ │ ├── smartmip.mcs │ │ ├── sparc32.mcs │ │ ├── sparc64.mcs │ │ ├── ss2_pair.cpp │ │ ├── sse2.mcs │ │ ├── ssp_pair.cpp │ │ ├── super2.cpp │ │ ├── tc86.mcs │ │ ├── test1363.c │ │ ├── testecc.c │ │ ├── threadmp.cpp │ │ ├── threadux.cpp │ │ ├── threadwn.cpp │ │ ├── tp.cpp │ │ ├── trans.cpp │ │ ├── variable.h │ │ ├── wang.cpp │ │ ├── weil.cpp │ │ ├── weng.ecs │ │ ├── williams.c │ │ ├── williams.cpp │ │ ├── win64.mcs │ │ ├── xk1.ecs │ │ ├── zzn.cpp │ │ ├── zzn.h │ │ ├── zzn.o │ │ ├── zzn12.cpp │ │ ├── zzn12.h │ │ ├── zzn12a.cpp │ │ ├── zzn12a.h │ │ ├── zzn12b.cpp │ │ ├── zzn12b.h │ │ ├── zzn18.cpp │ │ ├── zzn18.h │ │ ├── zzn2.cpp │ │ ├── zzn2.h │ │ ├── zzn24.cpp │ │ ├── zzn24.h │ │ ├── zzn3.cpp │ │ ├── zzn3.h │ │ ├── zzn36.cpp │ │ ├── zzn36.h │ │ ├── zzn4.cpp │ │ ├── zzn4.h │ │ ├── zzn6.cpp │ │ ├── zzn6.h │ │ ├── zzn6a.cpp │ │ ├── zzn6a.h │ │ ├── zzn8.cpp │ │ └── zzn8.h ├── ntl.get └── ntl │ ├── README │ ├── doc │ ├── BasicThreadPool.cpp.html │ ├── BasicThreadPool.txt │ ├── GF2.cpp.html │ ├── GF2.txt │ ├── GF2E.cpp.html │ ├── GF2E.txt │ ├── GF2EX.cpp.html │ ├── GF2EX.txt │ ├── GF2EXFactoring.cpp.html │ ├── GF2EXFactoring.txt │ ├── GF2X.cpp.html │ ├── GF2X.txt │ ├── GF2XFactoring.cpp.html │ ├── GF2XFactoring.txt │ ├── GF2XVec.cpp.html │ ├── GF2XVec.txt │ ├── HNF.cpp.html │ ├── HNF.txt │ ├── LLL.cpp.html │ ├── LLL.txt │ ├── Lazy.cpp.html │ ├── Lazy.txt │ ├── LazyTable.cpp.html │ ├── LazyTable.txt │ ├── RR.cpp.html │ ├── RR.txt │ ├── SmartPtr.cpp.html │ ├── SmartPtr.txt │ ├── ZZ.cpp.html │ ├── ZZ.txt │ ├── ZZVec.cpp.html │ ├── ZZVec.txt │ ├── ZZX.cpp.html │ ├── ZZX.txt │ ├── ZZXFactoring.cpp.html │ ├── ZZXFactoring.txt │ ├── ZZ_p.cpp.html │ ├── ZZ_p.txt │ ├── ZZ_pE.cpp.html │ ├── ZZ_pE.txt │ ├── ZZ_pEX.cpp.html │ ├── ZZ_pEX.txt │ ├── ZZ_pEXFactoring.cpp.html │ ├── ZZ_pEXFactoring.txt │ ├── ZZ_pX.cpp.html │ ├── ZZ_pX.txt │ ├── ZZ_pXFactoring.cpp.html │ ├── ZZ_pXFactoring.txt │ ├── arrow1.gif │ ├── arrow2.gif │ ├── arrow3.gif │ ├── config.txt │ ├── conversions.txt │ ├── copying.txt │ ├── flags.txt │ ├── lzz_p.cpp.html │ ├── lzz_p.txt │ ├── lzz_pE.cpp.html │ ├── lzz_pE.txt │ ├── lzz_pEX.cpp.html │ ├── lzz_pEX.txt │ ├── lzz_pEXFactoring.cpp.html │ ├── lzz_pEXFactoring.txt │ ├── lzz_pX.cpp.html │ ├── lzz_pX.txt │ ├── lzz_pXFactoring.cpp.html │ ├── lzz_pXFactoring.txt │ ├── mat_GF2.cpp.html │ ├── mat_GF2.txt │ ├── mat_GF2E.cpp.html │ ├── mat_GF2E.txt │ ├── mat_RR.cpp.html │ ├── mat_RR.txt │ ├── mat_ZZ.cpp.html │ ├── mat_ZZ.txt │ ├── mat_ZZ_p.cpp.html │ ├── mat_ZZ_p.txt │ ├── mat_ZZ_pE.cpp.html │ ├── mat_ZZ_pE.txt │ ├── mat_lzz_p.cpp.html │ ├── mat_lzz_p.txt │ ├── mat_lzz_pE.cpp.html │ ├── mat_lzz_pE.txt │ ├── mat_poly_ZZ.cpp.html │ ├── mat_poly_ZZ.txt │ ├── mat_poly_ZZ_p.cpp.html │ ├── mat_poly_ZZ_p.txt │ ├── mat_poly_lzz_p.cpp.html │ ├── mat_poly_lzz_p.txt │ ├── matrix.cpp.html │ ├── matrix.txt │ ├── names.txt │ ├── pair.cpp.html │ ├── pair.txt │ ├── quad_float.cpp.html │ ├── quad_float.txt │ ├── sedscript.txt │ ├── tools.cpp.html │ ├── tools.txt │ ├── tour-ack.html │ ├── tour-changes.html │ ├── tour-ex1.html │ ├── tour-ex2.html │ ├── tour-ex3.html │ ├── tour-ex4.html │ ├── tour-ex5.html │ ├── tour-ex6.html │ ├── tour-ex7.html │ ├── tour-examples.html │ ├── tour-gf2x.html │ ├── tour-gmp.html │ ├── tour-impl.html │ ├── tour-intro.html │ ├── tour-modules.html │ ├── tour-roadmap.html │ ├── tour-struct.html │ ├── tour-time.html │ ├── tour-tips.html │ ├── tour-unix.html │ ├── tour-win.html │ ├── tour.html │ ├── vec_GF2.cpp.html │ ├── vec_GF2.txt │ ├── vec_GF2E.cpp.html │ ├── vec_GF2E.txt │ ├── vec_RR.cpp.html │ ├── vec_RR.txt │ ├── vec_ZZ.cpp.html │ ├── vec_ZZ.txt │ ├── vec_ZZ_p.cpp.html │ ├── vec_ZZ_p.txt │ ├── vec_ZZ_pE.cpp.html │ ├── vec_ZZ_pE.txt │ ├── vec_lzz_p.cpp.html │ ├── vec_lzz_p.txt │ ├── vec_lzz_pE.cpp.html │ ├── vec_lzz_pE.txt │ ├── vector.cpp.html │ ├── vector.txt │ ├── version.cpp.html │ ├── version.txt │ ├── xdouble.cpp.html │ └── xdouble.txt │ ├── include │ └── NTL │ │ ├── BasicThreadPool.h │ │ ├── FFT.h │ │ ├── FacVec.h │ │ ├── GF2.h │ │ ├── GF2E.h │ │ ├── GF2EX.h │ │ ├── GF2EXFactoring.h │ │ ├── GF2X.h │ │ ├── GF2XFactoring.h │ │ ├── GF2XVec.h │ │ ├── HAVE_AVX.h │ │ ├── HAVE_BUILTIN_CLZL.h │ │ ├── HAVE_FMA.h │ │ ├── HAVE_LL_TYPE.h │ │ ├── HNF.h │ │ ├── LLL.h │ │ ├── Lazy.h │ │ ├── LazyTable.h │ │ ├── RR.h │ │ ├── SPMM_ASM.h │ │ ├── SmartPtr.h │ │ ├── WordVector.h │ │ ├── ZZ.h │ │ ├── ZZVec.h │ │ ├── ZZX.h │ │ ├── ZZXFactoring.h │ │ ├── ZZ_p.h │ │ ├── ZZ_pE.h │ │ ├── ZZ_pEX.h │ │ ├── ZZ_pEXFactoring.h │ │ ├── ZZ_pX.h │ │ ├── ZZ_pXFactoring.h │ │ ├── c_lip.h │ │ ├── config.h │ │ ├── config_log.h │ │ ├── ctools.h │ │ ├── def_config.h │ │ ├── fileio.h │ │ ├── g_lip.h │ │ ├── gmp_aux.h │ │ ├── lip.h │ │ ├── lzz_p.h │ │ ├── lzz_pE.h │ │ ├── lzz_pEX.h │ │ ├── lzz_pEXFactoring.h │ │ ├── lzz_pX.h │ │ ├── lzz_pXFactoring.h │ │ ├── mach_desc.h │ │ ├── mat_GF2.h │ │ ├── mat_GF2E.h │ │ ├── mat_RR.h │ │ ├── mat_ZZ.h │ │ ├── mat_ZZ_p.h │ │ ├── mat_ZZ_pE.h │ │ ├── mat_lzz_p.h │ │ ├── mat_lzz_pE.h │ │ ├── mat_poly_ZZ.h │ │ ├── mat_poly_ZZ_p.h │ │ ├── mat_poly_lzz_p.h │ │ ├── matrix.h │ │ ├── new.h │ │ ├── pair.h │ │ ├── pair_GF2EX_long.h │ │ ├── pair_GF2X_long.h │ │ ├── pair_ZZX_long.h │ │ ├── pair_ZZ_pEX_long.h │ │ ├── pair_ZZ_pX_long.h │ │ ├── pair_lzz_pEX_long.h │ │ ├── pair_lzz_pX_long.h │ │ ├── quad_float.h │ │ ├── sp_arith.h │ │ ├── thread.h │ │ ├── tools.h │ │ ├── vec_GF2.h │ │ ├── vec_GF2E.h │ │ ├── vec_GF2XVec.h │ │ ├── vec_RR.h │ │ ├── vec_ZZ.h │ │ ├── vec_ZZVec.h │ │ ├── vec_ZZ_p.h │ │ ├── vec_ZZ_pE.h │ │ ├── vec_double.h │ │ ├── vec_long.h │ │ ├── vec_lzz_p.h │ │ ├── vec_lzz_pE.h │ │ ├── vec_quad_float.h │ │ ├── vec_ulong.h │ │ ├── vec_vec_GF2.h │ │ ├── vec_vec_GF2E.h │ │ ├── vec_vec_RR.h │ │ ├── vec_vec_ZZ.h │ │ ├── vec_vec_ZZ_p.h │ │ ├── vec_vec_ZZ_pE.h │ │ ├── vec_vec_long.h │ │ ├── vec_vec_lzz_p.h │ │ ├── vec_vec_lzz_pE.h │ │ ├── vec_vec_ulong.h │ │ ├── vec_xdouble.h │ │ ├── vector.h │ │ ├── version.h │ │ ├── wizard_log.h │ │ └── xdouble.h │ └── src │ ├── BasicThreadPool.c │ ├── BerlekampTest.c │ ├── BerlekampTestIn │ ├── BerlekampTestOut │ ├── BitMatTest.c │ ├── CanZassTest.c │ ├── CanZassTestIn │ ├── CanZassTestOut │ ├── CharPolyTest.c │ ├── CharPolyTestIn │ ├── CharPolyTestOut │ ├── CheckAVX.c │ ├── CheckCLZL.c │ ├── CheckCLZLAux.c │ ├── CheckCompile.c │ ├── CheckFMA.c │ ├── CheckFeature.log │ ├── CheckFlag.log │ ├── CheckLL.c │ ├── CheckLLAux.c │ ├── CopyFeatures │ ├── DIRNAME │ ├── DispSettings.c │ ├── DoConfig │ ├── ExceptionTest.c │ ├── FFT.c │ ├── FacVec.c │ ├── GF2.c │ ├── GF2E.c │ ├── GF2EX.c │ ├── GF2EXFactoring.c │ ├── GF2EXTest.c │ ├── GF2X.c │ ├── GF2X1.c │ ├── GF2XFactoring.c │ ├── GF2XTest.c │ ├── GF2XTimeTest.c │ ├── GF2XVec.c │ ├── G_LLL_FP.c │ ├── G_LLL_QP.c │ ├── G_LLL_RR.c │ ├── G_LLL_XD.c │ ├── GetPID.c │ ├── GetPID1.c │ ├── GetPID2.c │ ├── GetTime.c │ ├── GetTime0.c │ ├── GetTime1.c │ ├── GetTime2.c │ ├── GetTime3.c │ ├── GetTime4.c │ ├── GetTime5.c │ ├── HNF.c │ ├── InitSettings.c │ ├── LLL.c │ ├── LLLTest.c │ ├── LLLTestIn │ ├── LLLTestOut │ ├── LLL_FP.c │ ├── LLL_QP.c │ ├── LLL_RR.c │ ├── LLL_XD.c │ ├── MakeCheckFeature │ ├── MakeDesc.c │ ├── MakeDescAux.c │ ├── MakeGetPID │ ├── MakeGetTime │ ├── MatrixTest.c │ ├── MatrixTestIn │ ├── MatrixTestOut │ ├── MoreFacTest.c │ ├── MoreFacTestIn │ ├── MulTimeTest.c │ ├── NOTES │ ├── Poly1TimeTest.c │ ├── Poly2TimeTest.c │ ├── Poly3TimeTest.c │ ├── QuadTest.c │ ├── QuadTestIn │ ├── QuadTestOut │ ├── QuickTest.c │ ├── RR.c │ ├── RRTest.c │ ├── RRTestIn │ ├── RRTestOut │ ├── RemoveProg │ ├── ResetFeatures │ ├── TestGetPID.c │ ├── TestGetTime.c │ ├── TestScript │ ├── ThreadTest.c │ ├── Timing.c │ ├── VERSION_INFO │ ├── WINDIR │ ├── Wizard │ ├── WizardAux │ ├── WordVector.c │ ├── ZZ.c │ ├── ZZVec.c │ ├── ZZX.c │ ├── ZZX1.c │ ├── ZZXCharPoly.c │ ├── ZZXFacTest.c │ ├── ZZXFacTestIn │ ├── ZZXFacTestOut │ ├── ZZXFactoring.c │ ├── ZZ_p.c │ ├── ZZ_pE.c │ ├── ZZ_pEX.c │ ├── ZZ_pEXFactoring.c │ ├── ZZ_pEXTest.c │ ├── ZZ_pX.c │ ├── ZZ_pX1.c │ ├── ZZ_pXCharPoly.c │ ├── ZZ_pXFactoring.c │ ├── all │ ├── c_lip_impl.h │ ├── cfile │ ├── cfileout │ ├── configure │ ├── ctools.c │ ├── def_makefile │ ├── dosify │ ├── fileio.c │ ├── g_lip_impl.h │ ├── gen_gmp_aux.c │ ├── hfileout │ ├── lip.c │ ├── lzz_p.c │ ├── lzz_pE.c │ ├── lzz_pEX.c │ ├── lzz_pEXFactoring.c │ ├── lzz_pEXTest.c │ ├── lzz_pX.c │ ├── lzz_pX1.c │ ├── lzz_pXCharPoly.c │ ├── lzz_pXFactoring.c │ ├── mach_desc.win │ ├── makefile │ ├── mat_GF2.c │ ├── mat_GF2E.c │ ├── mat_RR.c │ ├── mat_ZZ.c │ ├── mat_ZZ_p.c │ ├── mat_ZZ_pE.c │ ├── mat_lzz_p.c │ ├── mat_lzz_pE.c │ ├── mat_lzz_pTest.c │ ├── mat_poly_ZZ.c │ ├── mat_poly_ZZ_p.c │ ├── mat_poly_lzz_p.c │ ├── mfile │ ├── mfileout │ ├── newnames.c │ ├── ppscript │ ├── quad_float.c │ ├── subset.c │ ├── thread.c │ ├── tools.c │ ├── unixify │ ├── vec_GF2.c │ ├── vec_GF2E.c │ ├── vec_RR.c │ ├── vec_ZZ.c │ ├── vec_ZZ_p.c │ ├── vec_ZZ_pE.c │ ├── vec_lzz_p.c │ ├── vec_lzz_pE.c │ └── xdouble.c └── win ├── NTL_patch ├── include │ └── NTL │ │ └── def_config.h ├── ntl.sln ├── ntl.vcxproj └── ntl.vcxproj.filters ├── cryptopp_patch ├── cryptest.sln ├── cryptlib.vcxproj └── cryptlib.vcxproj.filters ├── getBoost.ps1 ├── getCryptoPP.ps1 ├── getMiracl.ps1 ├── getMpir.ps1 ├── getNTL.ps1 ├── miracl ├── .gitignore ├── Miracl.sln ├── miracl │ ├── include │ │ ├── big.h │ │ ├── brick.h │ │ ├── crt.h │ │ ├── ebrick.h │ │ ├── ebrick2.h │ │ ├── ec2.h │ │ ├── ecn.h │ │ ├── ecnzzn.h │ │ ├── flash.h │ │ ├── floating.h │ │ ├── gf2m.h │ │ ├── miracl.h │ │ ├── mirdef.h │ │ └── zzn.h │ ├── miracl.vcxproj │ ├── miracl.vcxproj.filters │ └── source │ │ ├── linux64 │ │ ├── mr87f.c │ │ ├── mr87v.c │ │ ├── mraes.c │ │ ├── mralloc.c │ │ ├── mrarth0.c │ │ ├── mrarth1.c │ │ ├── mrarth2.c │ │ ├── mrarth3.c │ │ ├── mrbits.c │ │ ├── mrbrick.c │ │ ├── mrbuild.c │ │ ├── mrcore.c │ │ ├── mrcrt.c │ │ ├── mrcurve.c │ │ ├── mrdouble.c │ │ ├── mrebrick.c │ │ ├── mrec2m.c │ │ ├── mrecn2.c │ │ ├── mrfast.c │ │ ├── mrflash.c │ │ ├── mrflsh1.c │ │ ├── mrflsh2.c │ │ ├── mrflsh3.c │ │ ├── mrflsh4.c │ │ ├── mrfpe.c │ │ ├── mrfrnd.c │ │ ├── mrgcd.c │ │ ├── mrgcm.c │ │ ├── mrgf2m.c │ │ ├── mrio1.c │ │ ├── mrio2.c │ │ ├── mrjack.c │ │ ├── mrlucas.c │ │ ├── mrmonty.c │ │ ├── mrmuldv.c │ │ ├── mrpi.c │ │ ├── mrpower.c │ │ ├── mrprime.c │ │ ├── mrrand.c │ │ ├── mrround.c │ │ ├── mrscrt.c │ │ ├── mrsha3.c │ │ ├── mrshs.c │ │ ├── mrshs256.c │ │ ├── mrshs512.c │ │ ├── mrsmall.c │ │ ├── mrsroot.c │ │ ├── mrstrong.c │ │ ├── mrxgcd.c │ │ ├── mrzzn2.c │ │ ├── mrzzn2b.c │ │ ├── mrzzn3.c │ │ ├── mrzzn4.c │ │ ├── octet.c │ │ ├── octet.h │ │ └── p1363 │ │ ├── octet.c │ │ └── octet.h └── miracl_osmt │ ├── include │ ├── MIRDEF.AMD │ ├── MIRDEF.SPR │ ├── big.h │ ├── brick.h │ ├── crt.h │ ├── ebrick.h │ ├── ebrick2.h │ ├── ec2.h │ ├── ecn.h │ ├── ecnzzn.h │ ├── flash.h │ ├── floating.h │ ├── gf2m.h │ ├── miracl.h │ ├── mirdef │ ├── mirdef.arm │ ├── mirdef.ash │ ├── mirdef.atm │ ├── mirdef.bfp │ ├── mirdef.bpp │ ├── mirdef.bs │ ├── mirdef.ccc │ ├── mirdef.cm │ ├── mirdef.dll │ ├── mirdef.gcc │ ├── mirdef.gen │ ├── mirdef.gfp │ ├── mirdef.h │ ├── mirdef.h16 │ ├── mirdef.h32 │ ├── mirdef.h64 │ ├── mirdef.haf │ ├── mirdef.hio │ ├── mirdef.hpc │ ├── mirdef.hpp │ ├── mirdef.ibe │ ├── mirdef.kep │ ├── mirdef.lnx │ ├── mirdef.mik │ ├── mirdef.mip │ ├── mirdef.mmm │ ├── mirdef.ol │ ├── mirdef.pic │ ├── mirdef.ppc │ ├── mirdef.scr │ ├── mirdef.sjc │ ├── mirdef.w64 │ ├── mirdef.wpp │ ├── ms64doit.bat │ └── zzn.h │ ├── miracl_osmt.vcxproj │ ├── miracl_osmt.vcxproj.filters │ └── source │ ├── MIRDEF.AMD │ ├── MIRDEF.SPR │ ├── ake.cpp │ ├── ake.txt │ ├── ake12blsa.cpp │ ├── ake12bna.cpp │ ├── ake12bne.cpp │ ├── ake12bnr.cpp │ ├── ake12bnx.cpp │ ├── ake18kssx.cpp │ ├── ake1kmt.cpp │ ├── ake24blsa.cpp │ ├── ake2cpt.cpp │ ├── ake2cpt2.cpp │ ├── ake2cpw.cpp │ ├── ake2nsst.cpp │ ├── ake2sst.cpp │ ├── ake4cpt.cpp │ ├── ake4fsta.cpp │ ├── ake4mnta.c │ ├── ake4mnta.cpp │ ├── ake4mntt.c │ ├── ake4mntt.cpp │ ├── ake4sbt.cpp │ ├── ake6fsta.cpp │ ├── ake6mnta.cpp │ ├── ake6mntt.c │ ├── ake6mntt.cpp │ ├── ake6mntx.cpp │ ├── ake8bwt.cpp │ ├── ake8cpt.cpp │ ├── amd64.mcs │ ├── arm.mcs │ ├── avr.mcs │ ├── avr2.mcs │ ├── avr4.mcs │ ├── bandw.cpp │ ├── bgw.cpp │ ├── big.cpp │ ├── bk2.ecs │ ├── blackfin.mcs │ ├── blmq.cpp │ ├── bls.cpp │ ├── bls12.cpp │ ├── bls24.cpp │ ├── bls_gen.cpp │ ├── bls_pair.cpp │ ├── bls_sign.cpp │ ├── bls_ver.cpp │ ├── bmark.c │ ├── bmc.cpp │ ├── bn.cpp │ ├── bn_pair.cpp │ ├── bp160.ecs │ ├── bpt160.ecs │ ├── brent.c │ ├── brent.cpp │ ├── brent_mt.c │ ├── brick.c │ ├── brick.cpp │ ├── brute.c │ ├── brute.cpp │ ├── c.mcs │ ├── c1.mcs │ ├── c2.mcs │ ├── cardano.cpp │ ├── clmul.mcs │ ├── cm.cpp │ ├── cm.txt │ ├── common.dss │ ├── common.ecs │ ├── common2.ecs │ ├── complex.cpp │ ├── complex.h │ ├── cp_pair.cpp │ ├── cpabe.cpp │ ├── crdecode.cpp │ ├── crencode.cpp │ ├── crgen.cpp │ ├── crsetup.cpp │ ├── crt.cpp │ ├── cs.mcs │ ├── curve │ ├── cm.cpp │ ├── cm.txt │ ├── complex.cpp │ ├── complex.h │ ├── flpoly.cpp │ ├── flpoly.h │ ├── glv.cpp │ ├── modpol.cpp │ ├── mueller.cpp │ ├── pairing │ │ ├── ake.cpp │ │ ├── ake.txt │ │ ├── ake12blsa.cpp │ │ ├── ake12bna.cpp │ │ ├── ake12bne.cpp │ │ ├── ake12bnr.cpp │ │ ├── ake12bnx.cpp │ │ ├── ake18kssx.cpp │ │ ├── ake1kmt.cpp │ │ ├── ake24blsa.cpp │ │ ├── ake2cpt.cpp │ │ ├── ake2cpt2.cpp │ │ ├── ake2cpw.cpp │ │ ├── ake2nsst.cpp │ │ ├── ake2sst.cpp │ │ ├── ake4cpt.cpp │ │ ├── ake4fsta.cpp │ │ ├── ake4mnta.c │ │ ├── ake4mnta.cpp │ │ ├── ake4mntt.c │ │ ├── ake4mntt.cpp │ │ ├── ake4sbt.cpp │ │ ├── ake6fsta.cpp │ │ ├── ake6mnta.cpp │ │ ├── ake6mntt.c │ │ ├── ake6mntt.cpp │ │ ├── ake6mntx.cpp │ │ ├── ake8bwt.cpp │ │ ├── ake8cpt.cpp │ │ ├── bandw.cpp │ │ ├── bgw.cpp │ │ ├── bk2.ecs │ │ ├── blmq.cpp │ │ ├── bls.cpp │ │ ├── bls12.cpp │ │ ├── bls24.cpp │ │ ├── bls_gen.cpp │ │ ├── bls_pair.cpp │ │ ├── bls_sign.cpp │ │ ├── bls_ver.cpp │ │ ├── bmc.cpp │ │ ├── bn.cpp │ │ ├── bn_pair.cpp │ │ ├── cp_pair.cpp │ │ ├── cpabe.cpp │ │ ├── daa.cpp │ │ ├── dl.cpp │ │ ├── dl2.cpp │ │ ├── ecn2.cpp │ │ ├── ecn2.h │ │ ├── ecn3.cpp │ │ ├── ecn3.h │ │ ├── ecn4.cpp │ │ ├── ecn4.h │ │ ├── ecn6.cpp │ │ ├── ecn6.h │ │ ├── etat271.c │ │ ├── folklore.cpp │ │ ├── freeman.cpp │ │ ├── fuzzy.cpp │ │ ├── gf2m12x.cpp │ │ ├── gf2m12x.h │ │ ├── gf2m4x.cpp │ │ ├── gf2m4x.h │ │ ├── gf2m6x.cpp │ │ ├── gf2m6x.h │ │ ├── hibe.cpp │ │ ├── ipe.cpp │ │ ├── ipk.txt │ │ ├── ipk_dec.cpp │ │ ├── ipk_enc.cpp │ │ ├── ipk_ext.cpp │ │ ├── ipk_set.cpp │ │ ├── irred.cpp │ │ ├── k2.ecs │ │ ├── k2ss.ecs │ │ ├── k4.ecs │ │ ├── k4mnt.ecs │ │ ├── k6.ecs │ │ ├── k8.ecs │ │ ├── kss18.cpp │ │ ├── kss36.cpp │ │ ├── kss8.cpp │ │ ├── kss_pair.cpp │ │ ├── kw4.ecs │ │ ├── make_k1.cpp │ │ ├── mnt.cpp │ │ ├── mnt.ecs │ │ ├── mnt_pair.cpp │ │ ├── nk4.ecs │ │ ├── pairing_1.h │ │ ├── pairing_3.h │ │ ├── pairings.txt │ │ ├── peks.cpp │ │ ├── sf2m12x.cpp │ │ ├── sf2m12x.h │ │ ├── sk_1.cpp │ │ ├── sk_3.cpp │ │ ├── ss2_pair.cpp │ │ ├── ssp_pair.cpp │ │ ├── wang.cpp │ │ ├── weng.ecs │ │ ├── xk1.ecs │ │ ├── zzn12.cpp │ │ ├── zzn12.h │ │ ├── zzn12a.cpp │ │ ├── zzn12a.h │ │ ├── zzn12b.cpp │ │ ├── zzn12b.h │ │ ├── zzn18.cpp │ │ ├── zzn18.h │ │ ├── zzn2.cpp │ │ ├── zzn2.h │ │ ├── zzn24.cpp │ │ ├── zzn24.h │ │ ├── zzn3.cpp │ │ ├── zzn3.h │ │ ├── zzn36.cpp │ │ ├── zzn36.h │ │ ├── zzn4.cpp │ │ ├── zzn4.h │ │ ├── zzn6.cpp │ │ ├── zzn6.h │ │ ├── zzn6a.cpp │ │ ├── zzn6a.h │ │ ├── zzn8.cpp │ │ └── zzn8.h │ ├── poly.cpp │ ├── poly.h │ ├── poly2.cpp │ ├── poly2.h │ ├── poly2mod.cpp │ ├── poly2mod.h │ ├── poly2xy.cpp │ ├── poly2xy.h │ ├── polymod.cpp │ ├── polymod.h │ ├── polyxy.cpp │ ├── polyxy.h │ ├── process.cpp │ ├── ps_big.cpp │ ├── ps_big.h │ ├── ps_zzn.cpp │ ├── ps_zzn.h │ ├── schoof.cpp │ ├── schoof.txt │ ├── schoof2.cpp │ ├── schoof2.txt │ ├── sea.cpp │ ├── sea.txt │ ├── super2.cpp │ ├── trans.cpp │ ├── variable.h │ └── weil.cpp │ ├── daa.cpp │ ├── deciph.c │ ├── deciph.cpp │ ├── decode.c │ ├── decode.cpp │ ├── dl.cpp │ ├── dl2.cpp │ ├── dssetup.c │ ├── dssetup.cpp │ ├── dssgen.c │ ├── dssgen.cpp │ ├── dssign.c │ ├── dssign.cpp │ ├── dssver.c │ ├── dssver.cpp │ ├── ebrick.c │ ├── ebrick.cpp │ ├── ebrick2.c │ ├── ebrick2.cpp │ ├── ec2.cpp │ ├── ecdh.c │ ├── ecdh.h │ ├── ecdh2m.c │ ├── ecdh2m16.c │ ├── ecdh2m8.c │ ├── ecdhp.c │ ├── ecdhp16.c │ ├── ecdhp32.c │ ├── ecdhp8.c │ ├── ecn.cpp │ ├── ecn2.cpp │ ├── ecn2.h │ ├── ecn2_opt.c │ ├── ecn3.cpp │ ├── ecn3.h │ ├── ecn4.cpp │ ├── ecn4.h │ ├── ecn6.cpp │ ├── ecn6.h │ ├── ecnzzn.cpp │ ├── ecsgen.c │ ├── ecsgen.cpp │ ├── ecsgen2.c │ ├── ecsgen2.cpp │ ├── ecsgen2s.c │ ├── ecsgen_s.c │ ├── ecsign.c │ ├── ecsign.cpp │ ├── ecsign2.c │ ├── ecsign2.cpp │ ├── ecsign2s.c │ ├── ecsign_s.c │ ├── ecsver.c │ ├── ecsver.cpp │ ├── ecsver2.c │ ├── ecsver2.cpp │ ├── ecsver2s.c │ ├── ecsver_s.c │ ├── edwards.ecs │ ├── enciph.c │ ├── enciph.cpp │ ├── encode.c │ ├── encode.cpp │ ├── etat271.c │ ├── fact.c │ ├── fact.cpp │ ├── factor.c │ ├── findbase.cpp │ ├── flash.cpp │ ├── floating.cpp │ ├── flpoly.cpp │ ├── flpoly.h │ ├── folklore.cpp │ ├── freeman.cpp │ ├── fsample.cpp │ ├── fuzzy.cpp │ ├── gcc386.mcs │ ├── gccarm.mcs │ ├── gcclmul.mcs │ ├── gccmsp430.mcs │ ├── gccppc.mcs │ ├── gccsse2.mcs │ ├── genkey.c │ ├── genkey.cpp │ ├── genprime.c │ ├── genprime.cpp │ ├── gf2m.cpp │ ├── gf2m12x.cpp │ ├── gf2m12x.h │ ├── gf2m4x.cpp │ ├── gf2m4x.h │ ├── gf2m6x.cpp │ ├── gf2m6x.h │ ├── glv.cpp │ ├── hail.c │ ├── hail.cpp │ ├── hibe.cpp │ ├── hilbert.c │ ├── hilbert.cpp │ ├── identity.c │ ├── imratio.c │ ├── imratio2.c │ ├── index.c │ ├── index.cpp │ ├── ipe.cpp │ ├── ipk.txt │ ├── ipk_dec.cpp │ ├── ipk_enc.cpp │ ├── ipk_ext.cpp │ ├── ipk_set.cpp │ ├── irp.cpp │ ├── irred.cpp │ ├── itanium.mcs │ ├── k2.ecs │ ├── k2ss.ecs │ ├── k4.ecs │ ├── k4mnt.ecs │ ├── k6.ecs │ ├── k8.ecs │ ├── kangaroo.c │ ├── kangaroo.cpp │ ├── kob163.ecs │ ├── kob233.ecs │ ├── kob283.ecs │ ├── kob571.ecs │ ├── kss18.cpp │ ├── kss36.cpp │ ├── kss8.cpp │ ├── kss_pair.cpp │ ├── kw4.ecs │ ├── lenstra.c │ ├── lenstra.cpp │ ├── limlee.c │ ├── limlee.cpp │ ├── make_k1.cpp │ ├── mersenne.c │ ├── mersenne.cpp │ ├── mips.mcs │ ├── mirdef │ ├── mirdef.arm │ ├── mirdef.ash │ ├── mirdef.atm │ ├── mirdef.bfp │ ├── mirdef.bpp │ ├── mirdef.bs │ ├── mirdef.ccc │ ├── mirdef.cm │ ├── mirdef.dll │ ├── mirdef.gcc │ ├── mirdef.gen │ ├── mirdef.gfp │ ├── mirdef.h16 │ ├── mirdef.h32 │ ├── mirdef.h64 │ ├── mirdef.haf │ ├── mirdef.hio │ ├── mirdef.hpc │ ├── mirdef.ibe │ ├── mirdef.kep │ ├── mirdef.lnx │ ├── mirdef.mik │ ├── mirdef.mip │ ├── mirdef.mmm │ ├── mirdef.ol │ ├── mirdef.pic │ ├── mirdef.ppc │ ├── mirdef.scr │ ├── mirdef.sjc │ ├── mirdef.tst │ ├── mnt.cpp │ ├── mnt.ecs │ ├── mnt_pair.cpp │ ├── modpol.cpp │ ├── mr87f.c │ ├── mr87v.c │ ├── mraes.c │ ├── mralloc.c │ ├── mrarth0.c │ ├── mrarth1.c │ ├── mrarth2.c │ ├── mrarth3.c │ ├── mrbits.c │ ├── mrbrick.c │ ├── mrbuild.c │ ├── mrcomba.tpl │ ├── mrcomba2.tpl │ ├── mrcore.c │ ├── mrcrt.c │ ├── mrcurve.c │ ├── mrdouble.c │ ├── mrebrick.c │ ├── mrec2m.c │ ├── mrecn2.c │ ├── mrfast.c │ ├── mrflash.c │ ├── mrflsh1.c │ ├── mrflsh2.c │ ├── mrflsh3.c │ ├── mrflsh4.c │ ├── mrfpe.c │ ├── mrfrnd.c │ ├── mrgcd.c │ ├── mrgcm.c │ ├── mrgf2m.c │ ├── mrio1.c │ ├── mrio2.c │ ├── mrjack.c │ ├── mrkcm.tpl │ ├── mrlucas.c │ ├── mrmonty.c │ ├── mrmuldv.any │ ├── mrmuldv.c │ ├── mrmuldv.c32 │ ├── mrmuldv.ccc │ ├── mrmuldv.g64 │ ├── mrmuldv.gcc │ ├── mrmuldv.gpp │ ├── mrmuldv.ppc │ ├── mrmuldv.s │ ├── mrmuldv.s64 │ ├── mrmuldv.tcc │ ├── mrpi.c │ ├── mrpower.c │ ├── mrprime.c │ ├── mrrand.c │ ├── mrround.c │ ├── mrscrt.c │ ├── mrsha3.c │ ├── mrshs.c │ ├── mrshs256.c │ ├── mrshs512.c │ ├── mrsmall.c │ ├── mrsroot.c │ ├── mrstrong.c │ ├── mrxgcd.c │ ├── mrzzn2.c │ ├── mrzzn2b.c │ ├── mrzzn3.c │ ├── mrzzn4.c │ ├── ms86.mcs │ ├── msp430.mcs │ ├── mueller.cpp │ ├── my160.ecs │ ├── newbasis.cpp │ ├── nist163.ecs │ ├── nist233.ecs │ ├── nist283.ecs │ ├── nist571.ecs │ ├── nk4.ecs │ ├── octet.c │ ├── octet.h │ ├── p1363.c │ ├── p1363.h │ ├── p1363 │ ├── ecdh.c │ ├── ecdh.h │ ├── octet.c │ ├── octet.h │ ├── p1363.c │ ├── p1363.h │ ├── rsa.c │ ├── test1363.c │ └── testecc.c │ ├── pairing_1.h │ ├── pairing_3.h │ ├── pairings.txt │ ├── pal_dec.cpp │ ├── pal_enc.cpp │ ├── palin.c │ ├── palin.cpp │ ├── peks.cpp │ ├── pk-demo.c │ ├── pk-demo.cpp │ ├── pm.cpp │ ├── pm112.ecs │ ├── pm128.ecs │ ├── pm160.ecs │ ├── pollard.c │ ├── pollard.cpp │ ├── poly.cpp │ ├── poly.h │ ├── poly2.cpp │ ├── poly2.h │ ├── poly2mod.cpp │ ├── poly2mod.h │ ├── poly2xy.cpp │ ├── poly2xy.h │ ├── polymod.cpp │ ├── polymod.h │ ├── polyxy.cpp │ ├── polyxy.h │ ├── process.cpp │ ├── ps_big.cpp │ ├── ps_big.h │ ├── ps_zzn.cpp │ ├── ps_zzn.h │ ├── qsieve.c │ ├── qsieve.cpp │ ├── ratcalc.c │ ├── romaker.c │ ├── romaker2.c │ ├── roots.c │ ├── roots.cpp │ ├── rsa.c │ ├── rsat.c │ ├── sample.c │ ├── sample.cpp │ ├── schoof.cpp │ ├── schoof.txt │ ├── schoof2.cpp │ ├── schoof2.txt │ ├── sea.cpp │ ├── sea.txt │ ├── secp160.ecs │ ├── secp192.ecs │ ├── secp224.ecs │ ├── secp256.ecs │ ├── secp521.ecs │ ├── sf2m12x.cpp │ ├── sf2m12x.h │ ├── sk_1.cpp │ ├── sk_3.cpp │ ├── smartmip.mcs │ ├── sparc32.mcs │ ├── sparc64.mcs │ ├── ss2_pair.cpp │ ├── sse2.mcs │ ├── ssp_pair.cpp │ ├── super2.cpp │ ├── tc86.mcs │ ├── test1363.c │ ├── testecc.c │ ├── threadmp.cpp │ ├── threadux.cpp │ ├── threadwn.cpp │ ├── tp.cpp │ ├── trans.cpp │ ├── variable.h │ ├── wang.cpp │ ├── weil.cpp │ ├── weng.ecs │ ├── williams.c │ ├── williams.cpp │ ├── win64.mcs │ ├── xk1.ecs │ ├── zzn.cpp │ ├── zzn12.cpp │ ├── zzn12.h │ ├── zzn12a.cpp │ ├── zzn12a.h │ ├── zzn12b.cpp │ ├── zzn12b.h │ ├── zzn18.cpp │ ├── zzn18.h │ ├── zzn2.cpp │ ├── zzn2.h │ ├── zzn24.cpp │ ├── zzn24.h │ ├── zzn3.cpp │ ├── zzn3.h │ ├── zzn36.cpp │ ├── zzn36.h │ ├── zzn4.cpp │ ├── zzn4.h │ ├── zzn6.cpp │ ├── zzn6.h │ ├── zzn6a.cpp │ ├── zzn6a.h │ ├── zzn8.cpp │ └── zzn8.h └── mpirxx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vs/nPSI/v16/Browse.VC.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/.vs/nPSI/v16/Browse.VC.db-shm -------------------------------------------------------------------------------- /.vs/nPSI/v16/Browse.VC.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/nPSI/v16/Solution.VC.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/.vs/nPSI/v16/Solution.VC.db-shm -------------------------------------------------------------------------------- /.vs/nPSI/v16/Solution.VC.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/nPSI/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/.vs/nPSI/v16/TestStore/0/000.testlog -------------------------------------------------------------------------------- /.vs/nPSI/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/.vs/nPSI/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Ben-Efraim-comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/Ben-Efraim-comparison.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ExternalDependancies.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/ExternalDependancies.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/README.md -------------------------------------------------------------------------------- /UnitTest/UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/UnitTest/UnitTest.cpp -------------------------------------------------------------------------------- /UnitTest/UnitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/UnitTest/UnitTest.vcxproj -------------------------------------------------------------------------------- /UnitTest/UnitTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/UnitTest/UnitTest.vcxproj.filters -------------------------------------------------------------------------------- /UnitTest/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/UnitTest/pch.cpp -------------------------------------------------------------------------------- /UnitTest/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/UnitTest/pch.h -------------------------------------------------------------------------------- /copySourceToLinux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/copySourceToLinux.ps1 -------------------------------------------------------------------------------- /cryptoTools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/.gitignore -------------------------------------------------------------------------------- /cryptoTools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/CMakeLists.txt -------------------------------------------------------------------------------- /cryptoTools/Common/ArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/ArrayView.h -------------------------------------------------------------------------------- /cryptoTools/Common/BitIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/BitIterator.cpp -------------------------------------------------------------------------------- /cryptoTools/Common/BitIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/BitIterator.h -------------------------------------------------------------------------------- /cryptoTools/Common/BitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/BitVector.cpp -------------------------------------------------------------------------------- /cryptoTools/Common/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/BitVector.h -------------------------------------------------------------------------------- /cryptoTools/Common/ByteStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/ByteStream.cpp -------------------------------------------------------------------------------- /cryptoTools/Common/ByteStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/ByteStream.h -------------------------------------------------------------------------------- /cryptoTools/Common/Defines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Defines.cpp -------------------------------------------------------------------------------- /cryptoTools/Common/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Defines.h -------------------------------------------------------------------------------- /cryptoTools/Common/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Exceptions.h -------------------------------------------------------------------------------- /cryptoTools/Common/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Log.cpp -------------------------------------------------------------------------------- /cryptoTools/Common/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Log.h -------------------------------------------------------------------------------- /cryptoTools/Common/Log1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Log1.cpp -------------------------------------------------------------------------------- /cryptoTools/Common/Log1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Log1.h -------------------------------------------------------------------------------- /cryptoTools/Common/MatrixView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/MatrixView.h -------------------------------------------------------------------------------- /cryptoTools/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Timer.cpp -------------------------------------------------------------------------------- /cryptoTools/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/Timer.h -------------------------------------------------------------------------------- /cryptoTools/Common/mpsc_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Common/mpsc_queue.h -------------------------------------------------------------------------------- /cryptoTools/Crypto/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/AES.cpp -------------------------------------------------------------------------------- /cryptoTools/Crypto/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/AES.h -------------------------------------------------------------------------------- /cryptoTools/Crypto/Commit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/Commit.h -------------------------------------------------------------------------------- /cryptoTools/Crypto/Curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/Curve.cpp -------------------------------------------------------------------------------- /cryptoTools/Crypto/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/Curve.h -------------------------------------------------------------------------------- /cryptoTools/Crypto/PRNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/PRNG.cpp -------------------------------------------------------------------------------- /cryptoTools/Crypto/PRNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/PRNG.h -------------------------------------------------------------------------------- /cryptoTools/Crypto/asm/sha_lnx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/asm/sha_lnx.S -------------------------------------------------------------------------------- /cryptoTools/Crypto/asm/sha_win64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/asm/sha_win64.asm -------------------------------------------------------------------------------- /cryptoTools/Crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/sha1.cpp -------------------------------------------------------------------------------- /cryptoTools/Crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Crypto/sha1.h -------------------------------------------------------------------------------- /cryptoTools/Network/BtAcceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtAcceptor.cpp -------------------------------------------------------------------------------- /cryptoTools/Network/BtAcceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtAcceptor.h -------------------------------------------------------------------------------- /cryptoTools/Network/BtChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtChannel.cpp -------------------------------------------------------------------------------- /cryptoTools/Network/BtChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtChannel.h -------------------------------------------------------------------------------- /cryptoTools/Network/BtEndpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtEndpoint.cpp -------------------------------------------------------------------------------- /cryptoTools/Network/BtEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtEndpoint.h -------------------------------------------------------------------------------- /cryptoTools/Network/BtIOService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtIOService.cpp -------------------------------------------------------------------------------- /cryptoTools/Network/BtIOService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtIOService.h -------------------------------------------------------------------------------- /cryptoTools/Network/BtSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/BtSocket.h -------------------------------------------------------------------------------- /cryptoTools/Network/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/Channel.cpp -------------------------------------------------------------------------------- /cryptoTools/Network/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/Channel.h -------------------------------------------------------------------------------- /cryptoTools/Network/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/Network/Endpoint.h -------------------------------------------------------------------------------- /cryptoTools/cryptoTools.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/cryptoTools.vcxproj -------------------------------------------------------------------------------- /cryptoTools/cryptoTools.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/cryptoTools/cryptoTools.vcxproj.filters -------------------------------------------------------------------------------- /cryptoTools/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/CLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/CLP.cpp -------------------------------------------------------------------------------- /frontend/CLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/CLP.h -------------------------------------------------------------------------------- /frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/OtBinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/OtBinMain.cpp -------------------------------------------------------------------------------- /frontend/OtBinMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/OtBinMain.h -------------------------------------------------------------------------------- /frontend/OtBinMain.v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/OtBinMain.v2.cpp -------------------------------------------------------------------------------- /frontend/OtBinMain.v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/OtBinMain.v2.h -------------------------------------------------------------------------------- /frontend/_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/bitPosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/bitPosition.cpp -------------------------------------------------------------------------------- /frontend/bitPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/bitPosition.h -------------------------------------------------------------------------------- /frontend/e_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/frontend.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/frontend.vcxproj -------------------------------------------------------------------------------- /frontend/frontend.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/frontend.vcxproj.filters -------------------------------------------------------------------------------- /frontend/gbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/gbf.h -------------------------------------------------------------------------------- /frontend/ime_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/main.cpp -------------------------------------------------------------------------------- /frontend/me_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/miraclTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/miraclTest.cpp -------------------------------------------------------------------------------- /frontend/ntime: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/ntime_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/o1party.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/o1party.h -------------------------------------------------------------------------------- /frontend/psi3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/psi3.h -------------------------------------------------------------------------------- /frontend/runtime3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/runtime3.txt -------------------------------------------------------------------------------- /frontend/runtime_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/runtime_aug_client.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/runtime_aug_leader.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/runtime_client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/runtime_client.txt -------------------------------------------------------------------------------- /frontend/runtime_leader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/runtime_leader.txt -------------------------------------------------------------------------------- /frontend/stashSizes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/stashSizes.txt -------------------------------------------------------------------------------- /frontend/time_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/tpsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/tpsi.h -------------------------------------------------------------------------------- /frontend/untime_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/util.cpp -------------------------------------------------------------------------------- /frontend/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/frontend/util.h -------------------------------------------------------------------------------- /libOPRF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/CMakeLists.txt -------------------------------------------------------------------------------- /libOPRF/Hashing/BitPosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/BitPosition.cpp -------------------------------------------------------------------------------- /libOPRF/Hashing/BitPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/BitPosition.h -------------------------------------------------------------------------------- /libOPRF/Hashing/CuckooHasher1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/CuckooHasher1.cpp -------------------------------------------------------------------------------- /libOPRF/Hashing/CuckooHasher1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/CuckooHasher1.h -------------------------------------------------------------------------------- /libOPRF/Hashing/SimpleHasher1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/SimpleHasher1.cpp -------------------------------------------------------------------------------- /libOPRF/Hashing/SimpleHasher1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/SimpleHasher1.h -------------------------------------------------------------------------------- /libOPRF/Hashing/polyFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/polyFFT.cpp -------------------------------------------------------------------------------- /libOPRF/Hashing/polyFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/Hashing/polyFFT.h -------------------------------------------------------------------------------- /libOPRF/OPPRF/OPPRFReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/OPPRF/OPPRFReceiver.cpp -------------------------------------------------------------------------------- /libOPRF/OPPRF/OPPRFReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/OPPRF/OPPRFReceiver.h -------------------------------------------------------------------------------- /libOPRF/OPPRF/OPPRFSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/OPPRF/OPPRFSender.cpp -------------------------------------------------------------------------------- /libOPRF/OPPRF/OPPRFSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/OPPRF/OPPRFSender.h -------------------------------------------------------------------------------- /libOPRF/OPPRF/binSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/OPPRF/binSet.cpp -------------------------------------------------------------------------------- /libOPRF/OPPRF/binSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/OPPRF/binSet.h -------------------------------------------------------------------------------- /libOPRF/libOPRF.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/libOPRF.vcxproj -------------------------------------------------------------------------------- /libOPRF/libOPRF.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOPRF/libOPRF.vcxproj.filters -------------------------------------------------------------------------------- /libOTe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/.gitignore -------------------------------------------------------------------------------- /libOTe/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/.gitmodules -------------------------------------------------------------------------------- /libOTe/Base/naor-pinkas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Base/naor-pinkas.cpp -------------------------------------------------------------------------------- /libOTe/Base/naor-pinkas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Base/naor-pinkas.h -------------------------------------------------------------------------------- /libOTe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/CMakeLists.txt -------------------------------------------------------------------------------- /libOTe/NChooseK/AknOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseK/AknOtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/NChooseK/AknOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseK/AknOtReceiver.h -------------------------------------------------------------------------------- /libOTe/NChooseK/AknOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseK/AknOtSender.cpp -------------------------------------------------------------------------------- /libOTe/NChooseK/AknOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseK/AknOtSender.h -------------------------------------------------------------------------------- /libOTe/NChooseOne/KkrtDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/KkrtDefines.h -------------------------------------------------------------------------------- /libOTe/NChooseOne/KkrtNcoOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/KkrtNcoOtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/NChooseOne/KkrtNcoOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/KkrtNcoOtReceiver.h -------------------------------------------------------------------------------- /libOTe/NChooseOne/KkrtNcoOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/KkrtNcoOtSender.cpp -------------------------------------------------------------------------------- /libOTe/NChooseOne/KkrtNcoOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/KkrtNcoOtSender.h -------------------------------------------------------------------------------- /libOTe/NChooseOne/NcoOtExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/NcoOtExt.h -------------------------------------------------------------------------------- /libOTe/NChooseOne/Oos/OosDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/Oos/OosDefines.h -------------------------------------------------------------------------------- /libOTe/NChooseOne/Oos/OosNcoOtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/Oos/OosNcoOtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/NChooseOne/Oos/OosNcoOtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/Oos/OosNcoOtReceiver.h -------------------------------------------------------------------------------- /libOTe/NChooseOne/Oos/OosNcoOtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/Oos/OosNcoOtSender.cpp -------------------------------------------------------------------------------- /libOTe/NChooseOne/Oos/OosNcoOtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/NChooseOne/Oos/OosNcoOtSender.h -------------------------------------------------------------------------------- /libOTe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/README.md -------------------------------------------------------------------------------- /libOTe/Tools/LinearCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Tools/LinearCode.cpp -------------------------------------------------------------------------------- /libOTe/Tools/LinearCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Tools/LinearCode.h -------------------------------------------------------------------------------- /libOTe/Tools/Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Tools/Tools.cpp -------------------------------------------------------------------------------- /libOTe/Tools/Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Tools/Tools.h -------------------------------------------------------------------------------- /libOTe/Tools/bch511.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Tools/bch511.bin -------------------------------------------------------------------------------- /libOTe/Tools/bch511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/Tools/bch511.txt -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/IknpOtExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/IknpOtExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/IknpOtExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/IknpOtExtReceiver.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/IknpOtExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/IknpOtExtSender.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/IknpOtExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/IknpOtExtSender.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosDotExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosDotExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosDotExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosDotExtReceiver.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosDotExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosDotExtSender.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosDotExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosDotExtSender.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosOtExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosOtExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosOtExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosOtExtReceiver.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosOtExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosOtExtSender.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/KosOtExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/KosOtExtSender.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/LzKosOtExtReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/LzKosOtExtReceiver.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/LzKosOtExtReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/LzKosOtExtReceiver.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/LzKosOtExtSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/LzKosOtExtSender.cpp -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/LzKosOtExtSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/LzKosOtExtSender.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/OTExtInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/OTExtInterface.h -------------------------------------------------------------------------------- /libOTe/TwoChooseOne/TcoOtDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/TwoChooseOne/TcoOtDefines.h -------------------------------------------------------------------------------- /libOTe/buildAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/buildAll.ps1 -------------------------------------------------------------------------------- /libOTe/libOTe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/libOTe.vcxproj.filters -------------------------------------------------------------------------------- /libOTe/libOTe.vcxproj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libOTe/libOTe.vcxproj.vcxproj -------------------------------------------------------------------------------- /libPSI_Tests/AES_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/AES_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/AES_Tests.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | void AES_EncDec_Test(); 5 | -------------------------------------------------------------------------------- /libPSI_Tests/AknBfPsi_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/AknBfPsi_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/AknBfPsi_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/AknBfPsi_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/AknOt_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/AknOt_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/AknOt_Tests.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | void AknOt_sendRecv1000_Test(); -------------------------------------------------------------------------------- /libPSI_Tests/BaseOT_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/BaseOT_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/BaseOT_Tests.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | void NaorPinkasOt_Test_Impl(); 3 | 4 | -------------------------------------------------------------------------------- /libPSI_Tests/BinOtPsi_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/BinOtPsi_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/BinOtPsi_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/BinOtPsi_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/BtChannel_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/BtChannel_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/BtChannel_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/BtChannel_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/CMakeLists.txt -------------------------------------------------------------------------------- /libPSI_Tests/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/Common.cpp -------------------------------------------------------------------------------- /libPSI_Tests/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/Common.h -------------------------------------------------------------------------------- /libPSI_Tests/DcwBfPsi_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/DcwBfPsi_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/DcwBfPsi_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/DcwBfPsi_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/DktMPsi_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/DktMPsi_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/DktMPsi_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/DktMPsi_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/EQ_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/EQ_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/EQ_Tests.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void EQ_EmptrySet_Test_Impl(); 4 | -------------------------------------------------------------------------------- /libPSI_Tests/Ecc_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/Ecc_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/Ecc_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/Ecc_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/NcoOT_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/NcoOT_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/NcoOT_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/NcoOT_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/OPPRF_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OPPRF_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/OPPRF_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OPPRF_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/OTOracleReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OTOracleReceiver.cpp -------------------------------------------------------------------------------- /libPSI_Tests/OTOracleReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OTOracleReceiver.h -------------------------------------------------------------------------------- /libPSI_Tests/OTOracleSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OTOracleSender.cpp -------------------------------------------------------------------------------- /libPSI_Tests/OTOracleSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OTOracleSender.h -------------------------------------------------------------------------------- /libPSI_Tests/OT_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OT_Tests.cpp -------------------------------------------------------------------------------- /libPSI_Tests/OT_Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/OT_Tests.h -------------------------------------------------------------------------------- /libPSI_Tests/libPSI_Tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/libPSI_Tests.vcxproj -------------------------------------------------------------------------------- /libPSI_Tests/libPSI_Tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/libPSI_Tests.vcxproj.filters -------------------------------------------------------------------------------- /libPSI_Tests/nPSI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/nPSI.cpp -------------------------------------------------------------------------------- /libPSI_Tests/nPSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/nPSI.h -------------------------------------------------------------------------------- /libPSI_Tests/nPSIv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_Tests/nPSIv2.cpp -------------------------------------------------------------------------------- /libPSI_Tests/nPSIv2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | -------------------------------------------------------------------------------- /libPSI_TestsVS/AES_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/AES_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/AknBfPsi_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/AknBfPsi_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/AknOT_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/AknOT_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/BaseOT_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/BaseOT_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/BinOtPsi_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/BinOtPsi_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/BtChannel_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/BtChannel_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/DcwBfPsi_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/DcwBfPsi_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/DtkMPsi_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/DtkMPsi_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/Ecc_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/Ecc_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/OPPRF_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/OPPRF_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/OT_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/OT_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/ShamirSSScheme_TestsVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/ShamirSSScheme_TestsVS.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/libPSI_TestsVS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/libPSI_TestsVS.vcxproj -------------------------------------------------------------------------------- /libPSI_TestsVS/libPSI_TestsVS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/libPSI_TestsVS.vcxproj.filters -------------------------------------------------------------------------------- /libPSI_TestsVS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/stdafx.cpp -------------------------------------------------------------------------------- /libPSI_TestsVS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/stdafx.h -------------------------------------------------------------------------------- /libPSI_TestsVS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPSI_TestsVS/targetver.h -------------------------------------------------------------------------------- /libPaXoS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/CMakeLists.txt -------------------------------------------------------------------------------- /libPaXoS/Hasher.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by moriya on 7/31/19. 3 | // 4 | 5 | #include "Hasher.h" 6 | -------------------------------------------------------------------------------- /libPaXoS/Hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/Hasher.h -------------------------------------------------------------------------------- /libPaXoS/ObliviousDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/ObliviousDictionary.cpp -------------------------------------------------------------------------------- /libPaXoS/ObliviousDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/ObliviousDictionary.h -------------------------------------------------------------------------------- /libPaXoS/Poly/polyFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/Poly/polyFFT.cpp -------------------------------------------------------------------------------- /libPaXoS/Poly/polyFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/Poly/polyFFT.h -------------------------------------------------------------------------------- /libPaXoS/Poly/polyFFT2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/Poly/polyFFT2.cpp -------------------------------------------------------------------------------- /libPaXoS/Poly/polyFFT2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/Poly/polyFFT2.h -------------------------------------------------------------------------------- /libPaXoS/Poly/polyNTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/Poly/polyNTL.cpp -------------------------------------------------------------------------------- /libPaXoS/Poly/polyNTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/Poly/polyNTL.h -------------------------------------------------------------------------------- /libPaXoS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/README.md -------------------------------------------------------------------------------- /libPaXoS/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/cmake_install.cmake -------------------------------------------------------------------------------- /libPaXoS/gf2e_mat_solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/gf2e_mat_solve.cpp -------------------------------------------------------------------------------- /libPaXoS/gf2e_mat_solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/gf2e_mat_solve.h -------------------------------------------------------------------------------- /libPaXoS/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/install.sh -------------------------------------------------------------------------------- /libPaXoS/xxHash/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/.gitattributes -------------------------------------------------------------------------------- /libPaXoS/xxHash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/.gitignore -------------------------------------------------------------------------------- /libPaXoS/xxHash/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/.travis.yml -------------------------------------------------------------------------------- /libPaXoS/xxHash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/LICENSE -------------------------------------------------------------------------------- /libPaXoS/xxHash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/Makefile -------------------------------------------------------------------------------- /libPaXoS/xxHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/README.md -------------------------------------------------------------------------------- /libPaXoS/xxHash/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/appveyor.yml -------------------------------------------------------------------------------- /libPaXoS/xxHash/cmake_unofficial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/cmake_unofficial/.gitignore -------------------------------------------------------------------------------- /libPaXoS/xxHash/cmake_unofficial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/cmake_unofficial/CMakeLists.txt -------------------------------------------------------------------------------- /libPaXoS/xxHash/cmake_unofficial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/cmake_unofficial/README.md -------------------------------------------------------------------------------- /libPaXoS/xxHash/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/doc/README.md -------------------------------------------------------------------------------- /libPaXoS/xxHash/doc/xxhash_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/doc/xxhash_spec.md -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/.gitignore -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/Makefile -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/benchHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/benchHash.c -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/benchHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/benchHash.h -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/benchfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/benchfn.c -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/benchfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/benchfn.h -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/bhDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/bhDisplay.c -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/bhDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/bhDisplay.h -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/hashes.h -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/main.c -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/timefn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/timefn.c -------------------------------------------------------------------------------- /libPaXoS/xxHash/tests/bench/timefn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/tests/bench/timefn.h -------------------------------------------------------------------------------- /libPaXoS/xxHash/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/xxh3.h -------------------------------------------------------------------------------- /libPaXoS/xxHash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/xxhash.c -------------------------------------------------------------------------------- /libPaXoS/xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/xxhash.h -------------------------------------------------------------------------------- /libPaXoS/xxHash/xxhsum.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/xxhsum.1 -------------------------------------------------------------------------------- /libPaXoS/xxHash/xxhsum.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/xxhsum.1.md -------------------------------------------------------------------------------- /libPaXoS/xxHash/xxhsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/libPaXoS/xxHash/xxhsum.c -------------------------------------------------------------------------------- /nPSI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/nPSI.sln -------------------------------------------------------------------------------- /script/psi ccs17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/script/psi ccs17.txt -------------------------------------------------------------------------------- /script/script_2psi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/script/script_2psi.txt -------------------------------------------------------------------------------- /script/script_3psi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/script/script_3psi.txt -------------------------------------------------------------------------------- /script/script_augpsi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/script/script_augpsi.txt -------------------------------------------------------------------------------- /script/script_psiO1t=1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/script/script_psiO1t=1.txt -------------------------------------------------------------------------------- /script/script_tpsi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/script/script_tpsi.txt -------------------------------------------------------------------------------- /script/setup-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/script/setup-network -------------------------------------------------------------------------------- /script/testoutput.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/all_linux.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/all_linux.get -------------------------------------------------------------------------------- /thirdparty/all_win.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/all_win.ps1 -------------------------------------------------------------------------------- /thirdparty/linux/boost.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/boost.get -------------------------------------------------------------------------------- /thirdparty/linux/miracl.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl.get -------------------------------------------------------------------------------- /thirdparty/linux/miracl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/.gitignore -------------------------------------------------------------------------------- /thirdparty/linux/miracl/Miracl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/Miracl.sln -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/big.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/brick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/brick.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/crt.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/ebrick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/ebrick.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/ebrick2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/ebrick2.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/ec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/ec2.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/ecn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/ecn.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/ecnzzn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/ecnzzn.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/flash.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/gf2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/gf2m.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/miracl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/miracl.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/mirdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/mirdef.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/include/zzn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/include/zzn.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/miracl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/miracl.vcxproj -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/linux64 -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mr87f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mr87f.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mr87v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mr87v.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mraes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mraes.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mralloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mralloc.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrarth0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrarth0.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrarth1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrarth1.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrarth2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrarth2.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrarth3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrarth3.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrbits.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrbrick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrbrick.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrbuild.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrcore.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrcrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrcrt.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrcurve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrcurve.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrdouble.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrebrick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrebrick.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrec2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrec2m.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrecn2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrecn2.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrfast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrfast.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrflash.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrflsh1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrflsh1.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrflsh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrflsh2.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrflsh3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrflsh3.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrflsh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrflsh4.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrfpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrfpe.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrfrnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrfrnd.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrgcd.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrgcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrgcm.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrgf2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrgf2m.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrio1.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrio2.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrjack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrjack.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrlucas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrlucas.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrmonty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrmonty.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrmuldv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrmuldv.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrpi.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrpower.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrprime.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrrand.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrround.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrscrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrscrt.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrsha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrsha3.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrshs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrshs.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrshs256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrshs256.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrshs512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrshs512.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrsmall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrsmall.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrsroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrsroot.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrstrong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrstrong.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrxgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrxgcd.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrzzn2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrzzn2.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrzzn2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrzzn2b.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrzzn3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrzzn3.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/mrzzn4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/mrzzn4.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/octet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/octet.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl/source/octet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl/source/octet.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/big.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/big.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/big.o -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/c.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/c.mcs -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/crt.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/crt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/crt.o -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/ec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/ec2.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/ec2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/ec2.o -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/ecn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/ecn.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/ecn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/ecn.o -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/mirdef.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/rsa.c -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/zzn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/zzn.h -------------------------------------------------------------------------------- /thirdparty/linux/miracl/miracl_osmt/source/zzn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/miracl/miracl_osmt/source/zzn.o -------------------------------------------------------------------------------- /thirdparty/linux/ntl.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl.get -------------------------------------------------------------------------------- /thirdparty/linux/ntl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/README -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/BasicThreadPool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/BasicThreadPool.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2E.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2E.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2E.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2E.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2EX.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2EX.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2EX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2EX.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2EXFactoring.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2EXFactoring.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2EXFactoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2EXFactoring.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2X.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2X.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2X.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2XFactoring.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2XFactoring.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2XFactoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2XFactoring.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2XVec.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2XVec.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/GF2XVec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/GF2XVec.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/HNF.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/HNF.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/HNF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/HNF.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/LLL.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/LLL.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/LLL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/LLL.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/Lazy.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/Lazy.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/Lazy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/Lazy.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/LazyTable.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/LazyTable.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/LazyTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/LazyTable.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/RR.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/RR.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/RR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/RR.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/SmartPtr.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/SmartPtr.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/SmartPtr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/SmartPtr.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZVec.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZVec.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZVec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZVec.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZX.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZX.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZX.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZXFactoring.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZXFactoring.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZXFactoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZXFactoring.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pE.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pE.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pE.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pEX.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pEX.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pEX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pEX.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pEXFactoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pEXFactoring.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pX.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pX.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pX.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pXFactoring.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pXFactoring.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/ZZ_pXFactoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/ZZ_pXFactoring.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/arrow1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/arrow1.gif -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/arrow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/arrow2.gif -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/arrow3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/arrow3.gif -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/config.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/conversions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/conversions.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/copying.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/flags.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pE.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pE.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pE.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pEX.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pEX.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pEX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pEX.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pEXFactoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pEXFactoring.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pX.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pX.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pX.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/lzz_pXFactoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/lzz_pXFactoring.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_GF2.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_GF2.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_GF2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_GF2.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_GF2E.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_GF2E.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_GF2E.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_GF2E.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_RR.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_RR.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_RR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_RR.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_ZZ.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_ZZ.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_ZZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_ZZ.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_ZZ_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_ZZ_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_ZZ_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_ZZ_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_ZZ_pE.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_ZZ_pE.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_ZZ_pE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_ZZ_pE.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_lzz_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_lzz_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_lzz_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_lzz_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_lzz_pE.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_lzz_pE.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_lzz_pE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_lzz_pE.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_poly_ZZ.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_poly_ZZ.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_poly_ZZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_poly_ZZ.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_poly_ZZ_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_poly_ZZ_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_poly_ZZ_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_poly_ZZ_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_poly_lzz_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_poly_lzz_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/mat_poly_lzz_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/mat_poly_lzz_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/matrix.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/matrix.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/matrix.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/names.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/pair.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/pair.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/pair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/pair.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/quad_float.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/quad_float.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/quad_float.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/quad_float.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/sedscript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/sedscript.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tools.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tools.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tools.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ack.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-changes.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ex1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ex1.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ex2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ex2.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ex3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ex3.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ex4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ex4.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ex5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ex5.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ex6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ex6.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-ex7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-ex7.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-examples.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-gf2x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-gf2x.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-gmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-gmp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-impl.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-intro.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-modules.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-roadmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-roadmap.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-struct.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-time.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-tips.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-unix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-unix.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour-win.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour-win.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/tour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/tour.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_GF2.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_GF2.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_GF2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_GF2.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_GF2E.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_GF2E.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_GF2E.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_GF2E.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_RR.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_RR.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_RR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_RR.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_ZZ.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_ZZ.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_ZZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_ZZ.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_ZZ_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_ZZ_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_ZZ_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_ZZ_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_ZZ_pE.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_ZZ_pE.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_ZZ_pE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_ZZ_pE.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_lzz_p.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_lzz_p.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_lzz_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_lzz_p.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_lzz_pE.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_lzz_pE.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vec_lzz_pE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vec_lzz_pE.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vector.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vector.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/vector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/vector.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/version.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/version.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/version.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/xdouble.cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/xdouble.cpp.html -------------------------------------------------------------------------------- /thirdparty/linux/ntl/doc/xdouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/doc/xdouble.txt -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/FFT.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/FacVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/FacVec.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/GF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/GF2.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/GF2E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/GF2E.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/GF2EX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/GF2EX.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/GF2X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/GF2X.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/GF2XFactoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/GF2XFactoring.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/GF2XVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/GF2XVec.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/HAVE_AVX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/HAVE_AVX.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/HAVE_FMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/HAVE_FMA.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/HAVE_LL_TYPE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/HAVE_LL_TYPE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/HNF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/HNF.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/LLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/LLL.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/Lazy.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/LazyTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/LazyTable.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/RR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/RR.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/SPMM_ASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/SPMM_ASM.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/SmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/SmartPtr.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/WordVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/WordVector.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZ.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZVec.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZX.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZXFactoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZXFactoring.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZ_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZ_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZ_pE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZ_pE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZ_pEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZ_pEX.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ZZ_pX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ZZ_pX.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/c_lip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/c_lip.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/config.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/config_log.h: -------------------------------------------------------------------------------- 1 | // generated by ./configure 2 | // CXXAUTOFLAGS=" -march=native" 3 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/ctools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/ctools.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/def_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/def_config.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/fileio.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/g_lip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/g_lip.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/gmp_aux.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/lip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/lip.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/lzz_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/lzz_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/lzz_pE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/lzz_pE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/lzz_pEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/lzz_pEX.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/lzz_pX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/lzz_pX.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mach_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mach_desc.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_GF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_GF2.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_GF2E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_GF2E.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_RR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_RR.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_ZZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_ZZ.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_ZZ_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_ZZ_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_ZZ_pE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_ZZ_pE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_lzz_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_lzz_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_lzz_pE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_lzz_pE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_poly_ZZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_poly_ZZ.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/mat_poly_ZZ_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/mat_poly_ZZ_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/matrix.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/new.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/pair.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/pair_ZZX_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/pair_ZZX_long.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/quad_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/quad_float.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/sp_arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/sp_arith.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/thread.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/tools.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_GF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_GF2.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_GF2E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_GF2E.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_GF2XVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_GF2XVec.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_RR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_RR.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_ZZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_ZZ.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_ZZVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_ZZVec.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_ZZ_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_ZZ_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_ZZ_pE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_ZZ_pE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_double.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_long.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_lzz_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_lzz_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_lzz_pE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_lzz_pE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_ulong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_ulong.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_GF2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_GF2.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_GF2E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_GF2E.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_RR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_RR.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_ZZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_ZZ.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_ZZ_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_ZZ_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_ZZ_pE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_ZZ_pE.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_long.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_lzz_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_lzz_p.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_vec_ulong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_vec_ulong.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vec_xdouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vec_xdouble.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/vector.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/version.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/wizard_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/wizard_log.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/include/NTL/xdouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/include/NTL/xdouble.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/BasicThreadPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/BasicThreadPool.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/BerlekampTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/BerlekampTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/BerlekampTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/BerlekampTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/BerlekampTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/BerlekampTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/BitMatTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/BitMatTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CanZassTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CanZassTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CanZassTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CanZassTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CanZassTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CanZassTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CharPolyTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CharPolyTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CharPolyTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CharPolyTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CharPolyTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CharPolyTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckAVX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CheckAVX.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckCLZL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CheckCLZL.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckCLZLAux.c: -------------------------------------------------------------------------------- 1 | 2 | void touch(unsigned long& x) { } 3 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckCompile.c: -------------------------------------------------------------------------------- 1 | 2 | int main() { return 0; } 3 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckFMA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CheckFMA.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckFeature.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CheckFeature.log -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckFlag.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CheckFlag.log -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CheckLL.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CheckLLAux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CheckLLAux.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/CopyFeatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/CopyFeatures -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/DIRNAME: -------------------------------------------------------------------------------- 1 | ntl-9.11.0 2 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/DispSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/DispSettings.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/DoConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/DoConfig -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ExceptionTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ExceptionTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/FFT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/FFT.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/FacVec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/FacVec.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2E.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2E.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2EX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2EX.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2EXFactoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2EXFactoring.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2EXTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2EXTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2X.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2X.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2X1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2X1.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2XFactoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2XFactoring.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2XTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2XTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2XTimeTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2XTimeTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GF2XVec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GF2XVec.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/G_LLL_FP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/G_LLL_FP.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/G_LLL_QP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/G_LLL_QP.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/G_LLL_RR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/G_LLL_RR.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/G_LLL_XD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/G_LLL_XD.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetPID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetPID.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetPID1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetPID1.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetPID2.c: -------------------------------------------------------------------------------- 1 | 2 | unsigned long _ntl_GetPID() 3 | { 4 | return 0; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetTime.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetTime0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetTime0.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetTime1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetTime1.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetTime2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetTime2.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetTime3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetTime3.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetTime4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/GetTime4.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/GetTime5.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 4 | double _ntl_GetTime() 5 | { 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/HNF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/HNF.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/InitSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/InitSettings.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLL.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLLTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLLTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLLTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLLTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLLTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLLTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLL_FP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLL_FP.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLL_QP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLL_QP.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLL_RR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLL_RR.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/LLL_XD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/LLL_XD.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MakeCheckFeature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MakeCheckFeature -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MakeDesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MakeDesc.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MakeDescAux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MakeDescAux.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MakeGetPID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MakeGetPID -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MakeGetTime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MakeGetTime -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MatrixTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MatrixTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MatrixTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MatrixTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MatrixTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MatrixTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MoreFacTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MoreFacTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MoreFacTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MoreFacTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/MulTimeTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/MulTimeTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/NOTES -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/Poly1TimeTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/Poly1TimeTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/Poly2TimeTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/Poly2TimeTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/Poly3TimeTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/Poly3TimeTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/QuadTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/QuadTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/QuadTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/QuadTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/QuadTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/QuadTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/QuickTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/QuickTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/RR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/RR.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/RRTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/RRTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/RRTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/RRTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/RRTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/RRTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/RemoveProg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/RemoveProg -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ResetFeatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ResetFeatures -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/TestGetPID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/TestGetPID.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/TestGetTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/TestGetTime.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/TestScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/TestScript -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ThreadTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ThreadTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/Timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/Timing.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/VERSION_INFO: -------------------------------------------------------------------------------- 1 | 29:0:0 2 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/WINDIR: -------------------------------------------------------------------------------- 1 | WinNTL-9_11_0 2 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/Wizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/Wizard -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/WizardAux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/WizardAux -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/WordVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/WordVector.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZVec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZVec.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZX.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZX1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZX1.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZXCharPoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZXCharPoly.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZXFacTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZXFacTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZXFacTestIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZXFacTestIn -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZXFacTestOut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZXFacTestOut -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZXFactoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZXFactoring.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pE.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pEX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pEX.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pEXFactoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pEXFactoring.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pEXTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pEXTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pX.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pX1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pX1.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pXCharPoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pXCharPoly.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ZZ_pXFactoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ZZ_pXFactoring.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/all: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/c_lip_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/c_lip_impl.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/cfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/cfile -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/cfileout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/cfileout -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/configure -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ctools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ctools.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/def_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/def_makefile -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/dosify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/dosify -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/fileio.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/g_lip_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/g_lip_impl.h -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/gen_gmp_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/gen_gmp_aux.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/hfileout: -------------------------------------------------------------------------------- 1 | // generated by ./configure 2 | // CXXAUTOFLAGS=" -march=native" 3 | -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lip.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pE.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pEX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pEX.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pEXFactoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pEXFactoring.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pEXTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pEXTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pX.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pX1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pX1.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pXCharPoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pXCharPoly.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/lzz_pXFactoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/lzz_pXFactoring.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mach_desc.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mach_desc.win -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/makefile -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_GF2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_GF2.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_GF2E.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_GF2E.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_RR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_RR.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_ZZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_ZZ.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_ZZ_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_ZZ_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_ZZ_pE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_ZZ_pE.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_lzz_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_lzz_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_lzz_pE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_lzz_pE.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_lzz_pTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_lzz_pTest.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_poly_ZZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_poly_ZZ.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_poly_ZZ_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_poly_ZZ_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mat_poly_lzz_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mat_poly_lzz_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mfile -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/mfileout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/mfileout -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/newnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/newnames.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/ppscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/ppscript -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/quad_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/quad_float.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/subset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/subset.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/thread.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/tools.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/unixify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/unixify -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_GF2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_GF2.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_GF2E.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_GF2E.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_RR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_RR.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_ZZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_ZZ.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_ZZ_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_ZZ_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_ZZ_pE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_ZZ_pE.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_lzz_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_lzz_p.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/vec_lzz_pE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/vec_lzz_pE.c -------------------------------------------------------------------------------- /thirdparty/linux/ntl/src/xdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/linux/ntl/src/xdouble.c -------------------------------------------------------------------------------- /thirdparty/win/NTL_patch/ntl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/NTL_patch/ntl.sln -------------------------------------------------------------------------------- /thirdparty/win/NTL_patch/ntl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/NTL_patch/ntl.vcxproj -------------------------------------------------------------------------------- /thirdparty/win/NTL_patch/ntl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/NTL_patch/ntl.vcxproj.filters -------------------------------------------------------------------------------- /thirdparty/win/cryptopp_patch/cryptest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/cryptopp_patch/cryptest.sln -------------------------------------------------------------------------------- /thirdparty/win/cryptopp_patch/cryptlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/cryptopp_patch/cryptlib.vcxproj -------------------------------------------------------------------------------- /thirdparty/win/getBoost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/getBoost.ps1 -------------------------------------------------------------------------------- /thirdparty/win/getCryptoPP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/getCryptoPP.ps1 -------------------------------------------------------------------------------- /thirdparty/win/getMiracl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/getMiracl.ps1 -------------------------------------------------------------------------------- /thirdparty/win/getMpir.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/getMpir.ps1 -------------------------------------------------------------------------------- /thirdparty/win/getNTL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/getNTL.ps1 -------------------------------------------------------------------------------- /thirdparty/win/miracl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/.gitignore -------------------------------------------------------------------------------- /thirdparty/win/miracl/Miracl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/Miracl.sln -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/big.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/brick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/brick.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/crt.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/ebrick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/ebrick.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/ebrick2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/ebrick2.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/ec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/ec2.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/ecn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/ecn.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/ecnzzn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/ecnzzn.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/flash.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/floating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/floating.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/gf2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/gf2m.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/miracl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/miracl.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/mirdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/mirdef.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/include/zzn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/include/zzn.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/miracl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/miracl.vcxproj -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/linux64 -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mr87f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mr87f.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mr87v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mr87v.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mraes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mraes.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mralloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mralloc.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrarth0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrarth0.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrarth1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrarth1.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrarth2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrarth2.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrarth3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrarth3.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrbits.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrbrick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrbrick.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrbuild.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrcore.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrcrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrcrt.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrcurve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrcurve.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrdouble.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrebrick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrebrick.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrec2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrec2m.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrecn2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrecn2.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrfast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrfast.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrflash.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrflsh1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrflsh1.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrflsh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrflsh2.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrflsh3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrflsh3.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrflsh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrflsh4.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrfpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrfpe.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrfrnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrfrnd.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrgcd.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrgcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrgcm.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrgf2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrgf2m.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrio1.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrio2.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrjack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrjack.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrlucas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrlucas.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrmonty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrmonty.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrmuldv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrmuldv.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrpi.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrpower.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrprime.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrrand.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrround.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrscrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrscrt.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrsha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrsha3.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrshs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrshs.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrshs256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrshs256.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrshs512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrshs512.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrsmall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrsmall.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrsroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrsroot.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrstrong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrstrong.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrxgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrxgcd.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrzzn2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrzzn2.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrzzn2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrzzn2b.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrzzn3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrzzn3.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/mrzzn4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/mrzzn4.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/octet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/octet.c -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl/source/octet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl/source/octet.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl_osmt/include/big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl_osmt/include/big.h -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl_osmt/source/c.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl_osmt/source/c.mcs -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl_osmt/source/mirdef.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/win/miracl/miracl_osmt/source/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/miracl/miracl_osmt/source/rsa.c -------------------------------------------------------------------------------- /thirdparty/win/mpirxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asu-crypto/mPSI/HEAD/thirdparty/win/mpirxx.h --------------------------------------------------------------------------------