├── .clang-format ├── .flake8 ├── .github └── workflows │ ├── build-binds.yml │ ├── build-test.yaml │ ├── build-wheels.yml │ ├── js-bindings.yml │ ├── relic-nightly.yml │ └── stale-issue.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── MANIFEST.in ├── Makefile.am ├── Makefile.bench.include ├── Makefile.bls.include ├── Makefile.mimalloc.include ├── Makefile.relic.include ├── Makefile.test.include ├── README.md ├── apple.rust.deps.sh ├── autogen.sh ├── cmake_modules ├── BrewHelper.cmake ├── Findgmp.cmake └── Findsodium.cmake ├── configure.ac ├── depends ├── catch2 │ ├── CMakeLists.txt │ └── include │ │ └── catch2 │ │ └── catch.hpp ├── mimalloc │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── azure-pipelines.yml │ ├── bin │ │ ├── mimalloc-redirect.dll │ │ ├── mimalloc-redirect.lib │ │ ├── mimalloc-redirect32.dll │ │ ├── mimalloc-redirect32.lib │ │ ├── minject.exe │ │ └── minject32.exe │ ├── cmake │ │ ├── JoinPaths.cmake │ │ ├── mimalloc-config-version.cmake │ │ └── mimalloc-config.cmake │ ├── doc │ │ ├── bench-2020 │ │ │ ├── bench-c5-18xlarge-2020-01-20-a.svg │ │ │ ├── bench-c5-18xlarge-2020-01-20-b.svg │ │ │ ├── bench-c5-18xlarge-2020-01-20-rss-a.svg │ │ │ ├── bench-c5-18xlarge-2020-01-20-rss-b.svg │ │ │ ├── bench-r5a-1.svg │ │ │ ├── bench-r5a-12xlarge-2020-01-16-a.svg │ │ │ ├── bench-r5a-12xlarge-2020-01-16-b.svg │ │ │ ├── bench-r5a-2.svg │ │ │ ├── bench-r5a-rss-1.svg │ │ │ ├── bench-r5a-rss-2.svg │ │ │ ├── bench-spec-rss.svg │ │ │ ├── bench-spec.svg │ │ │ ├── bench-z4-1.svg │ │ │ ├── bench-z4-2.svg │ │ │ ├── bench-z4-rss-1.svg │ │ │ └── bench-z4-rss-2.svg │ │ ├── bench-2021 │ │ │ ├── bench-amd5950x-2021-01-30-a.svg │ │ │ ├── bench-amd5950x-2021-01-30-b.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-a.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-b.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-rss-a.svg │ │ │ ├── bench-c5-18xlarge-2021-01-30-rss-b.svg │ │ │ └── bench-macmini-2021-01-30.svg │ │ ├── doxyfile │ │ ├── ds-logo.jpg │ │ ├── ds-logo.png │ │ ├── mimalloc-doc.h │ │ ├── mimalloc-doxygen.css │ │ ├── mimalloc-logo-100.png │ │ ├── mimalloc-logo.png │ │ ├── mimalloc-logo.svg │ │ ├── spades-logo.png │ │ └── unreal-logo.svg │ ├── docs │ │ ├── annotated.html │ │ ├── annotated_dup.js │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── bench.html │ │ ├── build.html │ │ ├── classes.html │ │ ├── closed.png │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── environment.html │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── group__aligned.html │ │ ├── group__aligned.js │ │ ├── group__analysis.html │ │ ├── group__analysis.js │ │ ├── group__analysis_structmi__heap__area__t.js │ │ ├── group__cpp.html │ │ ├── group__cpp.js │ │ ├── group__extended.html │ │ ├── group__extended.js │ │ ├── group__heap.html │ │ ├── group__heap.js │ │ ├── group__malloc.html │ │ ├── group__malloc.js │ │ ├── group__options.html │ │ ├── group__options.js │ │ ├── group__posix.html │ │ ├── group__posix.js │ │ ├── group__typed.html │ │ ├── group__typed.js │ │ ├── group__zeroinit.html │ │ ├── group__zeroinit.js │ │ ├── index.html │ │ ├── jquery.js │ │ ├── mimalloc-doc_8h_source.html │ │ ├── mimalloc-doxygen.css │ │ ├── mimalloc-logo.svg │ │ ├── modules.html │ │ ├── modules.js │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreedata.js │ │ ├── navtreeindex0.js │ │ ├── open.png │ │ ├── overrides.html │ │ ├── pages.html │ │ ├── resize.js │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── close.png │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── enumvalues_1.html │ │ │ ├── enumvalues_1.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── groups_1.html │ │ │ ├── groups_1.js │ │ │ ├── groups_2.html │ │ │ ├── groups_2.js │ │ │ ├── groups_3.html │ │ │ ├── groups_3.js │ │ │ ├── groups_4.html │ │ │ ├── groups_4.js │ │ │ ├── groups_5.html │ │ │ ├── groups_5.js │ │ │ ├── groups_6.html │ │ │ ├── groups_6.js │ │ │ ├── groups_7.html │ │ │ ├── groups_7.js │ │ │ ├── groups_8.html │ │ │ ├── groups_8.js │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── typedefs_2.html │ │ │ ├── typedefs_2.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ └── variables_3.js │ │ ├── splitbar.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ └── using.html │ ├── ide │ │ ├── vs2017 │ │ │ ├── mimalloc-override-test.vcxproj │ │ │ ├── mimalloc-override-test.vcxproj.filters │ │ │ ├── mimalloc-override.vcxproj │ │ │ ├── mimalloc-override.vcxproj.filters │ │ │ ├── mimalloc-test-stress.vcxproj │ │ │ ├── mimalloc-test-stress.vcxproj.filters │ │ │ ├── mimalloc-test.vcxproj │ │ │ ├── mimalloc-test.vcxproj.filters │ │ │ ├── mimalloc.sln │ │ │ ├── mimalloc.vcxproj │ │ │ └── mimalloc.vcxproj.filters │ │ ├── vs2019 │ │ │ ├── mimalloc-override-test.vcxproj │ │ │ ├── mimalloc-override.vcxproj │ │ │ ├── mimalloc-override.vcxproj.filters │ │ │ ├── mimalloc-test-api.vcxproj │ │ │ ├── mimalloc-test-stress.vcxproj │ │ │ ├── mimalloc-test.vcxproj │ │ │ ├── mimalloc.sln │ │ │ ├── mimalloc.vcxproj │ │ │ └── mimalloc.vcxproj.filters │ │ └── vs2022 │ │ │ ├── mimalloc-override-test.vcxproj │ │ │ ├── mimalloc-override.vcxproj │ │ │ ├── mimalloc-test-api.vcxproj │ │ │ ├── mimalloc-test-stress.vcxproj │ │ │ ├── mimalloc-test.vcxproj │ │ │ ├── mimalloc.sln │ │ │ └── mimalloc.vcxproj │ ├── include │ │ ├── mimalloc-atomic.h │ │ ├── mimalloc-internal.h │ │ ├── mimalloc-new-delete.h │ │ ├── mimalloc-override.h │ │ ├── mimalloc-track.h │ │ ├── mimalloc-types.h │ │ └── mimalloc.h │ ├── mimalloc.pc.in │ ├── readme.md │ ├── src │ │ ├── alloc-aligned.c │ │ ├── alloc-override-osx.c │ │ ├── alloc-override.c │ │ ├── alloc-posix.c │ │ ├── alloc.c │ │ ├── arena.c │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── heap.c │ │ ├── init.c │ │ ├── options.c │ │ ├── os.c │ │ ├── page-queue.c │ │ ├── page.c │ │ ├── random.c │ │ ├── region.c │ │ ├── segment-cache.c │ │ ├── segment.c │ │ ├── static.c │ │ └── stats.c │ └── test │ │ ├── CMakeLists.txt │ │ ├── main-override-static.c │ │ ├── main-override.c │ │ ├── main-override.cpp │ │ ├── main.c │ │ ├── readme.md │ │ ├── test-api-fill.c │ │ ├── test-api.c │ │ ├── test-stress.c │ │ ├── test-wrong.c │ │ └── testhelper.h └── relic │ ├── .editorconfig │ ├── .github │ └── workflows │ │ ├── 16bit.yml │ │ ├── 32bit.yml │ │ ├── 8bit.yml │ │ ├── bls12-381.yml │ │ ├── easy.yml │ │ ├── gmp-sec.yml │ │ └── gmp.yml │ ├── .gitignore │ ├── .indent.pro │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── LICENSE │ ├── LICENSE.Apache-2.0 │ ├── LICENSE.LGPL-2.1 │ ├── README.md │ ├── art │ ├── rlc_logo.png │ └── rlc_logo.svg │ ├── bench │ ├── CMakeLists.txt │ ├── bench_bn.c │ ├── bench_cp.c │ ├── bench_dv.c │ ├── bench_eb.c │ ├── bench_ec.c │ ├── bench_ed.c │ ├── bench_ep.c │ ├── bench_epx.c │ ├── bench_err.c │ ├── bench_fb.c │ ├── bench_fbx.c │ ├── bench_fp.c │ ├── bench_fpx.c │ ├── bench_md.c │ ├── bench_mpc.c │ ├── bench_pc.c │ ├── bench_pp.c │ └── bench_rand.c │ ├── cmake │ ├── arch.cmake │ ├── bn.cmake │ ├── cp.cmake │ ├── doxygen.cmake │ ├── eb.cmake │ ├── ec.cmake │ ├── ed.cmake │ ├── ep.cmake │ ├── err.cmake │ ├── fb.cmake │ ├── fiat.cmake │ ├── fp.cmake │ ├── fpx.cmake │ ├── gmp.cmake │ ├── ios.cmake │ ├── md.cmake │ ├── pp.cmake │ ├── rand.cmake │ ├── relic-config.cmake │ └── with.cmake │ ├── demo │ ├── cert-input │ │ ├── Makefile │ │ └── test-bench.c │ ├── ers-etrs │ │ ├── Makefile │ │ └── test-bench.c │ ├── general-paillier │ │ ├── Makefile │ │ └── test.c │ ├── link-test │ │ ├── Makefile │ │ ├── test.c │ │ ├── test1.c │ │ └── test2.c │ ├── public-stats │ │ ├── Makefile │ │ ├── csv.c │ │ ├── csv.h │ │ └── main.c │ └── tweedledum │ │ ├── Makefile │ │ └── main.c │ ├── doc │ └── relic.doxygen.in │ ├── include │ ├── low │ │ ├── relic_bn_low.h │ │ ├── relic_dv_low.h │ │ ├── relic_fb_low.h │ │ ├── relic_fp_low.h │ │ └── relic_fpx_low.h │ ├── relic.h │ ├── relic_alloc.h │ ├── relic_arch.h │ ├── relic_bc.h │ ├── relic_bench.h │ ├── relic_bn.h │ ├── relic_conf.h.in │ ├── relic_core.h │ ├── relic_cp.h │ ├── relic_dv.h │ ├── relic_eb.h │ ├── relic_ec.h │ ├── relic_ed.h │ ├── relic_ep.h │ ├── relic_epx.h │ ├── relic_err.h │ ├── relic_fb.h │ ├── relic_fbx.h │ ├── relic_fp.h │ ├── relic_fpx.h │ ├── relic_label.h │ ├── relic_md.h │ ├── relic_mpc.h │ ├── relic_multi.h │ ├── relic_pc.h │ ├── relic_pp.h │ ├── relic_rand.h │ ├── relic_test.h │ ├── relic_types.h │ └── relic_util.h │ ├── preset │ ├── ardue-pbc-bn254.sh │ ├── arm-pbc-bn254.sh │ ├── armdroid-pbc-bn254.sh │ ├── armduino-ecc-128k.sh │ ├── armega-pbc-bn254.sh │ ├── armios-pbc-bn254.sh │ ├── avr-ecc-80k-sim.sh │ ├── avr-ecc-80k.sh │ ├── avr-pbc-80.sh │ ├── curve2251-clmul-gcc.sh │ ├── curve2251-clmul-icc.sh │ ├── curve2251-ssse3-gcc.sh │ ├── curve2251-ssse3-icc.sh │ ├── fiat-pbc-bls381.sh │ ├── gmp-ecc-128.sh │ ├── gmp-ecc-tweedledum.sh │ ├── gmp-paillier-4096.sh │ ├── gmp-pbc-bls381.sh │ ├── gmp-pbc-bn254.sh │ ├── gmp-pbc-ss1536.sh │ ├── msp-ecc-128.sh │ ├── msp-ecc-128k.sh │ ├── msp-ecc-80.sh │ ├── msp-ecc-80k.sh │ ├── msp-pbc-bn158.sh │ ├── msp-pbc-bn254.sh │ ├── valgrind-debug.sh │ ├── x64-ecc-128.sh │ ├── x64-pbc-bls12-381.sh │ ├── x64-pbc-bls12-446.sh │ ├── x64-pbc-bls12-455.sh │ ├── x64-pbc-bls12-638.sh │ ├── x64-pbc-bls24-509.sh │ ├── x64-pbc-bls48-575.sh │ ├── x64-pbc-bn254.sh │ ├── x64-pbc-bn382.sh │ └── x64-pbc-bn446.sh │ ├── src │ ├── CMakeLists.txt │ ├── arch │ │ ├── lzcnt.inc │ │ ├── relic_arch_arm.c │ │ ├── relic_arch_avr.c │ │ ├── relic_arch_msp.c │ │ ├── relic_arch_none.c │ │ ├── relic_arch_x64.c │ │ └── relic_arch_x86.c │ ├── bc │ │ ├── relic_bc_aes.c │ │ ├── rijndael-alg-fst.c │ │ ├── rijndael-alg-fst.h │ │ ├── rijndael-api-fst.c │ │ └── rijndael-api-fst.h │ ├── bn │ │ ├── relic_bn_add.c │ │ ├── relic_bn_cmp.c │ │ ├── relic_bn_div.c │ │ ├── relic_bn_factor.c │ │ ├── relic_bn_gcd.c │ │ ├── relic_bn_inv.c │ │ ├── relic_bn_lcm.c │ │ ├── relic_bn_mem.c │ │ ├── relic_bn_mod.c │ │ ├── relic_bn_mul.c │ │ ├── relic_bn_mxp.c │ │ ├── relic_bn_prime.c │ │ ├── relic_bn_rec.c │ │ ├── relic_bn_shift.c │ │ ├── relic_bn_smb.c │ │ ├── relic_bn_sqr.c │ │ ├── relic_bn_srt.c │ │ └── relic_bn_util.c │ ├── cp │ │ ├── relic_cp_bbs.c │ │ ├── relic_cp_bdpe.c │ │ ├── relic_cp_bgn.c │ │ ├── relic_cp_bls.c │ │ ├── relic_cp_cls.c │ │ ├── relic_cp_cmlhs.c │ │ ├── relic_cp_ecdh.c │ │ ├── relic_cp_ecdsa.c │ │ ├── relic_cp_ecies.c │ │ ├── relic_cp_ecmqv.c │ │ ├── relic_cp_ecss.c │ │ ├── relic_cp_ers.c │ │ ├── relic_cp_etrs.c │ │ ├── relic_cp_ghpe.c │ │ ├── relic_cp_ibe.c │ │ ├── relic_cp_mklhs.c │ │ ├── relic_cp_mpss.c │ │ ├── relic_cp_pcdel.c │ │ ├── relic_cp_phpe.c │ │ ├── relic_cp_pok.c │ │ ├── relic_cp_pss.c │ │ ├── relic_cp_rabin.c │ │ ├── relic_cp_rsa.c │ │ ├── relic_cp_sok.c │ │ ├── relic_cp_sokaka.c │ │ ├── relic_cp_vbnn.c │ │ └── relic_cp_zss.c │ ├── dv │ │ ├── relic_dv_mem.c │ │ └── relic_dv_util.c │ ├── eb │ │ ├── relic_eb_add.c │ │ ├── relic_eb_cmp.c │ │ ├── relic_eb_curve.c │ │ ├── relic_eb_dbl.c │ │ ├── relic_eb_frb.c │ │ ├── relic_eb_hlv.c │ │ ├── relic_eb_map.c │ │ ├── relic_eb_mul.c │ │ ├── relic_eb_mul_fix.c │ │ ├── relic_eb_mul_sim.c │ │ ├── relic_eb_neg.c │ │ ├── relic_eb_norm.c │ │ ├── relic_eb_param.c │ │ ├── relic_eb_pck.c │ │ └── relic_eb_util.c │ ├── ed │ │ ├── relic_ed_add.c │ │ ├── relic_ed_cmp.c │ │ ├── relic_ed_curve.c │ │ ├── relic_ed_dbl.c │ │ ├── relic_ed_map.c │ │ ├── relic_ed_mul.c │ │ ├── relic_ed_mul_fix.c │ │ ├── relic_ed_mul_sim.c │ │ ├── relic_ed_neg.c │ │ ├── relic_ed_norm.c │ │ ├── relic_ed_param.c │ │ ├── relic_ed_pck.c │ │ └── relic_ed_util.c │ ├── ep │ │ ├── relic_ep_add.c │ │ ├── relic_ep_cmp.c │ │ ├── relic_ep_curve.c │ │ ├── relic_ep_dbl.c │ │ ├── relic_ep_map.c │ │ ├── relic_ep_mul.c │ │ ├── relic_ep_mul_fix.c │ │ ├── relic_ep_mul_sim.c │ │ ├── relic_ep_neg.c │ │ ├── relic_ep_norm.c │ │ ├── relic_ep_param.c │ │ ├── relic_ep_pck.c │ │ ├── relic_ep_psi.c │ │ └── relic_ep_util.c │ ├── epx │ │ ├── relic_ep2_add.c │ │ ├── relic_ep2_cmp.c │ │ ├── relic_ep2_curve.c │ │ ├── relic_ep2_dbl.c │ │ ├── relic_ep2_frb.c │ │ ├── relic_ep2_map.c │ │ ├── relic_ep2_mul.c │ │ ├── relic_ep2_mul_cof.c │ │ ├── relic_ep2_mul_fix.c │ │ ├── relic_ep2_mul_sim.c │ │ ├── relic_ep2_neg.c │ │ ├── relic_ep2_norm.c │ │ ├── relic_ep2_pck.c │ │ ├── relic_ep2_util.c │ │ ├── relic_ep4_add.c │ │ ├── relic_ep4_cmp.c │ │ ├── relic_ep4_curve.c │ │ ├── relic_ep4_dbl.c │ │ ├── relic_ep4_frb.c │ │ ├── relic_ep4_map.c │ │ ├── relic_ep4_mul.c │ │ ├── relic_ep4_mul_cof.c │ │ ├── relic_ep4_mul_fix.c │ │ ├── relic_ep4_mul_sim.c │ │ ├── relic_ep4_neg.c │ │ ├── relic_ep4_norm.c │ │ └── relic_ep4_util.c │ ├── fb │ │ ├── relic_fb_add.c │ │ ├── relic_fb_cmp.c │ │ ├── relic_fb_exp.c │ │ ├── relic_fb_inv.c │ │ ├── relic_fb_itr.c │ │ ├── relic_fb_mul.c │ │ ├── relic_fb_param.c │ │ ├── relic_fb_poly.c │ │ ├── relic_fb_rdc.c │ │ ├── relic_fb_shift.c │ │ ├── relic_fb_slv.c │ │ ├── relic_fb_sqr.c │ │ ├── relic_fb_srt.c │ │ ├── relic_fb_trc.c │ │ └── relic_fb_util.c │ ├── fbx │ │ ├── relic_fb2_inv.c │ │ ├── relic_fb2_mul.c │ │ ├── relic_fb2_slv.c │ │ └── relic_fb2_sqr.c │ ├── fp │ │ ├── relic_fp_add.c │ │ ├── relic_fp_cmp.c │ │ ├── relic_fp_exp.c │ │ ├── relic_fp_inv.c │ │ ├── relic_fp_mul.c │ │ ├── relic_fp_param.c │ │ ├── relic_fp_prime.c │ │ ├── relic_fp_rdc.c │ │ ├── relic_fp_shift.c │ │ ├── relic_fp_sqr.c │ │ ├── relic_fp_srt.c │ │ └── relic_fp_util.c │ ├── fpx │ │ ├── relic_fp12_mul.c │ │ ├── relic_fp12_sqr.c │ │ ├── relic_fp18_mul.c │ │ ├── relic_fp18_sqr.c │ │ ├── relic_fp24_mul.c │ │ ├── relic_fp24_sqr.c │ │ ├── relic_fp2_mul.c │ │ ├── relic_fp2_sqr.c │ │ ├── relic_fp3_mul.c │ │ ├── relic_fp3_sqr.c │ │ ├── relic_fp48_mul.c │ │ ├── relic_fp48_sqr.c │ │ ├── relic_fp4_mul.c │ │ ├── relic_fp4_sqr.c │ │ ├── relic_fp54_mul.c │ │ ├── relic_fp54_sqr.c │ │ ├── relic_fp6_mul.c │ │ ├── relic_fp6_sqr.c │ │ ├── relic_fp8_mul.c │ │ ├── relic_fp8_sqr.c │ │ ├── relic_fp9_mul.c │ │ ├── relic_fp9_sqr.c │ │ ├── relic_fpx_add.c │ │ ├── relic_fpx_cmp.c │ │ ├── relic_fpx_cyc.c │ │ ├── relic_fpx_exp.c │ │ ├── relic_fpx_field.c │ │ ├── relic_fpx_frb.c │ │ ├── relic_fpx_inv.c │ │ ├── relic_fpx_pck.c │ │ ├── relic_fpx_rdc.c │ │ ├── relic_fpx_srt.c │ │ └── relic_fpx_util.c │ ├── low │ │ ├── arm-asm-254 │ │ │ ├── relic_fp_add_low.c │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ └── relic_fp_rdc_low.s │ │ ├── avr-asm-158 │ │ │ ├── relic_bn_add_low.s │ │ │ ├── relic_bn_shift_low.c │ │ │ ├── relic_bn_shift_low.s │ │ │ ├── relic_fp_add_low.c │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_shift_low.c │ │ │ ├── relic_fp_shift_low.s │ │ │ ├── relic_fp_sqr_low.c │ │ │ └── relic_fp_sqr_low.s │ │ ├── avr-asm-163 │ │ │ ├── relic_bn_add_low.s │ │ │ ├── relic_bn_shift_low.c │ │ │ ├── relic_bn_shift_low.s │ │ │ ├── relic_fb_add_low.c │ │ │ ├── relic_fb_add_low.s │ │ │ ├── relic_fb_mul_low.c │ │ │ ├── relic_fb_mul_low.s │ │ │ ├── relic_fb_shift_low.c │ │ │ ├── relic_fb_shift_low.s │ │ │ ├── relic_fb_sqr_low.c │ │ │ └── relic_fb_sqr_low.s │ │ ├── curve2251-sse │ │ │ ├── CMakeLists.txt │ │ │ ├── macros.h │ │ │ ├── relic_fb_add_low.c │ │ │ ├── relic_fb_inv_low.c │ │ │ ├── relic_fb_itr_low.c │ │ │ ├── relic_fb_mul_low.c │ │ │ ├── relic_fb_mul_low_cl.c │ │ │ ├── relic_fb_mul_low_ld.c │ │ │ ├── relic_fb_mul_low_sf.c │ │ │ ├── relic_fb_rdc_low.c │ │ │ ├── relic_fb_slv_low.c │ │ │ ├── relic_fb_sqr_low.c │ │ │ ├── relic_fb_srt_low.c │ │ │ └── relic_fb_trc_low.c │ │ ├── easy │ │ │ ├── relic_bn_add_low.c │ │ │ ├── relic_bn_div_low.c │ │ │ ├── relic_bn_mod_low.c │ │ │ ├── relic_bn_mul_low.c │ │ │ ├── relic_bn_shift_low.c │ │ │ ├── relic_bn_sqr_low.c │ │ │ ├── relic_fb_add_low.c │ │ │ ├── relic_fb_inv_low.c │ │ │ ├── relic_fb_itr_low.c │ │ │ ├── relic_fb_mul_low.c │ │ │ ├── relic_fb_rdc_low.c │ │ │ ├── relic_fb_shift_low.c │ │ │ ├── relic_fb_slv_low.c │ │ │ ├── relic_fb_sqr_low.c │ │ │ ├── relic_fb_srt_low.c │ │ │ ├── relic_fb_trc_low.c │ │ │ ├── relic_fp_add_low.c │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_shift_low.c │ │ │ ├── relic_fp_sqr_low.c │ │ │ ├── relic_fpx_add_low.c │ │ │ ├── relic_fpx_mul_low.c │ │ │ ├── relic_fpx_rdc_low.c │ │ │ └── relic_fpx_sqr_low.c │ │ ├── fiat │ │ │ ├── CMakeLists.txt │ │ │ ├── relic_fp_add_low.tmpl │ │ │ ├── relic_fp_mul_low.tmpl │ │ │ └── relic_fp_sqr_low.tmpl │ │ ├── gmp-sec │ │ │ ├── relic_bn_add_low.c │ │ │ ├── relic_bn_div_low.c │ │ │ ├── relic_bn_mod_low.c │ │ │ ├── relic_bn_mul_low.c │ │ │ ├── relic_bn_shift_low.c │ │ │ ├── relic_bn_sqr_low.c │ │ │ ├── relic_fp_add_low.c │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_shift_low.c │ │ │ └── relic_fp_sqr_low.c │ │ ├── gmp │ │ │ ├── relic_bn_add_low.c │ │ │ ├── relic_bn_div_low.c │ │ │ ├── relic_bn_mod_low.c │ │ │ ├── relic_bn_mul_low.c │ │ │ ├── relic_bn_shift_low.c │ │ │ ├── relic_bn_sqr_low.c │ │ │ ├── relic_fb_add_low.c │ │ │ ├── relic_fb_shift_low.c │ │ │ ├── relic_fp_add_low.c │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_shift_low.c │ │ │ └── relic_fp_sqr_low.c │ │ ├── msp-asm │ │ │ ├── fb_mul_163_ld.inc │ │ │ ├── fb_mul_271_ld.inc │ │ │ ├── fb_mul_271_ld_k2.inc │ │ │ ├── fb_mul_283_ld.inc │ │ │ ├── fb_mul_353_ld_k2.inc │ │ │ ├── fb_mul_353_ld_k3.inc │ │ │ ├── fb_srt_271_penta.inc │ │ │ ├── fb_srt_353_trino.inc │ │ │ ├── fp_mul32_160_comba.inc │ │ │ ├── fp_mul32_256_comba.inc │ │ │ ├── fp_mul_128_comba.inc │ │ │ ├── fp_mul_160_comba.inc │ │ │ ├── fp_rdc32_160_montgomery_sparse.inc │ │ │ ├── fp_rdc32_256_montgomery_sparse.inc │ │ │ ├── fp_rdc_160_montgomery_sparse.inc │ │ │ ├── fp_rdc_256_montgomery_sparse.inc │ │ │ ├── fp_rdc_256p1.inc │ │ │ ├── fp_sqr32_160_comba.inc │ │ │ ├── fp_sqr32_256_comba.inc │ │ │ ├── fp_sqr_128_comba.inc │ │ │ ├── fp_sqr_160_comba.inc │ │ │ ├── relic_bn_add_low.c │ │ │ ├── relic_bn_add_low.s │ │ │ ├── relic_bn_shift_low.c │ │ │ ├── relic_bn_shift_low.s │ │ │ ├── relic_fb_add_low.c │ │ │ ├── relic_fb_add_low.s │ │ │ ├── relic_fb_mul_low.c │ │ │ ├── relic_fb_mul_low.s │ │ │ ├── relic_fb_mul_low_163.s │ │ │ ├── relic_fb_mul_low_271.s │ │ │ ├── relic_fb_mul_low_283.s │ │ │ ├── relic_fb_mul_low_353.s │ │ │ ├── relic_fb_mul_low_353_k3.s │ │ │ ├── relic_fb_rdc_low.c │ │ │ ├── relic_fb_rdc_low.s │ │ │ ├── relic_fb_rdc_low_163.s │ │ │ ├── relic_fb_rdc_low_271.s │ │ │ ├── relic_fb_rdc_low_283.s │ │ │ ├── relic_fb_rdc_low_353.s │ │ │ ├── relic_fb_shift_low.c │ │ │ ├── relic_fb_shift_low.s │ │ │ ├── relic_fb_sqr_low.c │ │ │ ├── relic_fb_sqr_low.s │ │ │ ├── relic_fb_srt_low.c │ │ │ ├── relic_fb_srt_low.s │ │ │ ├── relic_fp_add_low.c │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_mul_low_160.s │ │ │ ├── relic_fp_mul_low_256.s │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_rdc_low_160k1.s │ │ │ ├── relic_fp_rdc_low_160p1.s │ │ │ ├── relic_fp_rdc_low_256k1.s │ │ │ ├── relic_fp_rdc_low_256p1.s │ │ │ ├── relic_fp_sqr_low.s │ │ │ ├── relic_fp_sqr_low_160.s │ │ │ ├── relic_fp_sqr_low_256.s │ │ │ └── relic_fpx_add_low.c │ │ ├── x64-asm-446 │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_inv_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_shift_low.c │ │ │ ├── relic_fp_shift_low.s │ │ │ └── relic_fp_sqr_low.c │ │ ├── x64-asm-455 │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_inv_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_shift_low.c │ │ │ ├── relic_fp_shift_low.s │ │ │ └── relic_fp_sqr_low.c │ │ ├── x64-asm-4l │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_shift_low.c │ │ │ ├── relic_fp_shift_low.s │ │ │ ├── relic_fp_sqr_low.c │ │ │ ├── relic_fp_sqr_low.s │ │ │ ├── relic_fpx_add_low.c │ │ │ ├── relic_fpx_add_low.s │ │ │ ├── relic_fpx_mul_low.c │ │ │ ├── relic_fpx_mul_low.s │ │ │ ├── relic_fpx_rdc_low.c │ │ │ ├── relic_fpx_rdc_low.s │ │ │ ├── relic_fpx_sqr_low.c │ │ │ └── relic_fpx_sqr_low.s │ │ ├── x64-asm-544 │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_sqr_low.c │ │ │ ├── relic_fpx_add_low.c │ │ │ ├── relic_fpx_mul_low.c │ │ │ ├── relic_fpx_rdc_low.c │ │ │ ├── relic_fpx_rdc_low.s │ │ │ └── relic_fpx_sqr_low.c │ │ ├── x64-asm-638 │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_sqr_low.c │ │ │ ├── relic_fpx_rdc_low.c │ │ │ └── relic_fpx_rdc_low.s │ │ ├── x64-asm-6l │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_shift_low.c │ │ │ ├── relic_fp_shift_low.s │ │ │ └── relic_fp_sqr_low.c │ │ ├── x64-asm-8l │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_inv_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_shift_low.c │ │ │ ├── relic_fp_shift_low.s │ │ │ └── relic_fp_sqr_low.c │ │ ├── x64-asm-9l │ │ │ ├── CMakeLists.txt │ │ │ ├── macro.s │ │ │ ├── relic_fp_add_low.s │ │ │ ├── relic_fp_mul_low.c │ │ │ ├── relic_fp_mul_low.s │ │ │ ├── relic_fp_rdc_low.c │ │ │ ├── relic_fp_rdc_low.s │ │ │ ├── relic_fp_sqr_low.c │ │ │ ├── relic_fpx_rdc_low.c │ │ │ └── relic_fpx_rdc_low.s │ │ └── x64-fiat-381 │ │ │ ├── CMakeLists.txt │ │ │ ├── bls12_381_q_64.c │ │ │ ├── relic_fp_add_low.c │ │ │ ├── relic_fp_inv_low.c │ │ │ ├── relic_fp_mul_low.c │ │ │ └── relic_fp_sqr_low.c │ ├── md │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ ├── blake2_COPYING │ │ ├── blake2s-ref.c │ │ ├── relic_md_blake2s.c │ │ ├── relic_md_hmac.c │ │ ├── relic_md_kdf.c │ │ ├── relic_md_mgf.c │ │ ├── relic_md_sha224.c │ │ ├── relic_md_sha256.c │ │ ├── relic_md_sha384.c │ │ ├── relic_md_sha512.c │ │ ├── relic_md_xmd.c │ │ ├── sha.h │ │ ├── sha224-256.c │ │ ├── sha384-512.c │ │ └── sha_private.h │ ├── mpc │ │ ├── relic_mt_mpc.c │ │ └── relic_pc_mpc.c │ ├── pc │ │ ├── relic_pc_core.c │ │ ├── relic_pc_exp.c │ │ └── relic_pc_util.c │ ├── pp │ │ ├── relic_pp_add_k12.c │ │ ├── relic_pp_add_k2.c │ │ ├── relic_pp_add_k24.c │ │ ├── relic_pp_add_k48.c │ │ ├── relic_pp_add_k54.c │ │ ├── relic_pp_add_k8.c │ │ ├── relic_pp_dbl_k12.c │ │ ├── relic_pp_dbl_k2.c │ │ ├── relic_pp_dbl_k24.c │ │ ├── relic_pp_dbl_k48.c │ │ ├── relic_pp_dbl_k54.c │ │ ├── relic_pp_dbl_k8.c │ │ ├── relic_pp_exp_k12.c │ │ ├── relic_pp_exp_k2.c │ │ ├── relic_pp_exp_k24.c │ │ ├── relic_pp_exp_k48.c │ │ ├── relic_pp_exp_k54.c │ │ ├── relic_pp_exp_k8.c │ │ ├── relic_pp_map.c │ │ ├── relic_pp_map_k12.c │ │ ├── relic_pp_map_k2.c │ │ ├── relic_pp_map_k24.c │ │ ├── relic_pp_map_k48.c │ │ ├── relic_pp_map_k54.c │ │ ├── relic_pp_map_k8.c │ │ └── relic_pp_norm.c │ ├── rand │ │ ├── relic_rand_call.c │ │ ├── relic_rand_core.c │ │ ├── relic_rand_hashd.c │ │ ├── relic_rand_rdrnd.c │ │ └── relic_rand_udev.c │ ├── relic_bench.c │ ├── relic_conf.c │ ├── relic_core.c │ ├── relic_err.c │ ├── relic_test.c │ ├── relic_util.c │ └── tmpl │ │ └── relic_tmpl_map.h │ ├── test │ ├── CMakeLists.txt │ ├── test_bn.c │ ├── test_core.c │ ├── test_cp.c │ ├── test_dv.c │ ├── test_eb.c │ ├── test_ec.c │ ├── test_ed.c │ ├── test_ep.c │ ├── test_epx.c │ ├── test_err.c │ ├── test_fb.c │ ├── test_fbx.c │ ├── test_fp.c │ ├── test_fpx.c │ ├── test_md.c │ ├── test_mpc.c │ ├── test_pc.c │ ├── test_pp.c │ └── test_rand.c │ └── tools │ ├── git-creation-date.sh │ └── relic_gen_label.sh ├── emsdk_build.sh ├── go-bindings ├── .gitignore ├── Makefile ├── README.md ├── blschia.cpp ├── blschia.h ├── elements.cpp ├── elements.go ├── elements.h ├── error.go ├── error.h ├── go.mod ├── go.sum ├── privatekey.cpp ├── privatekey.go ├── privatekey.h ├── schemes.cpp ├── schemes.go ├── schemes.h ├── schemes_test.go ├── threshold.cpp ├── threshold.go ├── threshold.h ├── threshold_test.go ├── util.go ├── util_test.go ├── utils.cpp └── utils.hpp ├── include └── dashbls │ ├── bls.hpp │ ├── chaincode.hpp │ ├── elements.hpp │ ├── extendedprivatekey.hpp │ ├── extendedpublickey.hpp │ ├── hdkeys.hpp │ ├── hkdf.hpp │ ├── legacy.hpp │ ├── privatekey.hpp │ ├── schemes.hpp │ ├── test-utils.hpp │ ├── threshold.hpp │ └── util.hpp ├── js-bindings ├── CMakeLists.txt ├── README.md ├── blsjs.d.ts ├── bundle_wasm_for_web.js ├── helpers.cpp ├── helpers.h ├── jsbindings.cpp ├── package-lock.json ├── package.json ├── tests │ ├── PrivateKey.spec.js │ ├── PublicKey.spec.js │ ├── Signature.spec.js │ ├── karma.conf.js │ ├── karma.test.js │ ├── test.js │ ├── typings.spec.ts │ ├── webpack.config.js │ └── yarn.lock └── wrappers │ ├── BignumWrapper.cpp │ ├── BignumWrapper.h │ ├── G1ElementWrapper.cpp │ ├── G1ElementWrapper.h │ ├── G2ElementWrapper.cpp │ ├── G2ElementWrapper.h │ ├── JSWrapper.h │ ├── PrivateKeyWrapper.cpp │ ├── PrivateKeyWrapper.h │ ├── SchemeMPLWrapper.cpp │ ├── SchemeMPLWrapper.h │ ├── UtilWrapper.cpp │ └── UtilWrapper.h ├── js_build.sh ├── js_build_docker.sh ├── js_test.sh ├── lgtm.yml ├── mypi.ini ├── pyproject.toml ├── python-bindings ├── CMakeLists.txt ├── README.md ├── benchmark.py ├── pythonbindings.cpp └── test.py ├── python-impl ├── README.md ├── bls12381.py ├── ec.py ├── fields.py ├── hash_to_field.py ├── hd_keys.py ├── hkdf.py ├── impl-test.py ├── op_swu_g2.py ├── pairing.py ├── private_key.py ├── schemes.py └── util.py ├── rust-bindings ├── .gitignore ├── bls-dash-sys │ ├── .rustfmt.toml │ ├── Cargo.toml │ ├── bindings.rs │ ├── build.rs │ ├── c-bindings │ │ ├── bip32 │ │ │ ├── chaincode.cpp │ │ │ ├── chaincode.h │ │ │ ├── extendedprivatekey.cpp │ │ │ ├── extendedprivatekey.h │ │ │ ├── extendedpublickey.cpp │ │ │ └── extendedpublickey.h │ │ ├── blschia.cpp │ │ ├── blschia.h │ │ ├── elements.cpp │ │ ├── elements.h │ │ ├── error.h │ │ ├── privatekey.cpp │ │ ├── privatekey.h │ │ ├── schemes.cpp │ │ ├── schemes.h │ │ ├── threshold.cpp │ │ ├── threshold.h │ │ ├── utils.cpp │ │ └── utils.hpp │ ├── include.h │ ├── src │ │ └── lib.rs │ └── tests │ │ └── sign_and_verify.rs ├── bls-signatures │ ├── .rustfmt.toml │ ├── Cargo.toml │ └── src │ │ ├── bip32 │ │ ├── chain_code.rs │ │ ├── mod.rs │ │ ├── private_key.rs │ │ └── public_key.rs │ │ ├── elements.rs │ │ ├── legacy │ │ ├── bip32 │ │ │ ├── mod.rs │ │ │ ├── private_key.rs │ │ │ └── public_key.rs │ │ ├── elements.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── private_key.rs │ │ ├── schemes.rs │ │ └── utils.rs └── example │ ├── Cargo.toml │ └── src │ └── main.rs ├── setjmp_patch.diff ├── setup.py └── src ├── CMakeLists.txt ├── bls.cpp ├── chaincode.cpp ├── elements.cpp ├── extendedprivatekey.cpp ├── extendedpublickey.cpp ├── legacy.cpp ├── privatekey.cpp ├── schemes.cpp ├── test-bench.cpp ├── test.cpp └── threshold.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.clang-format -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/build-binds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.github/workflows/build-binds.yml -------------------------------------------------------------------------------- /.github/workflows/build-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.github/workflows/build-test.yaml -------------------------------------------------------------------------------- /.github/workflows/build-wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.github/workflows/build-wheels.yml -------------------------------------------------------------------------------- /.github/workflows/js-bindings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.github/workflows/js-bindings.yml -------------------------------------------------------------------------------- /.github/workflows/relic-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.github/workflows/relic-nightly.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.github/workflows/stale-issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.bench.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/Makefile.bench.include -------------------------------------------------------------------------------- /Makefile.bls.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/Makefile.bls.include -------------------------------------------------------------------------------- /Makefile.mimalloc.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/Makefile.mimalloc.include -------------------------------------------------------------------------------- /Makefile.relic.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/Makefile.relic.include -------------------------------------------------------------------------------- /Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/Makefile.test.include -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/README.md -------------------------------------------------------------------------------- /apple.rust.deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/apple.rust.deps.sh -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/autogen.sh -------------------------------------------------------------------------------- /cmake_modules/BrewHelper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/cmake_modules/BrewHelper.cmake -------------------------------------------------------------------------------- /cmake_modules/Findgmp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/cmake_modules/Findgmp.cmake -------------------------------------------------------------------------------- /cmake_modules/Findsodium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/cmake_modules/Findsodium.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/configure.ac -------------------------------------------------------------------------------- /depends/catch2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/catch2/CMakeLists.txt -------------------------------------------------------------------------------- /depends/catch2/include/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/catch2/include/catch2/catch.hpp -------------------------------------------------------------------------------- /depends/mimalloc/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/.gitattributes -------------------------------------------------------------------------------- /depends/mimalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/.gitignore -------------------------------------------------------------------------------- /depends/mimalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/CMakeLists.txt -------------------------------------------------------------------------------- /depends/mimalloc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/LICENSE -------------------------------------------------------------------------------- /depends/mimalloc/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/azure-pipelines.yml -------------------------------------------------------------------------------- /depends/mimalloc/bin/mimalloc-redirect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/bin/mimalloc-redirect.dll -------------------------------------------------------------------------------- /depends/mimalloc/bin/mimalloc-redirect.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/bin/mimalloc-redirect.lib -------------------------------------------------------------------------------- /depends/mimalloc/bin/mimalloc-redirect32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/bin/mimalloc-redirect32.dll -------------------------------------------------------------------------------- /depends/mimalloc/bin/mimalloc-redirect32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/bin/mimalloc-redirect32.lib -------------------------------------------------------------------------------- /depends/mimalloc/bin/minject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/bin/minject.exe -------------------------------------------------------------------------------- /depends/mimalloc/bin/minject32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/bin/minject32.exe -------------------------------------------------------------------------------- /depends/mimalloc/cmake/JoinPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/cmake/JoinPaths.cmake -------------------------------------------------------------------------------- /depends/mimalloc/cmake/mimalloc-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/cmake/mimalloc-config.cmake -------------------------------------------------------------------------------- /depends/mimalloc/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/doxyfile -------------------------------------------------------------------------------- /depends/mimalloc/doc/ds-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/ds-logo.jpg -------------------------------------------------------------------------------- /depends/mimalloc/doc/ds-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/ds-logo.png -------------------------------------------------------------------------------- /depends/mimalloc/doc/mimalloc-doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/mimalloc-doc.h -------------------------------------------------------------------------------- /depends/mimalloc/doc/mimalloc-doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/mimalloc-doxygen.css -------------------------------------------------------------------------------- /depends/mimalloc/doc/mimalloc-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/mimalloc-logo-100.png -------------------------------------------------------------------------------- /depends/mimalloc/doc/mimalloc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/mimalloc-logo.png -------------------------------------------------------------------------------- /depends/mimalloc/doc/mimalloc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/mimalloc-logo.svg -------------------------------------------------------------------------------- /depends/mimalloc/doc/spades-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/spades-logo.png -------------------------------------------------------------------------------- /depends/mimalloc/doc/unreal-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/doc/unreal-logo.svg -------------------------------------------------------------------------------- /depends/mimalloc/docs/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/annotated.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/annotated_dup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/annotated_dup.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/bc_s.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/bdwn.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/bench.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/bench.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/build.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/classes.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/closed.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/doc.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/doxygen.css -------------------------------------------------------------------------------- /depends/mimalloc/docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/doxygen.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/dynsections.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/environment.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/folderclosed.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/folderopen.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/functions.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/functions_vars.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__aligned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__aligned.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__aligned.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__aligned.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__analysis.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__analysis.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__cpp.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__cpp.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__extended.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__extended.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__heap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__heap.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__heap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__heap.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__malloc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__malloc.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__malloc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__malloc.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__options.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__options.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__posix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__posix.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__posix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__posix.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__typed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__typed.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__typed.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__zeroinit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__zeroinit.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/group__zeroinit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/group__zeroinit.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/index.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/jquery.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/mimalloc-doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/mimalloc-doxygen.css -------------------------------------------------------------------------------- /depends/mimalloc/docs/mimalloc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/mimalloc-logo.svg -------------------------------------------------------------------------------- /depends/mimalloc/docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/modules.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/modules.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/nav_f.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/nav_g.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/nav_h.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/navtree.css -------------------------------------------------------------------------------- /depends/mimalloc/docs/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/navtree.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/navtreedata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/navtreedata.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/navtreeindex0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/navtreeindex0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/open.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/overrides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/overrides.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/pages.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/resize.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_1.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_1.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_2.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_2.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_3.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_3.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_4.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_4.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_5.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_5.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_6.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_6.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_7.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_7.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_8.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_8.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_9.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_9.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_a.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_a.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_b.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_b.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_c.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_c.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_d.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/all_d.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/classes_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/classes_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/close.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/enums_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/enums_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/enums_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/enums_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/enumvalues_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/enumvalues_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/enumvalues_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/enumvalues_1.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/functions_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/functions_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/functions_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/functions_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/functions_1.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/functions_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/functions_1.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_1.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_1.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_2.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_2.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_3.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_3.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_4.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_4.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_5.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_5.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_6.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_6.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_7.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_7.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_8.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/groups_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/groups_8.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/mag_sel.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/nomatches.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_1.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_1.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_2.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_2.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_3.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_3.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_4.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/pages_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/pages_4.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/search.css -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/search.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/search_l.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/search_m.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/search_r.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/searchdata.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/typedefs_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/typedefs_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/typedefs_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/typedefs_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/typedefs_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/typedefs_1.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/typedefs_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/typedefs_1.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/typedefs_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/typedefs_2.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/typedefs_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/typedefs_2.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_0.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_0.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_1.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_1.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_2.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_2.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_3.html -------------------------------------------------------------------------------- /depends/mimalloc/docs/search/variables_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/search/variables_3.js -------------------------------------------------------------------------------- /depends/mimalloc/docs/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/splitbar.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/sync_off.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/sync_on.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/tab_a.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/tab_b.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/tab_h.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/tab_s.png -------------------------------------------------------------------------------- /depends/mimalloc/docs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/tabs.css -------------------------------------------------------------------------------- /depends/mimalloc/docs/using.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/docs/using.html -------------------------------------------------------------------------------- /depends/mimalloc/ide/vs2017/mimalloc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/ide/vs2017/mimalloc.sln -------------------------------------------------------------------------------- /depends/mimalloc/ide/vs2017/mimalloc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/ide/vs2017/mimalloc.vcxproj -------------------------------------------------------------------------------- /depends/mimalloc/ide/vs2019/mimalloc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/ide/vs2019/mimalloc.sln -------------------------------------------------------------------------------- /depends/mimalloc/ide/vs2019/mimalloc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/ide/vs2019/mimalloc.vcxproj -------------------------------------------------------------------------------- /depends/mimalloc/ide/vs2022/mimalloc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/ide/vs2022/mimalloc.sln -------------------------------------------------------------------------------- /depends/mimalloc/ide/vs2022/mimalloc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/ide/vs2022/mimalloc.vcxproj -------------------------------------------------------------------------------- /depends/mimalloc/include/mimalloc-atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/include/mimalloc-atomic.h -------------------------------------------------------------------------------- /depends/mimalloc/include/mimalloc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/include/mimalloc-internal.h -------------------------------------------------------------------------------- /depends/mimalloc/include/mimalloc-override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/include/mimalloc-override.h -------------------------------------------------------------------------------- /depends/mimalloc/include/mimalloc-track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/include/mimalloc-track.h -------------------------------------------------------------------------------- /depends/mimalloc/include/mimalloc-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/include/mimalloc-types.h -------------------------------------------------------------------------------- /depends/mimalloc/include/mimalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/include/mimalloc.h -------------------------------------------------------------------------------- /depends/mimalloc/mimalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/mimalloc.pc.in -------------------------------------------------------------------------------- /depends/mimalloc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/readme.md -------------------------------------------------------------------------------- /depends/mimalloc/src/alloc-aligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/alloc-aligned.c -------------------------------------------------------------------------------- /depends/mimalloc/src/alloc-override-osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/alloc-override-osx.c -------------------------------------------------------------------------------- /depends/mimalloc/src/alloc-override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/alloc-override.c -------------------------------------------------------------------------------- /depends/mimalloc/src/alloc-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/alloc-posix.c -------------------------------------------------------------------------------- /depends/mimalloc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/alloc.c -------------------------------------------------------------------------------- /depends/mimalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/arena.c -------------------------------------------------------------------------------- /depends/mimalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/bitmap.c -------------------------------------------------------------------------------- /depends/mimalloc/src/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/bitmap.h -------------------------------------------------------------------------------- /depends/mimalloc/src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/heap.c -------------------------------------------------------------------------------- /depends/mimalloc/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/init.c -------------------------------------------------------------------------------- /depends/mimalloc/src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/options.c -------------------------------------------------------------------------------- /depends/mimalloc/src/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/os.c -------------------------------------------------------------------------------- /depends/mimalloc/src/page-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/page-queue.c -------------------------------------------------------------------------------- /depends/mimalloc/src/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/page.c -------------------------------------------------------------------------------- /depends/mimalloc/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/random.c -------------------------------------------------------------------------------- /depends/mimalloc/src/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/region.c -------------------------------------------------------------------------------- /depends/mimalloc/src/segment-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/segment-cache.c -------------------------------------------------------------------------------- /depends/mimalloc/src/segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/segment.c -------------------------------------------------------------------------------- /depends/mimalloc/src/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/static.c -------------------------------------------------------------------------------- /depends/mimalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/src/stats.c -------------------------------------------------------------------------------- /depends/mimalloc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/CMakeLists.txt -------------------------------------------------------------------------------- /depends/mimalloc/test/main-override-static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/main-override-static.c -------------------------------------------------------------------------------- /depends/mimalloc/test/main-override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/main-override.c -------------------------------------------------------------------------------- /depends/mimalloc/test/main-override.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/main-override.cpp -------------------------------------------------------------------------------- /depends/mimalloc/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/main.c -------------------------------------------------------------------------------- /depends/mimalloc/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/readme.md -------------------------------------------------------------------------------- /depends/mimalloc/test/test-api-fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/test-api-fill.c -------------------------------------------------------------------------------- /depends/mimalloc/test/test-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/test-api.c -------------------------------------------------------------------------------- /depends/mimalloc/test/test-stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/test-stress.c -------------------------------------------------------------------------------- /depends/mimalloc/test/test-wrong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/test-wrong.c -------------------------------------------------------------------------------- /depends/mimalloc/test/testhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/mimalloc/test/testhelper.h -------------------------------------------------------------------------------- /depends/relic/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.editorconfig -------------------------------------------------------------------------------- /depends/relic/.github/workflows/16bit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.github/workflows/16bit.yml -------------------------------------------------------------------------------- /depends/relic/.github/workflows/32bit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.github/workflows/32bit.yml -------------------------------------------------------------------------------- /depends/relic/.github/workflows/8bit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.github/workflows/8bit.yml -------------------------------------------------------------------------------- /depends/relic/.github/workflows/bls12-381.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.github/workflows/bls12-381.yml -------------------------------------------------------------------------------- /depends/relic/.github/workflows/easy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.github/workflows/easy.yml -------------------------------------------------------------------------------- /depends/relic/.github/workflows/gmp-sec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.github/workflows/gmp-sec.yml -------------------------------------------------------------------------------- /depends/relic/.github/workflows/gmp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.github/workflows/gmp.yml -------------------------------------------------------------------------------- /depends/relic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.gitignore -------------------------------------------------------------------------------- /depends/relic/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.indent.pro -------------------------------------------------------------------------------- /depends/relic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/.travis.yml -------------------------------------------------------------------------------- /depends/relic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/CMakeLists.txt -------------------------------------------------------------------------------- /depends/relic/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/COPYRIGHT -------------------------------------------------------------------------------- /depends/relic/LICENSE: -------------------------------------------------------------------------------- 1 | Apache-2.0 OR LGPL-2.1 2 | -------------------------------------------------------------------------------- /depends/relic/LICENSE.Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/LICENSE.Apache-2.0 -------------------------------------------------------------------------------- /depends/relic/LICENSE.LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/LICENSE.LGPL-2.1 -------------------------------------------------------------------------------- /depends/relic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/README.md -------------------------------------------------------------------------------- /depends/relic/art/rlc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/art/rlc_logo.png -------------------------------------------------------------------------------- /depends/relic/art/rlc_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/art/rlc_logo.svg -------------------------------------------------------------------------------- /depends/relic/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/CMakeLists.txt -------------------------------------------------------------------------------- /depends/relic/bench/bench_bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_bn.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_cp.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_dv.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_eb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_eb.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_ec.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_ed.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_ep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_ep.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_epx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_epx.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_err.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_fb.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_fbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_fbx.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_fp.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_fpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_fpx.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_md.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_mpc.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_pc.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_pp.c -------------------------------------------------------------------------------- /depends/relic/bench/bench_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/bench/bench_rand.c -------------------------------------------------------------------------------- /depends/relic/cmake/arch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/arch.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/bn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/bn.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/cp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/cp.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/doxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/doxygen.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/eb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/eb.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/ec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/ec.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/ed.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/ed.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/ep.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/ep.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/err.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/err.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/fb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/fb.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/fiat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/fiat.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/fp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/fp.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/fpx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/fpx.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/gmp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/gmp.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/ios.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/ios.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/md.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/md.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/pp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/pp.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/rand.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/rand.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/relic-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/relic-config.cmake -------------------------------------------------------------------------------- /depends/relic/cmake/with.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/cmake/with.cmake -------------------------------------------------------------------------------- /depends/relic/demo/cert-input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/cert-input/Makefile -------------------------------------------------------------------------------- /depends/relic/demo/cert-input/test-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/cert-input/test-bench.c -------------------------------------------------------------------------------- /depends/relic/demo/ers-etrs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/ers-etrs/Makefile -------------------------------------------------------------------------------- /depends/relic/demo/ers-etrs/test-bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/ers-etrs/test-bench.c -------------------------------------------------------------------------------- /depends/relic/demo/general-paillier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/general-paillier/Makefile -------------------------------------------------------------------------------- /depends/relic/demo/general-paillier/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/general-paillier/test.c -------------------------------------------------------------------------------- /depends/relic/demo/link-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/link-test/Makefile -------------------------------------------------------------------------------- /depends/relic/demo/link-test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/link-test/test.c -------------------------------------------------------------------------------- /depends/relic/demo/link-test/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/link-test/test1.c -------------------------------------------------------------------------------- /depends/relic/demo/link-test/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/link-test/test2.c -------------------------------------------------------------------------------- /depends/relic/demo/public-stats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/public-stats/Makefile -------------------------------------------------------------------------------- /depends/relic/demo/public-stats/csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/public-stats/csv.c -------------------------------------------------------------------------------- /depends/relic/demo/public-stats/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/public-stats/csv.h -------------------------------------------------------------------------------- /depends/relic/demo/public-stats/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/public-stats/main.c -------------------------------------------------------------------------------- /depends/relic/demo/tweedledum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/tweedledum/Makefile -------------------------------------------------------------------------------- /depends/relic/demo/tweedledum/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/demo/tweedledum/main.c -------------------------------------------------------------------------------- /depends/relic/doc/relic.doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/doc/relic.doxygen.in -------------------------------------------------------------------------------- /depends/relic/include/low/relic_bn_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/low/relic_bn_low.h -------------------------------------------------------------------------------- /depends/relic/include/low/relic_dv_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/low/relic_dv_low.h -------------------------------------------------------------------------------- /depends/relic/include/low/relic_fb_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/low/relic_fb_low.h -------------------------------------------------------------------------------- /depends/relic/include/low/relic_fp_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/low/relic_fp_low.h -------------------------------------------------------------------------------- /depends/relic/include/low/relic_fpx_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/low/relic_fpx_low.h -------------------------------------------------------------------------------- /depends/relic/include/relic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic.h -------------------------------------------------------------------------------- /depends/relic/include/relic_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_alloc.h -------------------------------------------------------------------------------- /depends/relic/include/relic_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_arch.h -------------------------------------------------------------------------------- /depends/relic/include/relic_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_bc.h -------------------------------------------------------------------------------- /depends/relic/include/relic_bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_bench.h -------------------------------------------------------------------------------- /depends/relic/include/relic_bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_bn.h -------------------------------------------------------------------------------- /depends/relic/include/relic_conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_conf.h.in -------------------------------------------------------------------------------- /depends/relic/include/relic_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_core.h -------------------------------------------------------------------------------- /depends/relic/include/relic_cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_cp.h -------------------------------------------------------------------------------- /depends/relic/include/relic_dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_dv.h -------------------------------------------------------------------------------- /depends/relic/include/relic_eb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_eb.h -------------------------------------------------------------------------------- /depends/relic/include/relic_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_ec.h -------------------------------------------------------------------------------- /depends/relic/include/relic_ed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_ed.h -------------------------------------------------------------------------------- /depends/relic/include/relic_ep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_ep.h -------------------------------------------------------------------------------- /depends/relic/include/relic_epx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_epx.h -------------------------------------------------------------------------------- /depends/relic/include/relic_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_err.h -------------------------------------------------------------------------------- /depends/relic/include/relic_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_fb.h -------------------------------------------------------------------------------- /depends/relic/include/relic_fbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_fbx.h -------------------------------------------------------------------------------- /depends/relic/include/relic_fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_fp.h -------------------------------------------------------------------------------- /depends/relic/include/relic_fpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_fpx.h -------------------------------------------------------------------------------- /depends/relic/include/relic_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_label.h -------------------------------------------------------------------------------- /depends/relic/include/relic_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_md.h -------------------------------------------------------------------------------- /depends/relic/include/relic_mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_mpc.h -------------------------------------------------------------------------------- /depends/relic/include/relic_multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_multi.h -------------------------------------------------------------------------------- /depends/relic/include/relic_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_pc.h -------------------------------------------------------------------------------- /depends/relic/include/relic_pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_pp.h -------------------------------------------------------------------------------- /depends/relic/include/relic_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_rand.h -------------------------------------------------------------------------------- /depends/relic/include/relic_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_test.h -------------------------------------------------------------------------------- /depends/relic/include/relic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_types.h -------------------------------------------------------------------------------- /depends/relic/include/relic_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/include/relic_util.h -------------------------------------------------------------------------------- /depends/relic/preset/ardue-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/ardue-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/arm-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/arm-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/armdroid-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/armdroid-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/armduino-ecc-128k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/armduino-ecc-128k.sh -------------------------------------------------------------------------------- /depends/relic/preset/armega-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/armega-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/armios-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/armios-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/avr-ecc-80k-sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/avr-ecc-80k-sim.sh -------------------------------------------------------------------------------- /depends/relic/preset/avr-ecc-80k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/avr-ecc-80k.sh -------------------------------------------------------------------------------- /depends/relic/preset/avr-pbc-80.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/avr-pbc-80.sh -------------------------------------------------------------------------------- /depends/relic/preset/curve2251-clmul-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/curve2251-clmul-gcc.sh -------------------------------------------------------------------------------- /depends/relic/preset/curve2251-clmul-icc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/curve2251-clmul-icc.sh -------------------------------------------------------------------------------- /depends/relic/preset/curve2251-ssse3-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/curve2251-ssse3-gcc.sh -------------------------------------------------------------------------------- /depends/relic/preset/curve2251-ssse3-icc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/curve2251-ssse3-icc.sh -------------------------------------------------------------------------------- /depends/relic/preset/fiat-pbc-bls381.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/fiat-pbc-bls381.sh -------------------------------------------------------------------------------- /depends/relic/preset/gmp-ecc-128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/gmp-ecc-128.sh -------------------------------------------------------------------------------- /depends/relic/preset/gmp-ecc-tweedledum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/gmp-ecc-tweedledum.sh -------------------------------------------------------------------------------- /depends/relic/preset/gmp-paillier-4096.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/gmp-paillier-4096.sh -------------------------------------------------------------------------------- /depends/relic/preset/gmp-pbc-bls381.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/gmp-pbc-bls381.sh -------------------------------------------------------------------------------- /depends/relic/preset/gmp-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/gmp-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/gmp-pbc-ss1536.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/gmp-pbc-ss1536.sh -------------------------------------------------------------------------------- /depends/relic/preset/msp-ecc-128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/msp-ecc-128.sh -------------------------------------------------------------------------------- /depends/relic/preset/msp-ecc-128k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/msp-ecc-128k.sh -------------------------------------------------------------------------------- /depends/relic/preset/msp-ecc-80.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/msp-ecc-80.sh -------------------------------------------------------------------------------- /depends/relic/preset/msp-ecc-80k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/msp-ecc-80k.sh -------------------------------------------------------------------------------- /depends/relic/preset/msp-pbc-bn158.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/msp-pbc-bn158.sh -------------------------------------------------------------------------------- /depends/relic/preset/msp-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/msp-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/valgrind-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/valgrind-debug.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-ecc-128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-ecc-128.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bls12-381.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bls12-381.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bls12-446.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bls12-446.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bls12-455.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bls12-455.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bls12-638.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bls12-638.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bls24-509.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bls24-509.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bls48-575.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bls48-575.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bn254.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bn254.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bn382.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bn382.sh -------------------------------------------------------------------------------- /depends/relic/preset/x64-pbc-bn446.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/preset/x64-pbc-bn446.sh -------------------------------------------------------------------------------- /depends/relic/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/CMakeLists.txt -------------------------------------------------------------------------------- /depends/relic/src/arch/lzcnt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/arch/lzcnt.inc -------------------------------------------------------------------------------- /depends/relic/src/arch/relic_arch_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/arch/relic_arch_arm.c -------------------------------------------------------------------------------- /depends/relic/src/arch/relic_arch_avr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/arch/relic_arch_avr.c -------------------------------------------------------------------------------- /depends/relic/src/arch/relic_arch_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/arch/relic_arch_msp.c -------------------------------------------------------------------------------- /depends/relic/src/arch/relic_arch_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/arch/relic_arch_none.c -------------------------------------------------------------------------------- /depends/relic/src/arch/relic_arch_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/arch/relic_arch_x64.c -------------------------------------------------------------------------------- /depends/relic/src/arch/relic_arch_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/arch/relic_arch_x86.c -------------------------------------------------------------------------------- /depends/relic/src/bc/relic_bc_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bc/relic_bc_aes.c -------------------------------------------------------------------------------- /depends/relic/src/bc/rijndael-alg-fst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bc/rijndael-alg-fst.c -------------------------------------------------------------------------------- /depends/relic/src/bc/rijndael-alg-fst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bc/rijndael-alg-fst.h -------------------------------------------------------------------------------- /depends/relic/src/bc/rijndael-api-fst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bc/rijndael-api-fst.c -------------------------------------------------------------------------------- /depends/relic/src/bc/rijndael-api-fst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bc/rijndael-api-fst.h -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_add.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_div.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_factor.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_gcd.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_inv.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_lcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_lcm.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_mem.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_mod.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_mul.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_mxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_mxp.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_prime.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_rec.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_shift.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_smb.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_srt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_srt.c -------------------------------------------------------------------------------- /depends/relic/src/bn/relic_bn_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/bn/relic_bn_util.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_bbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_bbs.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_bdpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_bdpe.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_bgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_bgn.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_bls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_bls.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_cls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_cls.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_cmlhs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_cmlhs.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ecdh.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ecdsa.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ecies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ecies.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ecmqv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ecmqv.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ecss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ecss.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ers.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_etrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_etrs.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ghpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ghpe.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_ibe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_ibe.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_mklhs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_mklhs.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_mpss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_mpss.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_pcdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_pcdel.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_phpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_phpe.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_pok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_pok.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_pss.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_rabin.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_rsa.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_sok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_sok.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_sokaka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_sokaka.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_vbnn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_vbnn.c -------------------------------------------------------------------------------- /depends/relic/src/cp/relic_cp_zss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/cp/relic_cp_zss.c -------------------------------------------------------------------------------- /depends/relic/src/dv/relic_dv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/dv/relic_dv_mem.c -------------------------------------------------------------------------------- /depends/relic/src/dv/relic_dv_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/dv/relic_dv_util.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_add.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_curve.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_dbl.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_frb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_frb.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_hlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_hlv.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_map.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_mul.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_mul_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_mul_fix.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_mul_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_mul_sim.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_neg.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_norm.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_param.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_pck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_pck.c -------------------------------------------------------------------------------- /depends/relic/src/eb/relic_eb_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/eb/relic_eb_util.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_add.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_curve.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_dbl.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_map.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_mul.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_mul_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_mul_fix.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_mul_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_mul_sim.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_neg.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_norm.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_param.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_pck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_pck.c -------------------------------------------------------------------------------- /depends/relic/src/ed/relic_ed_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ed/relic_ed_util.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_add.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_curve.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_dbl.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_map.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_mul.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_mul_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_mul_fix.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_mul_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_mul_sim.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_neg.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_norm.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_param.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_pck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_pck.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_psi.c -------------------------------------------------------------------------------- /depends/relic/src/ep/relic_ep_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/ep/relic_ep_util.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_add.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_curve.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_dbl.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_frb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_frb.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_map.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_mul.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_mul_cof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_mul_cof.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_mul_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_mul_fix.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_mul_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_mul_sim.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_neg.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_norm.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_pck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_pck.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep2_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep2_util.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_add.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_curve.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_dbl.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_frb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_frb.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_map.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_mul.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_mul_cof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_mul_cof.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_mul_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_mul_fix.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_mul_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_mul_sim.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_neg.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_norm.c -------------------------------------------------------------------------------- /depends/relic/src/epx/relic_ep4_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/epx/relic_ep4_util.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_add.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_exp.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_inv.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_itr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_itr.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_param.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_poly.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_rdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_rdc.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_shift.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_slv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_slv.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_srt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_srt.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_trc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_trc.c -------------------------------------------------------------------------------- /depends/relic/src/fb/relic_fb_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fb/relic_fb_util.c -------------------------------------------------------------------------------- /depends/relic/src/fbx/relic_fb2_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fbx/relic_fb2_inv.c -------------------------------------------------------------------------------- /depends/relic/src/fbx/relic_fb2_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fbx/relic_fb2_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fbx/relic_fb2_slv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fbx/relic_fb2_slv.c -------------------------------------------------------------------------------- /depends/relic/src/fbx/relic_fb2_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fbx/relic_fb2_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_add.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_exp.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_inv.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_param.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_prime.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_rdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_rdc.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_shift.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_srt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_srt.c -------------------------------------------------------------------------------- /depends/relic/src/fp/relic_fp_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fp/relic_fp_util.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp12_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp12_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp12_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp12_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp18_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp18_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp18_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp18_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp24_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp24_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp24_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp24_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp2_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp2_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp2_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp2_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp3_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp3_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp3_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp3_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp48_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp48_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp48_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp48_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp4_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp4_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp4_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp4_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp54_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp54_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp54_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp54_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp6_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp6_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp6_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp6_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp8_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp8_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp8_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp8_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp9_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp9_mul.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fp9_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fp9_sqr.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_add.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_cmp.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_cyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_cyc.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_exp.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_field.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_frb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_frb.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_inv.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_pck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_pck.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_rdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_rdc.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_srt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_srt.c -------------------------------------------------------------------------------- /depends/relic/src/fpx/relic_fpx_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/fpx/relic_fpx_util.c -------------------------------------------------------------------------------- /depends/relic/src/low/curve2251-sse/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/curve2251-sse/macros.h -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_bn_add_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_bn_add_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_bn_div_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_bn_div_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_bn_mod_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_bn_mod_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_bn_mul_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_bn_mul_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_bn_sqr_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_bn_sqr_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_add_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_add_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_inv_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_inv_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_itr_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_itr_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_mul_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_mul_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_rdc_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_rdc_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_slv_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_slv_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_sqr_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_sqr_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_srt_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_srt_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fb_trc_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fb_trc_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fp_add_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fp_add_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fp_inv_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fp_inv_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fp_mul_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fp_mul_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fp_rdc_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fp_rdc_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/easy/relic_fp_sqr_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/easy/relic_fp_sqr_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/fiat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/fiat/CMakeLists.txt -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_bn_add_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_bn_add_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_bn_div_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_bn_div_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_bn_mod_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_bn_mod_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_bn_mul_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_bn_mul_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_bn_sqr_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_bn_sqr_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_fb_add_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_fb_add_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_fp_add_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_fp_add_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_fp_inv_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_fp_inv_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_fp_mul_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_fp_mul_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/gmp/relic_fp_rdc_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/gmp/relic_fp_rdc_low.c -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-446/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-446/macro.s -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-455/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-455/macro.s -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-4l/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-4l/macro.s -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-544/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-544/macro.s -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-638/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-638/macro.s -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-6l/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-6l/macro.s -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-8l/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-8l/macro.s -------------------------------------------------------------------------------- /depends/relic/src/low/x64-asm-9l/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/low/x64-asm-9l/macro.s -------------------------------------------------------------------------------- /depends/relic/src/md/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/blake2-impl.h -------------------------------------------------------------------------------- /depends/relic/src/md/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/blake2.h -------------------------------------------------------------------------------- /depends/relic/src/md/blake2_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/blake2_COPYING -------------------------------------------------------------------------------- /depends/relic/src/md/blake2s-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/blake2s-ref.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_blake2s.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_hmac.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_kdf.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_mgf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_mgf.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_sha224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_sha224.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_sha256.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_sha384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_sha384.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_sha512.c -------------------------------------------------------------------------------- /depends/relic/src/md/relic_md_xmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/relic_md_xmd.c -------------------------------------------------------------------------------- /depends/relic/src/md/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/sha.h -------------------------------------------------------------------------------- /depends/relic/src/md/sha224-256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/sha224-256.c -------------------------------------------------------------------------------- /depends/relic/src/md/sha384-512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/sha384-512.c -------------------------------------------------------------------------------- /depends/relic/src/md/sha_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/md/sha_private.h -------------------------------------------------------------------------------- /depends/relic/src/mpc/relic_mt_mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/mpc/relic_mt_mpc.c -------------------------------------------------------------------------------- /depends/relic/src/mpc/relic_pc_mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/mpc/relic_pc_mpc.c -------------------------------------------------------------------------------- /depends/relic/src/pc/relic_pc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pc/relic_pc_core.c -------------------------------------------------------------------------------- /depends/relic/src/pc/relic_pc_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pc/relic_pc_exp.c -------------------------------------------------------------------------------- /depends/relic/src/pc/relic_pc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pc/relic_pc_util.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_add_k12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_add_k12.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_add_k2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_add_k2.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_add_k24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_add_k24.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_add_k48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_add_k48.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_add_k54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_add_k54.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_add_k8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_add_k8.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_dbl_k12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_dbl_k12.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_dbl_k2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_dbl_k2.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_dbl_k24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_dbl_k24.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_dbl_k48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_dbl_k48.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_dbl_k54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_dbl_k54.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_dbl_k8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_dbl_k8.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_exp_k12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_exp_k12.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_exp_k2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_exp_k2.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_exp_k24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_exp_k24.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_exp_k48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_exp_k48.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_exp_k54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_exp_k54.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_exp_k8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_exp_k8.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_map.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_map_k12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_map_k12.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_map_k2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_map_k2.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_map_k24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_map_k24.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_map_k48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_map_k48.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_map_k54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_map_k54.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_map_k8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_map_k8.c -------------------------------------------------------------------------------- /depends/relic/src/pp/relic_pp_norm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/pp/relic_pp_norm.c -------------------------------------------------------------------------------- /depends/relic/src/rand/relic_rand_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/rand/relic_rand_call.c -------------------------------------------------------------------------------- /depends/relic/src/rand/relic_rand_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/rand/relic_rand_core.c -------------------------------------------------------------------------------- /depends/relic/src/rand/relic_rand_hashd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/rand/relic_rand_hashd.c -------------------------------------------------------------------------------- /depends/relic/src/rand/relic_rand_rdrnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/rand/relic_rand_rdrnd.c -------------------------------------------------------------------------------- /depends/relic/src/rand/relic_rand_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/rand/relic_rand_udev.c -------------------------------------------------------------------------------- /depends/relic/src/relic_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/relic_bench.c -------------------------------------------------------------------------------- /depends/relic/src/relic_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/relic_conf.c -------------------------------------------------------------------------------- /depends/relic/src/relic_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/relic_core.c -------------------------------------------------------------------------------- /depends/relic/src/relic_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/relic_err.c -------------------------------------------------------------------------------- /depends/relic/src/relic_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/relic_test.c -------------------------------------------------------------------------------- /depends/relic/src/relic_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/relic_util.c -------------------------------------------------------------------------------- /depends/relic/src/tmpl/relic_tmpl_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/src/tmpl/relic_tmpl_map.h -------------------------------------------------------------------------------- /depends/relic/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/CMakeLists.txt -------------------------------------------------------------------------------- /depends/relic/test/test_bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_bn.c -------------------------------------------------------------------------------- /depends/relic/test/test_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_core.c -------------------------------------------------------------------------------- /depends/relic/test/test_cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_cp.c -------------------------------------------------------------------------------- /depends/relic/test/test_dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_dv.c -------------------------------------------------------------------------------- /depends/relic/test/test_eb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_eb.c -------------------------------------------------------------------------------- /depends/relic/test/test_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_ec.c -------------------------------------------------------------------------------- /depends/relic/test/test_ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_ed.c -------------------------------------------------------------------------------- /depends/relic/test/test_ep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_ep.c -------------------------------------------------------------------------------- /depends/relic/test/test_epx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_epx.c -------------------------------------------------------------------------------- /depends/relic/test/test_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_err.c -------------------------------------------------------------------------------- /depends/relic/test/test_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_fb.c -------------------------------------------------------------------------------- /depends/relic/test/test_fbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_fbx.c -------------------------------------------------------------------------------- /depends/relic/test/test_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_fp.c -------------------------------------------------------------------------------- /depends/relic/test/test_fpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_fpx.c -------------------------------------------------------------------------------- /depends/relic/test/test_md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_md.c -------------------------------------------------------------------------------- /depends/relic/test/test_mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_mpc.c -------------------------------------------------------------------------------- /depends/relic/test/test_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_pc.c -------------------------------------------------------------------------------- /depends/relic/test/test_pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_pp.c -------------------------------------------------------------------------------- /depends/relic/test/test_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/test/test_rand.c -------------------------------------------------------------------------------- /depends/relic/tools/git-creation-date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/tools/git-creation-date.sh -------------------------------------------------------------------------------- /depends/relic/tools/relic_gen_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/depends/relic/tools/relic_gen_label.sh -------------------------------------------------------------------------------- /emsdk_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/emsdk_build.sh -------------------------------------------------------------------------------- /go-bindings/.gitignore: -------------------------------------------------------------------------------- 1 | !Makefile 2 | -------------------------------------------------------------------------------- /go-bindings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/Makefile -------------------------------------------------------------------------------- /go-bindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/README.md -------------------------------------------------------------------------------- /go-bindings/blschia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/blschia.cpp -------------------------------------------------------------------------------- /go-bindings/blschia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/blschia.h -------------------------------------------------------------------------------- /go-bindings/elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/elements.cpp -------------------------------------------------------------------------------- /go-bindings/elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/elements.go -------------------------------------------------------------------------------- /go-bindings/elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/elements.h -------------------------------------------------------------------------------- /go-bindings/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/error.go -------------------------------------------------------------------------------- /go-bindings/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/error.h -------------------------------------------------------------------------------- /go-bindings/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/go.mod -------------------------------------------------------------------------------- /go-bindings/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/go.sum -------------------------------------------------------------------------------- /go-bindings/privatekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/privatekey.cpp -------------------------------------------------------------------------------- /go-bindings/privatekey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/privatekey.go -------------------------------------------------------------------------------- /go-bindings/privatekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/privatekey.h -------------------------------------------------------------------------------- /go-bindings/schemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/schemes.cpp -------------------------------------------------------------------------------- /go-bindings/schemes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/schemes.go -------------------------------------------------------------------------------- /go-bindings/schemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/schemes.h -------------------------------------------------------------------------------- /go-bindings/schemes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/schemes_test.go -------------------------------------------------------------------------------- /go-bindings/threshold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/threshold.cpp -------------------------------------------------------------------------------- /go-bindings/threshold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/threshold.go -------------------------------------------------------------------------------- /go-bindings/threshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/threshold.h -------------------------------------------------------------------------------- /go-bindings/threshold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/threshold_test.go -------------------------------------------------------------------------------- /go-bindings/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/util.go -------------------------------------------------------------------------------- /go-bindings/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/util_test.go -------------------------------------------------------------------------------- /go-bindings/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/utils.cpp -------------------------------------------------------------------------------- /go-bindings/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/go-bindings/utils.hpp -------------------------------------------------------------------------------- /include/dashbls/bls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/bls.hpp -------------------------------------------------------------------------------- /include/dashbls/chaincode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/chaincode.hpp -------------------------------------------------------------------------------- /include/dashbls/elements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/elements.hpp -------------------------------------------------------------------------------- /include/dashbls/extendedprivatekey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/extendedprivatekey.hpp -------------------------------------------------------------------------------- /include/dashbls/extendedpublickey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/extendedpublickey.hpp -------------------------------------------------------------------------------- /include/dashbls/hdkeys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/hdkeys.hpp -------------------------------------------------------------------------------- /include/dashbls/hkdf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/hkdf.hpp -------------------------------------------------------------------------------- /include/dashbls/legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/legacy.hpp -------------------------------------------------------------------------------- /include/dashbls/privatekey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/privatekey.hpp -------------------------------------------------------------------------------- /include/dashbls/schemes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/schemes.hpp -------------------------------------------------------------------------------- /include/dashbls/test-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/test-utils.hpp -------------------------------------------------------------------------------- /include/dashbls/threshold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/threshold.hpp -------------------------------------------------------------------------------- /include/dashbls/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/include/dashbls/util.hpp -------------------------------------------------------------------------------- /js-bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/CMakeLists.txt -------------------------------------------------------------------------------- /js-bindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/README.md -------------------------------------------------------------------------------- /js-bindings/blsjs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/blsjs.d.ts -------------------------------------------------------------------------------- /js-bindings/bundle_wasm_for_web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/bundle_wasm_for_web.js -------------------------------------------------------------------------------- /js-bindings/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/helpers.cpp -------------------------------------------------------------------------------- /js-bindings/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/helpers.h -------------------------------------------------------------------------------- /js-bindings/jsbindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/jsbindings.cpp -------------------------------------------------------------------------------- /js-bindings/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/package-lock.json -------------------------------------------------------------------------------- /js-bindings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/package.json -------------------------------------------------------------------------------- /js-bindings/tests/PrivateKey.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/PrivateKey.spec.js -------------------------------------------------------------------------------- /js-bindings/tests/PublicKey.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/PublicKey.spec.js -------------------------------------------------------------------------------- /js-bindings/tests/Signature.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/Signature.spec.js -------------------------------------------------------------------------------- /js-bindings/tests/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/karma.conf.js -------------------------------------------------------------------------------- /js-bindings/tests/karma.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/karma.test.js -------------------------------------------------------------------------------- /js-bindings/tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/test.js -------------------------------------------------------------------------------- /js-bindings/tests/typings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/typings.spec.ts -------------------------------------------------------------------------------- /js-bindings/tests/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/webpack.config.js -------------------------------------------------------------------------------- /js-bindings/tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/tests/yarn.lock -------------------------------------------------------------------------------- /js-bindings/wrappers/BignumWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/BignumWrapper.cpp -------------------------------------------------------------------------------- /js-bindings/wrappers/BignumWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/BignumWrapper.h -------------------------------------------------------------------------------- /js-bindings/wrappers/G1ElementWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/G1ElementWrapper.cpp -------------------------------------------------------------------------------- /js-bindings/wrappers/G1ElementWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/G1ElementWrapper.h -------------------------------------------------------------------------------- /js-bindings/wrappers/G2ElementWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/G2ElementWrapper.cpp -------------------------------------------------------------------------------- /js-bindings/wrappers/G2ElementWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/G2ElementWrapper.h -------------------------------------------------------------------------------- /js-bindings/wrappers/JSWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/JSWrapper.h -------------------------------------------------------------------------------- /js-bindings/wrappers/PrivateKeyWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/PrivateKeyWrapper.cpp -------------------------------------------------------------------------------- /js-bindings/wrappers/PrivateKeyWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/PrivateKeyWrapper.h -------------------------------------------------------------------------------- /js-bindings/wrappers/SchemeMPLWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/SchemeMPLWrapper.cpp -------------------------------------------------------------------------------- /js-bindings/wrappers/SchemeMPLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/SchemeMPLWrapper.h -------------------------------------------------------------------------------- /js-bindings/wrappers/UtilWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/UtilWrapper.cpp -------------------------------------------------------------------------------- /js-bindings/wrappers/UtilWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js-bindings/wrappers/UtilWrapper.h -------------------------------------------------------------------------------- /js_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js_build.sh -------------------------------------------------------------------------------- /js_build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js_build_docker.sh -------------------------------------------------------------------------------- /js_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/js_test.sh -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/lgtm.yml -------------------------------------------------------------------------------- /mypi.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python-bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-bindings/CMakeLists.txt -------------------------------------------------------------------------------- /python-bindings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-bindings/README.md -------------------------------------------------------------------------------- /python-bindings/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-bindings/benchmark.py -------------------------------------------------------------------------------- /python-bindings/pythonbindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-bindings/pythonbindings.cpp -------------------------------------------------------------------------------- /python-bindings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-bindings/test.py -------------------------------------------------------------------------------- /python-impl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/README.md -------------------------------------------------------------------------------- /python-impl/bls12381.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/bls12381.py -------------------------------------------------------------------------------- /python-impl/ec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/ec.py -------------------------------------------------------------------------------- /python-impl/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/fields.py -------------------------------------------------------------------------------- /python-impl/hash_to_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/hash_to_field.py -------------------------------------------------------------------------------- /python-impl/hd_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/hd_keys.py -------------------------------------------------------------------------------- /python-impl/hkdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/hkdf.py -------------------------------------------------------------------------------- /python-impl/impl-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/impl-test.py -------------------------------------------------------------------------------- /python-impl/op_swu_g2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/op_swu_g2.py -------------------------------------------------------------------------------- /python-impl/pairing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/pairing.py -------------------------------------------------------------------------------- /python-impl/private_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/private_key.py -------------------------------------------------------------------------------- /python-impl/schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/schemes.py -------------------------------------------------------------------------------- /python-impl/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/python-impl/util.py -------------------------------------------------------------------------------- /rust-bindings/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target -------------------------------------------------------------------------------- /rust-bindings/bls-dash-sys/.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-dash-sys/.rustfmt.toml -------------------------------------------------------------------------------- /rust-bindings/bls-dash-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-dash-sys/Cargo.toml -------------------------------------------------------------------------------- /rust-bindings/bls-dash-sys/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-dash-sys/bindings.rs -------------------------------------------------------------------------------- /rust-bindings/bls-dash-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-dash-sys/build.rs -------------------------------------------------------------------------------- /rust-bindings/bls-dash-sys/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-dash-sys/include.h -------------------------------------------------------------------------------- /rust-bindings/bls-dash-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-dash-sys/src/lib.rs -------------------------------------------------------------------------------- /rust-bindings/bls-signatures/.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-signatures/.rustfmt.toml -------------------------------------------------------------------------------- /rust-bindings/bls-signatures/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-signatures/Cargo.toml -------------------------------------------------------------------------------- /rust-bindings/bls-signatures/src/legacy/mod.rs: -------------------------------------------------------------------------------- 1 | mod bip32; 2 | mod elements; 3 | -------------------------------------------------------------------------------- /rust-bindings/bls-signatures/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-signatures/src/lib.rs -------------------------------------------------------------------------------- /rust-bindings/bls-signatures/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/bls-signatures/src/utils.rs -------------------------------------------------------------------------------- /rust-bindings/example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/example/Cargo.toml -------------------------------------------------------------------------------- /rust-bindings/example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/rust-bindings/example/src/main.rs -------------------------------------------------------------------------------- /setjmp_patch.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/setjmp_patch.diff -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/setup.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/bls.cpp -------------------------------------------------------------------------------- /src/chaincode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/chaincode.cpp -------------------------------------------------------------------------------- /src/elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/elements.cpp -------------------------------------------------------------------------------- /src/extendedprivatekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/extendedprivatekey.cpp -------------------------------------------------------------------------------- /src/extendedpublickey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/extendedpublickey.cpp -------------------------------------------------------------------------------- /src/legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/legacy.cpp -------------------------------------------------------------------------------- /src/privatekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/privatekey.cpp -------------------------------------------------------------------------------- /src/schemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/schemes.cpp -------------------------------------------------------------------------------- /src/test-bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/test-bench.cpp -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/test.cpp -------------------------------------------------------------------------------- /src/threshold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashpay/bls-signatures/HEAD/src/threshold.cpp --------------------------------------------------------------------------------