charm-crypto-framework 0.60__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- charm_crypto_framework-0.60/CHANGELOG +100 -0
- charm_crypto_framework-0.60/INSTALL +349 -0
- charm_crypto_framework-0.60/LICENSE.txt +165 -0
- charm_crypto_framework-0.60/MANIFEST.in +12 -0
- charm_crypto_framework-0.60/Makefile +206 -0
- charm_crypto_framework-0.60/PKG-INFO +329 -0
- charm_crypto_framework-0.60/README.md +281 -0
- charm_crypto_framework-0.60/VERSION +1 -0
- charm_crypto_framework-0.60/charm/__init__.py +5 -0
- charm_crypto_framework-0.60/charm/adapters/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/adapters/abenc_adapt_hybrid.py +90 -0
- charm_crypto_framework-0.60/charm/adapters/dabenc_adapt_hybrid.py +145 -0
- charm_crypto_framework-0.60/charm/adapters/ibenc_adapt_hybrid.py +72 -0
- charm_crypto_framework-0.60/charm/adapters/ibenc_adapt_identityhash.py +80 -0
- charm_crypto_framework-0.60/charm/adapters/kpabenc_adapt_hybrid.py +91 -0
- charm_crypto_framework-0.60/charm/adapters/pkenc_adapt_bchk05.py +121 -0
- charm_crypto_framework-0.60/charm/adapters/pkenc_adapt_chk04.py +91 -0
- charm_crypto_framework-0.60/charm/adapters/pkenc_adapt_hybrid.py +98 -0
- charm_crypto_framework-0.60/charm/adapters/pksig_adapt_naor01.py +89 -0
- charm_crypto_framework-0.60/charm/config.py +7 -0
- charm_crypto_framework-0.60/charm/core/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/core/benchmark/benchmark_util.c +353 -0
- charm_crypto_framework-0.60/charm/core/benchmark/benchmark_util.h +61 -0
- charm_crypto_framework-0.60/charm/core/benchmark/benchmarkmodule.c +476 -0
- charm_crypto_framework-0.60/charm/core/benchmark/benchmarkmodule.h +162 -0
- charm_crypto_framework-0.60/charm/core/crypto/AES/AES.c +1464 -0
- charm_crypto_framework-0.60/charm/core/crypto/DES/DES.c +113 -0
- charm_crypto_framework-0.60/charm/core/crypto/DES3/DES3.c +26 -0
- charm_crypto_framework-0.60/charm/core/crypto/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/XOR.c +80 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/_counter.c +496 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/_counter.h +54 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/block_template.c +900 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/block_template.h +69 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/cryptobasemodule.c +220 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt.h +90 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_argchk.h +44 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_cfg.h +186 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_cipher.h +941 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_custom.h +556 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_des.c +1912 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_hash.h +407 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_mac.h +496 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_macros.h +435 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_math.h +534 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_misc.h +103 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_pk.h +653 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_pkcs.h +90 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/libtom/tomcrypt_prng.h +199 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/stream_template.c +271 -0
- charm_crypto_framework-0.60/charm/core/crypto/cryptobase/strxor.c +229 -0
- charm_crypto_framework-0.60/charm/core/engine/__init__.py +5 -0
- charm_crypto_framework-0.60/charm/core/engine/protocol.py +293 -0
- charm_crypto_framework-0.60/charm/core/engine/util.py +174 -0
- charm_crypto_framework-0.60/charm/core/math/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/core/math/elliptic_curve/ecmodule.c +1951 -0
- charm_crypto_framework-0.60/charm/core/math/elliptic_curve/ecmodule.h +230 -0
- charm_crypto_framework-0.60/charm/core/math/elliptic_curve.pyi +63 -0
- charm_crypto_framework-0.60/charm/core/math/integer/integermodule.c +2467 -0
- charm_crypto_framework-0.60/charm/core/math/integer/integermodule.h +145 -0
- charm_crypto_framework-0.60/charm/core/math/integer.pyi +76 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/miracl/miracl_config.h +37 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/miracl/miracl_interface.h +118 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/miracl/miracl_interface2.h +126 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/miracl/pairingmodule2.c +2072 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/miracl/pairingmodule2.h +302 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/pairingmodule.c +2230 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/pairingmodule.h +241 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/relic/pairingmodule3.c +1848 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/relic/pairingmodule3.h +228 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/relic/relic_interface.c +1337 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/relic/relic_interface.h +217 -0
- charm_crypto_framework-0.60/charm/core/math/pairing/relic/test_relic.c +171 -0
- charm_crypto_framework-0.60/charm/core/math/pairing.pyi +69 -0
- charm_crypto_framework-0.60/charm/core/utilities/base64.c +248 -0
- charm_crypto_framework-0.60/charm/core/utilities/base64.h +15 -0
- charm_crypto_framework-0.60/charm/schemes/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_accountability_jyjxgd20.py +647 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_bsw07.py +146 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_ca_cpabe_ar17.py +684 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_dacmacs_yj14.py +298 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_lsw08.py +159 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_maabe_rw15.py +236 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_maabe_yj14.py +297 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_tbpre_lww14.py +309 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_unmcpabe_yahk14.py +223 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_waters09.py +144 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_yct14.py +208 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/abenc_yllc15.py +178 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/ac17.py +248 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/bsw07.py +141 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/cgw15.py +277 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/dabe_aw11.py +204 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/dfa_fe12.py +144 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/pk_hve08.py +179 -0
- charm_crypto_framework-0.60/charm/schemes/abenc/waters11.py +143 -0
- charm_crypto_framework-0.60/charm/schemes/aggrsign_MuSig.py +150 -0
- charm_crypto_framework-0.60/charm/schemes/aggrsign_bls.py +267 -0
- charm_crypto_framework-0.60/charm/schemes/blindsig_ps16.py +654 -0
- charm_crypto_framework-0.60/charm/schemes/chamhash_adm05.py +113 -0
- charm_crypto_framework-0.60/charm/schemes/chamhash_rsa_hw09.py +72 -0
- charm_crypto_framework-0.60/charm/schemes/commit/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/commit/commit_gs08.py +77 -0
- charm_crypto_framework-0.60/charm/schemes/commit/commit_pedersen92.py +53 -0
- charm_crypto_framework-0.60/charm/schemes/encap_bchk05.py +62 -0
- charm_crypto_framework-0.60/charm/schemes/grpsig/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/grpsig/groupsig_bgls04.py +114 -0
- charm_crypto_framework-0.60/charm/schemes/grpsig/groupsig_bgls04_var.py +115 -0
- charm_crypto_framework-0.60/charm/schemes/hibenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/hibenc/hibenc_bb04.py +105 -0
- charm_crypto_framework-0.60/charm/schemes/hibenc/hibenc_lew11.py +193 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/clpkc_rp03.py +119 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_CW13_z.py +168 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_bb03.py +94 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_bf01.py +121 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_ckrs09.py +120 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_cllww12_z.py +172 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_lsw08.py +120 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_sw05.py +238 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_waters05.py +144 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_waters05_z.py +164 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_waters09.py +107 -0
- charm_crypto_framework-0.60/charm/schemes/ibenc/ibenc_waters09_z.py +147 -0
- charm_crypto_framework-0.60/charm/schemes/joye_scheme.py +106 -0
- charm_crypto_framework-0.60/charm/schemes/lem_scheme.py +207 -0
- charm_crypto_framework-0.60/charm/schemes/pk_fre_ccv11.py +107 -0
- charm_crypto_framework-0.60/charm/schemes/pk_vrf.py +127 -0
- charm_crypto_framework-0.60/charm/schemes/pkenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/pkenc/pkenc_cs98.py +108 -0
- charm_crypto_framework-0.60/charm/schemes/pkenc/pkenc_elgamal85.py +122 -0
- charm_crypto_framework-0.60/charm/schemes/pkenc/pkenc_gm82.py +98 -0
- charm_crypto_framework-0.60/charm/schemes/pkenc/pkenc_paillier99.py +118 -0
- charm_crypto_framework-0.60/charm/schemes/pkenc/pkenc_rabin.py +253 -0
- charm_crypto_framework-0.60/charm/schemes/pkenc/pkenc_rsa.py +158 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_CW13_z.py +135 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_bls04.py +87 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_boyen.py +156 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_chch.py +97 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_chp.py +70 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_cl03.py +150 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_cl04.py +87 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_cllww12_z.py +142 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_cyh.py +132 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_dsa.py +76 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_ecdsa.py +71 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_hess.py +104 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_hw.py +110 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_lamport.py +63 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_ps01.py +135 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_ps02.py +124 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_ps03.py +119 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_rsa_hw09.py +206 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_schnorr91.py +77 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_waters.py +115 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_waters05.py +121 -0
- charm_crypto_framework-0.60/charm/schemes/pksig/pksig_waters09.py +121 -0
- charm_crypto_framework-0.60/charm/schemes/pre_mg07.py +150 -0
- charm_crypto_framework-0.60/charm/schemes/prenc/pre_afgh06.py +126 -0
- charm_crypto_framework-0.60/charm/schemes/prenc/pre_bbs98.py +123 -0
- charm_crypto_framework-0.60/charm/schemes/prenc/pre_nal16.py +216 -0
- charm_crypto_framework-0.60/charm/schemes/protocol_a01.py +272 -0
- charm_crypto_framework-0.60/charm/schemes/protocol_ao00.py +215 -0
- charm_crypto_framework-0.60/charm/schemes/protocol_cns07.py +274 -0
- charm_crypto_framework-0.60/charm/schemes/protocol_schnorr91.py +125 -0
- charm_crypto_framework-0.60/charm/schemes/sigma1.py +64 -0
- charm_crypto_framework-0.60/charm/schemes/sigma2.py +129 -0
- charm_crypto_framework-0.60/charm/schemes/sigma3.py +126 -0
- charm_crypto_framework-0.60/charm/schemes/threshold/__init__.py +59 -0
- charm_crypto_framework-0.60/charm/schemes/threshold/dkls23_dkg.py +556 -0
- charm_crypto_framework-0.60/charm/schemes/threshold/dkls23_presign.py +1089 -0
- charm_crypto_framework-0.60/charm/schemes/threshold/dkls23_sign.py +761 -0
- charm_crypto_framework-0.60/charm/schemes/threshold/xrpl_wallet.py +967 -0
- charm_crypto_framework-0.60/charm/test/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/adapters/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/adapters/abenc_adapt_hybrid_test.py +29 -0
- charm_crypto_framework-0.60/charm/test/adapters/dabenc_adapt_hybrid_test.py +56 -0
- charm_crypto_framework-0.60/charm/test/adapters/ibenc_adapt_hybrid_test.py +36 -0
- charm_crypto_framework-0.60/charm/test/adapters/ibenc_adapt_identityhash_test.py +32 -0
- charm_crypto_framework-0.60/charm/test/adapters/kpabenc_adapt_hybrid_test.py +30 -0
- charm_crypto_framework-0.60/charm/test/benchmark/abenc_yllc15_bench.py +92 -0
- charm_crypto_framework-0.60/charm/test/benchmark/benchmark_test.py +148 -0
- charm_crypto_framework-0.60/charm/test/benchmark_threshold.py +260 -0
- charm_crypto_framework-0.60/charm/test/fuzz/__init__.py +1 -0
- charm_crypto_framework-0.60/charm/test/fuzz/conftest.py +5 -0
- charm_crypto_framework-0.60/charm/test/fuzz/fuzz_policy_parser.py +76 -0
- charm_crypto_framework-0.60/charm/test/fuzz/fuzz_serialization.py +83 -0
- charm_crypto_framework-0.60/charm/test/schemes/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/abenc_bsw07_test.py +39 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/abenc_dacmacs_yj14_test.py +16 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/abenc_lsw08_test.py +33 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/abenc_maabe_yj14_test.py +16 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/abenc_tbpre_lww14_test.py +16 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/abenc_waters09_test.py +38 -0
- charm_crypto_framework-0.60/charm/test/schemes/abenc/abenc_yllc15_test.py +74 -0
- charm_crypto_framework-0.60/charm/test/schemes/chamhash_adm05_test.py +31 -0
- charm_crypto_framework-0.60/charm/test/schemes/chamhash_rsa_hw09_test.py +29 -0
- charm_crypto_framework-0.60/charm/test/schemes/commit/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/commit/commit_gs08_test.py +24 -0
- charm_crypto_framework-0.60/charm/test/schemes/commit/commit_pedersen92_test.py +26 -0
- charm_crypto_framework-0.60/charm/test/schemes/dabe_aw11_test.py +45 -0
- charm_crypto_framework-0.60/charm/test/schemes/encap_bchk05_test.py +21 -0
- charm_crypto_framework-0.60/charm/test/schemes/grpsig/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/grpsig/groupsig_bgls04_test.py +35 -0
- charm_crypto_framework-0.60/charm/test/schemes/grpsig/groupsig_bgls04_var_test.py +39 -0
- charm_crypto_framework-0.60/charm/test/schemes/hibenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/hibenc/hibenc_bb04_test.py +28 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/ibenc_bb03_test.py +26 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/ibenc_bf01_test.py +24 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/ibenc_ckrs09_test.py +25 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/ibenc_lsw08_test.py +31 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/ibenc_sw05_test.py +32 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/ibenc_waters05_test.py +31 -0
- charm_crypto_framework-0.60/charm/test/schemes/ibenc/ibenc_waters09_test.py +27 -0
- charm_crypto_framework-0.60/charm/test/schemes/pk_vrf_test.py +29 -0
- charm_crypto_framework-0.60/charm/test/schemes/pkenc/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/pkenc_test.py +254 -0
- charm_crypto_framework-0.60/charm/test/schemes/pksig/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/schemes/pksig_test.py +376 -0
- charm_crypto_framework-0.60/charm/test/schemes/rsa_alg_test.py +340 -0
- charm_crypto_framework-0.60/charm/test/schemes/threshold_test.py +1792 -0
- charm_crypto_framework-0.60/charm/test/serialize/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/serialize/serialize_test.py +40 -0
- charm_crypto_framework-0.60/charm/test/toolbox/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/test/toolbox/conversion_test.py +30 -0
- charm_crypto_framework-0.60/charm/test/toolbox/ecgroup_test.py +53 -0
- charm_crypto_framework-0.60/charm/test/toolbox/paddingschemes_test.py +238 -0
- charm_crypto_framework-0.60/charm/test/toolbox/policy_parser_stress_test.py +969 -0
- charm_crypto_framework-0.60/charm/test/toolbox/secretshare_test.py +28 -0
- charm_crypto_framework-0.60/charm/test/toolbox/symcrypto_test.py +108 -0
- charm_crypto_framework-0.60/charm/test/toolbox/test_policy_expression.py +16 -0
- charm_crypto_framework-0.60/charm/test/vectors/__init__.py +1 -0
- charm_crypto_framework-0.60/charm/test/vectors/test_bls_vectors.py +289 -0
- charm_crypto_framework-0.60/charm/test/vectors/test_pedersen_vectors.py +315 -0
- charm_crypto_framework-0.60/charm/test/vectors/test_schnorr_vectors.py +368 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/__init__.py +9 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/benchmark_zkp.py +258 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_and_proof.py +240 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_batch_verify.py +248 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_dleq_proof.py +264 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_or_proof.py +231 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_proof_serialization.py +121 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_range_proof.py +241 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_representation_proof.py +325 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_schnorr_proof.py +221 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_thread_safety.py +169 -0
- charm_crypto_framework-0.60/charm/test/zkp_compiler/test_zkp_parser.py +139 -0
- charm_crypto_framework-0.60/charm/toolbox/ABEnc.py +26 -0
- charm_crypto_framework-0.60/charm/toolbox/ABEncMultiAuth.py +66 -0
- charm_crypto_framework-0.60/charm/toolbox/ABEnumeric.py +800 -0
- charm_crypto_framework-0.60/charm/toolbox/Commit.py +24 -0
- charm_crypto_framework-0.60/charm/toolbox/DFA.py +89 -0
- charm_crypto_framework-0.60/charm/toolbox/FSA.py +1254 -0
- charm_crypto_framework-0.60/charm/toolbox/Hash.py +39 -0
- charm_crypto_framework-0.60/charm/toolbox/IBEnc.py +62 -0
- charm_crypto_framework-0.60/charm/toolbox/IBSig.py +64 -0
- charm_crypto_framework-0.60/charm/toolbox/PKEnc.py +66 -0
- charm_crypto_framework-0.60/charm/toolbox/PKSig.py +56 -0
- charm_crypto_framework-0.60/charm/toolbox/PREnc.py +32 -0
- charm_crypto_framework-0.60/charm/toolbox/ZKProof.py +289 -0
- charm_crypto_framework-0.60/charm/toolbox/__init__.py +0 -0
- charm_crypto_framework-0.60/charm/toolbox/bitstring.py +49 -0
- charm_crypto_framework-0.60/charm/toolbox/broadcast.py +220 -0
- charm_crypto_framework-0.60/charm/toolbox/conversion.py +100 -0
- charm_crypto_framework-0.60/charm/toolbox/eccurve.py +149 -0
- charm_crypto_framework-0.60/charm/toolbox/ecgroup.py +144 -0
- charm_crypto_framework-0.60/charm/toolbox/enum.py +60 -0
- charm_crypto_framework-0.60/charm/toolbox/hash_module.py +91 -0
- charm_crypto_framework-0.60/charm/toolbox/integergroup.py +296 -0
- charm_crypto_framework-0.60/charm/toolbox/iterate.py +22 -0
- charm_crypto_framework-0.60/charm/toolbox/matrixops.py +76 -0
- charm_crypto_framework-0.60/charm/toolbox/mpc_utils.py +296 -0
- charm_crypto_framework-0.60/charm/toolbox/msp.py +175 -0
- charm_crypto_framework-0.60/charm/toolbox/mta.py +985 -0
- charm_crypto_framework-0.60/charm/toolbox/node.py +120 -0
- charm_crypto_framework-0.60/charm/toolbox/ot/__init__.py +22 -0
- charm_crypto_framework-0.60/charm/toolbox/ot/base_ot.py +374 -0
- charm_crypto_framework-0.60/charm/toolbox/ot/dpf.py +642 -0
- charm_crypto_framework-0.60/charm/toolbox/ot/mpfss.py +228 -0
- charm_crypto_framework-0.60/charm/toolbox/ot/ot_extension.py +589 -0
- charm_crypto_framework-0.60/charm/toolbox/ot/silent_ot.py +378 -0
- charm_crypto_framework-0.60/charm/toolbox/paddingschemes.py +423 -0
- charm_crypto_framework-0.60/charm/toolbox/paddingschemes_test.py +238 -0
- charm_crypto_framework-0.60/charm/toolbox/pairingcurves.py +85 -0
- charm_crypto_framework-0.60/charm/toolbox/pairinggroup.py +187 -0
- charm_crypto_framework-0.60/charm/toolbox/policy_expression_spec.py +70 -0
- charm_crypto_framework-0.60/charm/toolbox/policytree.py +173 -0
- charm_crypto_framework-0.60/charm/toolbox/reCompiler.py +346 -0
- charm_crypto_framework-0.60/charm/toolbox/redundancyschemes.py +65 -0
- charm_crypto_framework-0.60/charm/toolbox/schemebase.py +188 -0
- charm_crypto_framework-0.60/charm/toolbox/secretshare.py +104 -0
- charm_crypto_framework-0.60/charm/toolbox/secretutil.py +174 -0
- charm_crypto_framework-0.60/charm/toolbox/securerandom.py +73 -0
- charm_crypto_framework-0.60/charm/toolbox/sigmaprotocol.py +46 -0
- charm_crypto_framework-0.60/charm/toolbox/specialprimes.py +32 -0
- charm_crypto_framework-0.60/charm/toolbox/symcrypto.py +279 -0
- charm_crypto_framework-0.60/charm/toolbox/threshold_sharing.py +553 -0
- charm_crypto_framework-0.60/charm/toolbox/xmlserialize.py +94 -0
- charm_crypto_framework-0.60/charm/toolbox/zknode.py +105 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/__init__.py +89 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/and_proof.py +460 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/batch_verify.py +324 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/dleq_proof.py +423 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/or_proof.py +305 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/range_proof.py +417 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/representation_proof.py +466 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/schnorr_proof.py +273 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/thread_safe.py +150 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/zk_demo.py +489 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/zkp_factory.py +330 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/zkp_generator.py +370 -0
- charm_crypto_framework-0.60/charm/zkp_compiler/zkparser.py +269 -0
- charm_crypto_framework-0.60/charm_crypto_framework.egg-info/SOURCES.txt +1452 -0
- charm_crypto_framework-0.60/config.dist.py +7 -0
- charm_crypto_framework-0.60/configure.sh +1001 -0
- charm_crypto_framework-0.60/doc/Makefile +161 -0
- charm_crypto_framework-0.60/doc/autoschemes.py +148 -0
- charm_crypto_framework-0.60/doc/build/charm/.buildinfo +4 -0
- charm_crypto_framework-0.60/doc/build/charm/.nojekyll +0 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ABEnc.html +484 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ABEncMultiAuth.html +527 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/Commit.html +479 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/DFA.html +550 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/FSA.html +1931 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/Hash.html +500 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/IBEnc.html +535 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/IBSig.html +537 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/PKEnc.html +539 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/PKSig.html +526 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/PREnc.html +496 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ZKProof.html +771 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_accountability_jyjxgd20.html +1166 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_adapt_hybrid.html +546 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_bsw07.html +590 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_ca_cpabe_ar17.html +1200 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_dacmacs_yj14.html +778 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_lsw08.html +618 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_maabe_rw15.html +701 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_maabe_yj14.html +774 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_tbpre_lww14.html +792 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_unmcpabe_yahk14.html +685 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_waters09.html +600 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_yct14.html +667 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/abenc_yllc15.html +619 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ac17.html +701 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/aggrsign_MuSig.html +627 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/aggrsign_bls.html +756 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/bitstring.html +501 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/blindsig_ps16.html +1221 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/broadcast.html +678 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/bsw07.html +594 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/cgw15.html +730 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/chamhash_adm05.html +566 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/chamhash_adm05_test.html +475 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/chamhash_rsa_hw09.html +519 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/chamhash_rsa_hw09_test.html +467 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/charm/toolbox/ABEnumeric.html +1291 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/conversion.html +556 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/conversion_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/dabe_aw11.html +663 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/dabe_aw11_test.html +483 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/dabenc_adapt_hybrid.html +604 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/dfa_fe12.html +600 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ecgroup.html +642 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ecgroup_test.html +503 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/encap_bchk05.html +512 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/encap_bchk05_test.html +459 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/enum.html +1517 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/hash_module.html +541 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ibenc_adapt_hybrid.html +525 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/ibenc_adapt_identityhash.html +533 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/index.html +473 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/integergroup.html +910 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/iterate.html +471 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/joye_scheme.html +565 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/kpabenc_adapt_hybrid.html +547 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/lem_scheme.html +681 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/matrixops.html +534 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/msp.html +631 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/node.html +587 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/paddingschemes.html +903 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/paddingschemes_test.html +718 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pairinggroup.html +694 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pk_hve08.html +635 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pk_vrf.html +583 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pk_vrf_test.html +467 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_adapt_bchk05.html +577 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_adapt_chk04.html +541 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_adapt_hybrid.html +551 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_cs98.html +558 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_elgamal85.html +575 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_gm82.html +554 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_paillier99.html +583 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_rabin.html +724 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_rsa.html +626 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pkenc_test.html +758 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_CW13_z.html +591 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_adapt_naor01.html +539 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_bls04.html +543 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_boyen.html +615 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_chch.html +553 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_chp.html +523 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_cl03.html +612 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_cl04.html +543 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_cllww12_z.html +595 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_cyh.html +591 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_dsa.html +531 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_ecdsa.html +521 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_hess.html +560 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_hw.html +566 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_lamport.html +518 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_ps01.html +594 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_ps02.html +583 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_ps03.html +584 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_rsa_hw09.html +683 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_schnorr91.html +535 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_test.html +904 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_waters.html +571 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_waters05.html +574 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pksig_waters09.html +574 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/policy_expression_spec.html +546 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/policy_parser_stress_test.html +1710 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/policytree.html +658 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/pre_mg07.html +612 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/protocol_a01.html +740 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/protocol_ao00.html +677 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/protocol_cns07.html +745 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/protocol_schnorr91.html +584 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/reCompiler.html +858 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/redundancyschemes.html +524 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/rsa_alg_test.html +787 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/schemebase.html +649 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/secretshare.html +554 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/secretshare_test.html +466 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/secretutil.html +642 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/securerandom.html +541 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/sigma1.html +523 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/sigma2.html +591 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/sigma3.html +585 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/sigmaprotocol.html +510 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/specialprimes.html +473 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/symcrypto.html +738 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/symcrypto_test.html +594 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/test_policy_expression.html +468 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/waters11.html +596 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/xmlserialize.html +535 -0
- charm_crypto_framework-0.60/doc/build/charm/_modules/zknode.html +566 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/adapters.rst.txt +29 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/abenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/dabenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/ibenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/ibenc_adapt_identityhash.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/kpabenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/pkenc_adapt_bchk05.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/pkenc_adapt_chk04.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/pkenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/adapters/pksig_adapt_naor01.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_accountability_jyjxgd20.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_bsw07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_ca_cpabe_ar17.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_dacmacs_yj14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_lsw08.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_maabe_rw15.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_maabe_yj14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_tbpre_lww14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_unmcpabe_yahk14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_waters09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_yct14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/abenc_yllc15.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/ac17.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/bsw07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/cgw15.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/dabe_aw11.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/dfa_fe12.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/pk_hve08.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/abenc/waters11.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/aggrsign_MuSig.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/aggrsign_bls.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/blindsig_ps16.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/chamhash_adm05.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/chamhash_rsa_hw09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/encap_bchk05.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/joye_scheme.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/lem_scheme.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pk_vrf.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pkenc/pkenc_cs98.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pkenc/pkenc_elgamal85.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pkenc/pkenc_gm82.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pkenc/pkenc_paillier99.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pkenc/pkenc_rabin.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pkenc/pkenc_rsa.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_CW13_z.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_bls04.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_boyen.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_chch.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_chp.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_cl03.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_cl04.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_cllww12_z.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_cyh.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_dsa.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_ecdsa.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_hess.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_hw.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_lamport.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_ps01.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_ps02.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_ps03.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_rsa_hw09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_schnorr91.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_waters.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_waters05.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pksig/pksig_waters09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/pre_mg07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/protocol_a01.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/protocol_ao00.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/protocol_cns07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/protocol_schnorr91.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/sigma1.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/sigma2.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/charm/schemes/sigma3.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/cryptographers.rst.txt +272 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/developers.rst.txt +181 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/index.rst.txt +141 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/install_source.rst.txt +490 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/miracl.rst.txt +36 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/mobile.rst.txt +50 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/relic.rst.txt +24 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/sample.rst.txt +23 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/schemes.rst.txt +83 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/chamhash_adm05_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/chamhash_rsa_hw09_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/conversion_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/dabe_aw11_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/ecgroup_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/encap_bchk05_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/paddingschemes_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/pk_vrf_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/pkenc_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/pksig_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/policy_parser_stress_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/rsa_alg_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/secretshare_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/symcrypto_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/test_policy_expression.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test/threshold_test.rst.txt +155 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test_schemes.rst.txt +23 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test_toolbox.rst.txt +21 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/test_vectors.rst.txt +198 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/todo.rst.txt +4 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/ABEnc.rst.txt +144 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/ABEncMultiAuth.rst.txt +148 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/ABEnumeric.rst.txt +145 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/Commit.rst.txt +164 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/DFA.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/FSA.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/Hash.rst.txt +175 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/IBEnc.rst.txt +155 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/IBSig.rst.txt +145 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/PKEnc.rst.txt +159 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/PKSig.rst.txt +156 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/PREnc.rst.txt +152 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/ZKProof.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/bitstring.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/broadcast.rst.txt +74 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/conversion.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/eccurve.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/ecgroup.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/enum.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/hash_module.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/integergroup.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/iterate.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/matrixops.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/mpc_utils.rst.txt +97 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/msp.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/mta.rst.txt +121 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/node.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/paddingschemes.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/pairingcurves.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/pairinggroup.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/policy_expression_spec.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/policytree.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/reCompiler.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/redundancyschemes.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/schemebase.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/secretshare.rst.txt +172 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/secretutil.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/securerandom.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/sigmaprotocol.rst.txt +164 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/specialprimes.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/symcrypto.rst.txt +196 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/threshold_sharing.rst.txt +139 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/xmlserialize.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox/zknode.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/toolbox.rst.txt +62 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/tutorial.rst.txt +219 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/updates.rst.txt +34 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/updates_050.rst.txt +43 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/updates_060.rst.txt +307 -0
- charm_crypto_framework-0.60/doc/build/charm/_sources/zkp_compiler.rst.txt +185 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/base-stemmer.js +476 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/basic.css +914 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/charm_logo.png +0 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/debug.css +69 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/doctools.js +149 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/documentation_options.js +13 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/english-stemmer.js +1066 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/file.png +0 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/language_data.js +192 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/minus.png +0 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/plus.png +0 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/pygments.css +249 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/scripts/furo-extensions.js +0 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/scripts/furo.js +3 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/scripts/furo.js.LICENSE.txt +7 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/scripts/furo.js.map +1 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/searchtools.js +632 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/skeleton.css +296 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/sphinx_highlight.js +154 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/styles/furo-extensions.css +2 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/styles/furo-extensions.css.map +1 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/styles/furo.css +2 -0
- charm_crypto_framework-0.60/doc/build/charm/_static/styles/furo.css.map +1 -0
- charm_crypto_framework-0.60/doc/build/charm/adapters.html +498 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/abenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/dabenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/ibenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/ibenc_adapt_identityhash.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/kpabenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/pkenc_adapt_bchk05.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/pkenc_adapt_chk04.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/pkenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/adapters/pksig_adapt_naor01.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_accountability_jyjxgd20.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_bsw07.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_ca_cpabe_ar17.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_dacmacs_yj14.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_lsw08.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_maabe_rw15.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_maabe_yj14.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_tbpre_lww14.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_unmcpabe_yahk14.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_waters09.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_yct14.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/abenc_yllc15.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/ac17.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/bsw07.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/cgw15.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/dabe_aw11.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/dfa_fe12.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/pk_hve08.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/abenc/waters11.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/aggrsign_MuSig.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/aggrsign_bls.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/blindsig_ps16.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/chamhash_adm05.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/chamhash_rsa_hw09.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/encap_bchk05.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/joye_scheme.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/lem_scheme.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pk_vrf.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pkenc/pkenc_cs98.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pkenc/pkenc_elgamal85.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pkenc/pkenc_gm82.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pkenc/pkenc_paillier99.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pkenc/pkenc_rabin.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pkenc/pkenc_rsa.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_CW13_z.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_bls04.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_boyen.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_chch.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_chp.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_cl03.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_cl04.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_cllww12_z.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_cyh.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_dsa.html +555 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_ecdsa.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_hess.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_hw.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_lamport.html +549 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_ps01.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_ps02.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_ps03.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_rsa_hw09.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_schnorr91.html +560 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_waters.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_waters05.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pksig/pksig_waters09.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/pre_mg07.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/protocol_a01.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/protocol_ao00.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/protocol_cns07.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/protocol_schnorr91.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/sigma1.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/sigma2.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/charm/schemes/sigma3.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/cryptographers.html +741 -0
- charm_crypto_framework-0.60/doc/build/charm/developers.html +627 -0
- charm_crypto_framework-0.60/doc/build/charm/genindex.html +1877 -0
- charm_crypto_framework-0.60/doc/build/charm/index.html +636 -0
- charm_crypto_framework-0.60/doc/build/charm/install_source.html +940 -0
- charm_crypto_framework-0.60/doc/build/charm/miracl.html +502 -0
- charm_crypto_framework-0.60/doc/build/charm/mobile.html +536 -0
- charm_crypto_framework-0.60/doc/build/charm/objects.inv +0 -0
- charm_crypto_framework-0.60/doc/build/charm/py-modindex.html +810 -0
- charm_crypto_framework-0.60/doc/build/charm/relic.html +498 -0
- charm_crypto_framework-0.60/doc/build/charm/schemes.html +546 -0
- charm_crypto_framework-0.60/doc/build/charm/search.html +457 -0
- charm_crypto_framework-0.60/doc/build/charm/searchindex.js +1 -0
- charm_crypto_framework-0.60/doc/build/charm/test/chamhash_adm05_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/chamhash_rsa_hw09_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/conversion_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/dabe_aw11_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/ecgroup_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/encap_bchk05_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/paddingschemes_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/pk_vrf_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/pkenc_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/pksig_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/policy_parser_stress_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/rsa_alg_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/secretshare_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/symcrypto_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/test/test_policy_expression.html +513 -0
- charm_crypto_framework-0.60/doc/build/charm/test/threshold_test.html +641 -0
- charm_crypto_framework-0.60/doc/build/charm/test_schemes.html +489 -0
- charm_crypto_framework-0.60/doc/build/charm/test_toolbox.html +487 -0
- charm_crypto_framework-0.60/doc/build/charm/test_vectors.html +751 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/ABEnc.html +674 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/ABEncMultiAuth.html +710 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/ABEnumeric.html +951 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/Commit.html +692 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/DFA.html +531 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/FSA.html +1235 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/Hash.html +715 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/IBEnc.html +720 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/IBSig.html +708 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/PKEnc.html +723 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/PKSig.html +712 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/PREnc.html +697 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/ZKProof.html +823 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/bitstring.html +515 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/broadcast.html +725 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/conversion.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/eccurve.html +477 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/ecgroup.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/enum.html +556 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/hash_module.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/integergroup.html +864 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/iterate.html +504 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/matrixops.html +533 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/mpc_utils.html +582 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/msp.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/mta.html +610 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/node.html +543 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/paddingschemes.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/pairingcurves.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/pairinggroup.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/policy_expression_spec.html +570 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/policytree.html +584 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/reCompiler.html +665 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/redundancyschemes.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/schemebase.html +534 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/secretshare.html +661 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/secretutil.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/securerandom.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/sigmaprotocol.html +701 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/specialprimes.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/symcrypto.html +686 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/threshold_sharing.html +622 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/xmlserialize.html +474 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox/zknode.html +563 -0
- charm_crypto_framework-0.60/doc/build/charm/toolbox.html +526 -0
- charm_crypto_framework-0.60/doc/build/charm/tutorial.html +694 -0
- charm_crypto_framework-0.60/doc/build/charm/updates.html +521 -0
- charm_crypto_framework-0.60/doc/build/charm/updates_050.html +516 -0
- charm_crypto_framework-0.60/doc/build/charm/updates_060.html +851 -0
- charm_crypto_framework-0.60/doc/build/charm/zkp_compiler.html +667 -0
- charm_crypto_framework-0.60/doc/build/html/.buildinfo +4 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/adapters.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/abenc_adapt_hybrid.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/dabenc_adapt_hybrid.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/ibenc_adapt_hybrid.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/ibenc_adapt_identityhash.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/kpabenc_adapt_hybrid.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/pkenc_adapt_bchk05.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/pkenc_adapt_chk04.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/pkenc_adapt_hybrid.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/adapters/pksig_adapt_naor01.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_accountability_jyjxgd20.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_bsw07.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_ca_cpabe_ar17.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_dacmacs_yj14.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_lsw08.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_maabe_rw15.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_maabe_yj14.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_tbpre_lww14.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_unmcpabe_yahk14.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_waters09.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_yct14.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/abenc_yllc15.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/ac17.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/bsw07.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/cgw15.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/dabe_aw11.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/dfa_fe12.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/pk_hve08.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/abenc/waters11.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/aggrsign_MuSig.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/aggrsign_bls.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/blindsig_ps16.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/chamhash_adm05.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/chamhash_rsa_hw09.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/encap_bchk05.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/joye_scheme.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/lem_scheme.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pk_vrf.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pkenc/pkenc_cs98.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pkenc/pkenc_elgamal85.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pkenc/pkenc_gm82.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pkenc/pkenc_paillier99.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pkenc/pkenc_rabin.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pkenc/pkenc_rsa.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_CW13_z.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_bls04.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_boyen.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_chch.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_chp.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_cl03.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_cl04.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_cllww12_z.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_cyh.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_dsa.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_ecdsa.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_hess.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_hw.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_lamport.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_ps01.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_ps02.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_ps03.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_rsa_hw09.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_schnorr91.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_waters.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_waters05.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pksig/pksig_waters09.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/pre_mg07.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/protocol_a01.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/protocol_ao00.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/protocol_cns07.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/protocol_schnorr91.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/sigma1.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/sigma2.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/charm/schemes/sigma3.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/cryptographers.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/developers.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/environment.pickle +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/index.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/install_source.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/miracl.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/mobile.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/relic.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/schemes.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/chamhash_adm05_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/chamhash_rsa_hw09_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/conversion_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/dabe_aw11_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/ecgroup_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/encap_bchk05_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/paddingschemes_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/pk_vrf_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/pkenc_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/pksig_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/policy_parser_stress_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/rsa_alg_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/secretshare_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/symcrypto_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/test_policy_expression.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test/threshold_test.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test_schemes.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test_toolbox.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/test_vectors.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/ABEnc.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/ABEncMultiAuth.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/ABEnumeric.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/Commit.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/DFA.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/FSA.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/Hash.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/IBEnc.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/IBSig.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/PKEnc.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/PKSig.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/PREnc.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/ZKProof.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/bitstring.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/broadcast.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/conversion.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/eccurve.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/ecgroup.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/enum.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/hash_module.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/integergroup.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/iterate.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/matrixops.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/mpc_utils.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/msp.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/mta.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/node.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/paddingschemes.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/pairingcurves.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/pairinggroup.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/policy_expression_spec.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/policytree.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/reCompiler.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/redundancyschemes.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/schemebase.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/secretshare.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/secretutil.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/securerandom.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/sigmaprotocol.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/specialprimes.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/symcrypto.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/threshold_sharing.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/xmlserialize.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox/zknode.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/toolbox.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/tutorial.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/updates.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/updates_050.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/updates_060.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/.doctrees/zkp_compiler.doctree +0 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/ABEnc.html +484 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/ABEncMultiAuth.html +527 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/Commit.html +479 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/DFA.html +550 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/FSA.html +1931 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/Hash.html +500 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/IBEnc.html +535 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/IBSig.html +537 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/PKEnc.html +539 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/PKSig.html +526 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/PREnc.html +496 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/ZKProof.html +771 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/bitstring.html +501 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/broadcast.html +678 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/charm/toolbox/ABEnumeric.html +1291 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/enum.html +1517 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/index.html +473 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/integergroup.html +910 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/iterate.html +471 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/matrixops.html +534 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/node.html +587 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/pksig_dsa.html +531 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/pksig_lamport.html +518 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/pksig_schnorr91.html +535 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/policy_expression_spec.html +546 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/policytree.html +658 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/reCompiler.html +858 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/schemebase.html +649 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/sigmaprotocol.html +510 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/test_policy_expression.html +468 -0
- charm_crypto_framework-0.60/doc/build/html/_modules/zknode.html +566 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/adapters.rst.txt +29 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/abenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/dabenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/ibenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/ibenc_adapt_identityhash.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/kpabenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/pkenc_adapt_bchk05.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/pkenc_adapt_chk04.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/pkenc_adapt_hybrid.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/adapters/pksig_adapt_naor01.rst.txt +8 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_accountability_jyjxgd20.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_bsw07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_ca_cpabe_ar17.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_dacmacs_yj14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_lsw08.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_maabe_rw15.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_maabe_yj14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_tbpre_lww14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_unmcpabe_yahk14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_waters09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_yct14.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/abenc_yllc15.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/ac17.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/bsw07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/cgw15.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/dabe_aw11.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/dfa_fe12.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/pk_hve08.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/abenc/waters11.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/aggrsign_MuSig.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/aggrsign_bls.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/blindsig_ps16.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/chamhash_adm05.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/chamhash_rsa_hw09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/encap_bchk05.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/joye_scheme.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/lem_scheme.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pk_vrf.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pkenc/pkenc_cs98.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pkenc/pkenc_elgamal85.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pkenc/pkenc_gm82.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pkenc/pkenc_paillier99.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pkenc/pkenc_rabin.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pkenc/pkenc_rsa.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_CW13_z.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_bls04.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_boyen.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_chch.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_chp.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_cl03.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_cl04.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_cllww12_z.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_cyh.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_dsa.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_ecdsa.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_hess.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_hw.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_lamport.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_ps01.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_ps02.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_ps03.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_rsa_hw09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_schnorr91.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_waters.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_waters05.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pksig/pksig_waters09.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/pre_mg07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/protocol_a01.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/protocol_ao00.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/protocol_cns07.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/protocol_schnorr91.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/sigma1.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/sigma2.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/charm/schemes/sigma3.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/cryptographers.rst.txt +272 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/developers.rst.txt +181 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/index.rst.txt +141 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/install_source.rst.txt +490 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/miracl.rst.txt +36 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/mobile.rst.txt +50 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/relic.rst.txt +24 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/schemes.rst.txt +83 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/chamhash_adm05_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/chamhash_rsa_hw09_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/conversion_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/dabe_aw11_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/ecgroup_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/encap_bchk05_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/paddingschemes_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/pk_vrf_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/pkenc_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/pksig_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/policy_parser_stress_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/rsa_alg_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/secretshare_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/symcrypto_test.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/test_policy_expression.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test/threshold_test.rst.txt +155 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test_schemes.rst.txt +23 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test_toolbox.rst.txt +21 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/test_vectors.rst.txt +198 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/ABEnc.rst.txt +144 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/ABEncMultiAuth.rst.txt +148 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/ABEnumeric.rst.txt +145 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/Commit.rst.txt +164 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/DFA.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/FSA.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/Hash.rst.txt +175 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/IBEnc.rst.txt +155 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/IBSig.rst.txt +145 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/PKEnc.rst.txt +159 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/PKSig.rst.txt +156 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/PREnc.rst.txt +152 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/ZKProof.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/bitstring.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/broadcast.rst.txt +74 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/conversion.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/eccurve.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/ecgroup.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/enum.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/hash_module.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/integergroup.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/iterate.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/matrixops.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/mpc_utils.rst.txt +97 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/msp.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/mta.rst.txt +121 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/node.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/paddingschemes.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/pairingcurves.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/pairinggroup.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/policy_expression_spec.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/policytree.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/reCompiler.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/redundancyschemes.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/schemebase.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/secretshare.rst.txt +172 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/secretutil.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/securerandom.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/sigmaprotocol.rst.txt +164 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/specialprimes.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/symcrypto.rst.txt +196 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/threshold_sharing.rst.txt +139 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/xmlserialize.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox/zknode.rst.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/toolbox.rst.txt +62 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/tutorial.rst.txt +219 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/updates.rst.txt +34 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/updates_050.rst.txt +43 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/updates_060.rst.txt +307 -0
- charm_crypto_framework-0.60/doc/build/html/_sources/zkp_compiler.rst.txt +185 -0
- charm_crypto_framework-0.60/doc/build/html/_static/basic.css +914 -0
- charm_crypto_framework-0.60/doc/build/html/_static/charm_logo.png +0 -0
- charm_crypto_framework-0.60/doc/build/html/_static/debug.css +69 -0
- charm_crypto_framework-0.60/doc/build/html/_static/doctools.js +149 -0
- charm_crypto_framework-0.60/doc/build/html/_static/documentation_options.js +13 -0
- charm_crypto_framework-0.60/doc/build/html/_static/file.png +0 -0
- charm_crypto_framework-0.60/doc/build/html/_static/language_data.js +192 -0
- charm_crypto_framework-0.60/doc/build/html/_static/minus.png +0 -0
- charm_crypto_framework-0.60/doc/build/html/_static/plus.png +0 -0
- charm_crypto_framework-0.60/doc/build/html/_static/pygments.css +249 -0
- charm_crypto_framework-0.60/doc/build/html/_static/scripts/furo-extensions.js +0 -0
- charm_crypto_framework-0.60/doc/build/html/_static/scripts/furo.js +3 -0
- charm_crypto_framework-0.60/doc/build/html/_static/scripts/furo.js.LICENSE.txt +7 -0
- charm_crypto_framework-0.60/doc/build/html/_static/scripts/furo.js.map +1 -0
- charm_crypto_framework-0.60/doc/build/html/_static/searchtools.js +632 -0
- charm_crypto_framework-0.60/doc/build/html/_static/skeleton.css +296 -0
- charm_crypto_framework-0.60/doc/build/html/_static/sphinx_highlight.js +154 -0
- charm_crypto_framework-0.60/doc/build/html/_static/styles/furo-extensions.css +2 -0
- charm_crypto_framework-0.60/doc/build/html/_static/styles/furo-extensions.css.map +1 -0
- charm_crypto_framework-0.60/doc/build/html/_static/styles/furo.css +2 -0
- charm_crypto_framework-0.60/doc/build/html/_static/styles/furo.css.map +1 -0
- charm_crypto_framework-0.60/doc/build/html/adapters.html +498 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/abenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/dabenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/ibenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/ibenc_adapt_identityhash.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/kpabenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/pkenc_adapt_bchk05.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/pkenc_adapt_chk04.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/pkenc_adapt_hybrid.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/adapters/pksig_adapt_naor01.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_accountability_jyjxgd20.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_bsw07.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_ca_cpabe_ar17.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_dacmacs_yj14.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_lsw08.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_maabe_rw15.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_maabe_yj14.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_tbpre_lww14.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_unmcpabe_yahk14.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_waters09.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_yct14.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/abenc_yllc15.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/ac17.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/bsw07.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/cgw15.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/dabe_aw11.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/dfa_fe12.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/pk_hve08.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/abenc/waters11.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/aggrsign_MuSig.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/aggrsign_bls.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/blindsig_ps16.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/chamhash_adm05.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/chamhash_rsa_hw09.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/encap_bchk05.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/joye_scheme.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/lem_scheme.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pk_vrf.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pkenc/pkenc_cs98.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pkenc/pkenc_elgamal85.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pkenc/pkenc_gm82.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pkenc/pkenc_paillier99.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pkenc/pkenc_rabin.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pkenc/pkenc_rsa.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_CW13_z.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_bls04.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_boyen.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_chch.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_chp.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_cl03.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_cl04.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_cllww12_z.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_cyh.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_dsa.html +555 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_ecdsa.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_hess.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_hw.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_lamport.html +549 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_ps01.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_ps02.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_ps03.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_rsa_hw09.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_schnorr91.html +560 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_waters.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_waters05.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pksig/pksig_waters09.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/pre_mg07.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/protocol_a01.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/protocol_ao00.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/protocol_cns07.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/protocol_schnorr91.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/sigma1.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/sigma2.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/charm/schemes/sigma3.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/cryptographers.html +741 -0
- charm_crypto_framework-0.60/doc/build/html/developers.html +627 -0
- charm_crypto_framework-0.60/doc/build/html/genindex.html +1877 -0
- charm_crypto_framework-0.60/doc/build/html/index.html +636 -0
- charm_crypto_framework-0.60/doc/build/html/install_source.html +940 -0
- charm_crypto_framework-0.60/doc/build/html/miracl.html +502 -0
- charm_crypto_framework-0.60/doc/build/html/mobile.html +536 -0
- charm_crypto_framework-0.60/doc/build/html/objects.inv +0 -0
- charm_crypto_framework-0.60/doc/build/html/py-modindex.html +810 -0
- charm_crypto_framework-0.60/doc/build/html/relic.html +498 -0
- charm_crypto_framework-0.60/doc/build/html/schemes.html +546 -0
- charm_crypto_framework-0.60/doc/build/html/search.html +457 -0
- charm_crypto_framework-0.60/doc/build/html/searchindex.js +1 -0
- charm_crypto_framework-0.60/doc/build/html/test/chamhash_adm05_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/chamhash_rsa_hw09_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/conversion_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/dabe_aw11_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/ecgroup_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/encap_bchk05_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/paddingschemes_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/pk_vrf_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/pkenc_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/pksig_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/policy_parser_stress_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/rsa_alg_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/secretshare_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/symcrypto_test.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/test/test_policy_expression.html +513 -0
- charm_crypto_framework-0.60/doc/build/html/test/threshold_test.html +641 -0
- charm_crypto_framework-0.60/doc/build/html/test_schemes.html +489 -0
- charm_crypto_framework-0.60/doc/build/html/test_toolbox.html +487 -0
- charm_crypto_framework-0.60/doc/build/html/test_vectors.html +751 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/ABEnc.html +674 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/ABEncMultiAuth.html +710 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/ABEnumeric.html +951 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/Commit.html +692 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/DFA.html +531 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/FSA.html +1235 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/Hash.html +715 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/IBEnc.html +720 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/IBSig.html +708 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/PKEnc.html +723 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/PKSig.html +712 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/PREnc.html +697 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/ZKProof.html +823 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/bitstring.html +515 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/broadcast.html +725 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/conversion.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/eccurve.html +477 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/ecgroup.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/enum.html +556 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/hash_module.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/integergroup.html +864 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/iterate.html +504 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/matrixops.html +533 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/mpc_utils.html +582 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/msp.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/mta.html +610 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/node.html +543 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/paddingschemes.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/pairingcurves.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/pairinggroup.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/policy_expression_spec.html +570 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/policytree.html +584 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/reCompiler.html +665 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/redundancyschemes.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/schemebase.html +534 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/secretshare.html +661 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/secretutil.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/securerandom.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/sigmaprotocol.html +701 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/specialprimes.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/symcrypto.html +686 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/threshold_sharing.html +622 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/xmlserialize.html +474 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox/zknode.html +563 -0
- charm_crypto_framework-0.60/doc/build/html/toolbox.html +526 -0
- charm_crypto_framework-0.60/doc/build/html/tutorial.html +694 -0
- charm_crypto_framework-0.60/doc/build/html/updates.html +521 -0
- charm_crypto_framework-0.60/doc/build/html/updates_050.html +516 -0
- charm_crypto_framework-0.60/doc/build/html/updates_060.html +851 -0
- charm_crypto_framework-0.60/doc/build/html/zkp_compiler.html +667 -0
- charm_crypto_framework-0.60/doc/config.py +17 -0
- charm_crypto_framework-0.60/doc/source/_static/charm_logo.png +0 -0
- charm_crypto_framework-0.60/doc/source/adapters.rst +29 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/abenc_adapt_hybrid.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/dabenc_adapt_hybrid.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/ibenc_adapt_hybrid.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/ibenc_adapt_identityhash.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/kpabenc_adapt_hybrid.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/pkenc_adapt_bchk05.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/pkenc_adapt_chk04.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/pkenc_adapt_hybrid.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/adapters/pksig_adapt_naor01.rst +8 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_accountability_jyjxgd20.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_bsw07.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_ca_cpabe_ar17.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_dacmacs_yj14.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_lsw08.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_maabe_rw15.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_maabe_yj14.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_tbpre_lww14.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_unmcpabe_yahk14.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_waters09.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_yct14.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/abenc_yllc15.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/ac17.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/bsw07.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/cgw15.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/dabe_aw11.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/dfa_fe12.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/pk_hve08.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/abenc/waters11.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/aggrsign_MuSig.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/aggrsign_bls.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/blindsig_ps16.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/chamhash_adm05.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/chamhash_rsa_hw09.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/encap_bchk05.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/joye_scheme.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/lem_scheme.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pk_vrf.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pkenc/pkenc_cs98.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pkenc/pkenc_elgamal85.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pkenc/pkenc_gm82.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pkenc/pkenc_paillier99.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pkenc/pkenc_rabin.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pkenc/pkenc_rsa.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_CW13_z.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_bls04.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_boyen.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_chch.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_chp.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_cl03.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_cl04.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_cllww12_z.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_cyh.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_dsa.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_ecdsa.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_hess.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_hw.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_lamport.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_ps01.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_ps02.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_ps03.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_rsa_hw09.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_schnorr91.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_waters.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_waters05.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pksig/pksig_waters09.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/pre_mg07.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/protocol_a01.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/protocol_ao00.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/protocol_cns07.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/protocol_schnorr91.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/sigma1.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/sigma2.rst +7 -0
- charm_crypto_framework-0.60/doc/source/charm/schemes/sigma3.rst +7 -0
- charm_crypto_framework-0.60/doc/source/conf.py +261 -0
- charm_crypto_framework-0.60/doc/source/cryptographers.rst +272 -0
- charm_crypto_framework-0.60/doc/source/developers.rst +181 -0
- charm_crypto_framework-0.60/doc/source/index.rst +141 -0
- charm_crypto_framework-0.60/doc/source/install_source.rst +490 -0
- charm_crypto_framework-0.60/doc/source/miracl.rst +36 -0
- charm_crypto_framework-0.60/doc/source/mobile.rst +50 -0
- charm_crypto_framework-0.60/doc/source/relic.rst +24 -0
- charm_crypto_framework-0.60/doc/source/schemes.rst +83 -0
- charm_crypto_framework-0.60/doc/source/test/chamhash_adm05_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/chamhash_rsa_hw09_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/conversion_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/dabe_aw11_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/ecgroup_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/encap_bchk05_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/paddingschemes_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/pk_vrf_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/pkenc_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/pksig_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/policy_parser_stress_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/rsa_alg_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/secretshare_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/symcrypto_test.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/test_policy_expression.rst +7 -0
- charm_crypto_framework-0.60/doc/source/test/threshold_test.rst +155 -0
- charm_crypto_framework-0.60/doc/source/test_schemes.rst +23 -0
- charm_crypto_framework-0.60/doc/source/test_toolbox.rst +21 -0
- charm_crypto_framework-0.60/doc/source/test_vectors.rst +198 -0
- charm_crypto_framework-0.60/doc/source/toolbox/ABEnc.rst +144 -0
- charm_crypto_framework-0.60/doc/source/toolbox/ABEncMultiAuth.rst +148 -0
- charm_crypto_framework-0.60/doc/source/toolbox/ABEnumeric.rst +145 -0
- charm_crypto_framework-0.60/doc/source/toolbox/Commit.rst +164 -0
- charm_crypto_framework-0.60/doc/source/toolbox/DFA.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/FSA.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/Hash.rst +175 -0
- charm_crypto_framework-0.60/doc/source/toolbox/IBEnc.rst +155 -0
- charm_crypto_framework-0.60/doc/source/toolbox/IBSig.rst +145 -0
- charm_crypto_framework-0.60/doc/source/toolbox/PKEnc.rst +159 -0
- charm_crypto_framework-0.60/doc/source/toolbox/PKSig.rst +156 -0
- charm_crypto_framework-0.60/doc/source/toolbox/PREnc.rst +152 -0
- charm_crypto_framework-0.60/doc/source/toolbox/ZKProof.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/bitstring.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/broadcast.rst +74 -0
- charm_crypto_framework-0.60/doc/source/toolbox/conversion.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/eccurve.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/ecgroup.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/enum.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/hash_module.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/integergroup.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/iterate.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/matrixops.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/mpc_utils.rst +97 -0
- charm_crypto_framework-0.60/doc/source/toolbox/msp.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/mta.rst +121 -0
- charm_crypto_framework-0.60/doc/source/toolbox/node.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/paddingschemes.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/pairingcurves.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/pairinggroup.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/policy_expression_spec.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/policytree.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/reCompiler.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/redundancyschemes.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/schemebase.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/secretshare.rst +172 -0
- charm_crypto_framework-0.60/doc/source/toolbox/secretutil.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/securerandom.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/sigmaprotocol.rst +164 -0
- charm_crypto_framework-0.60/doc/source/toolbox/specialprimes.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/symcrypto.rst +196 -0
- charm_crypto_framework-0.60/doc/source/toolbox/threshold_sharing.rst +139 -0
- charm_crypto_framework-0.60/doc/source/toolbox/xmlserialize.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox/zknode.rst +7 -0
- charm_crypto_framework-0.60/doc/source/toolbox.rst +62 -0
- charm_crypto_framework-0.60/doc/source/tutorial.rst +219 -0
- charm_crypto_framework-0.60/doc/source/updates.rst +34 -0
- charm_crypto_framework-0.60/doc/source/updates_050.rst +43 -0
- charm_crypto_framework-0.60/doc/source/updates_060.rst +307 -0
- charm_crypto_framework-0.60/doc/source/zkp_compiler.rst +185 -0
- charm_crypto_framework-0.60/doc/zkp_proof_types_design.md +612 -0
- charm_crypto_framework-0.60/pyproject.toml +143 -0
- charm_crypto_framework-0.60/pytest.ini +8 -0
- charm_crypto_framework-0.60/setup.cfg +7 -0
- charm_crypto_framework-0.60/setup.py +269 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
v0.60 release (Python 3.8+ and OpenSSL 3.x compatibility)
|
|
2
|
+
---------------------------------------------------------
|
|
3
|
+
- Updated to require Python 3.8+ (dropped Python 2.x support)
|
|
4
|
+
- Full OpenSSL 3.x compatibility across all C extension modules
|
|
5
|
+
- Added PY_SSIZE_T_CLEAN macro to all C modules for Python 3.10+ compatibility
|
|
6
|
+
- Fixed PyLongObject internal structure changes for Python 3.12+
|
|
7
|
+
- Modernized CTR counter module (_counter.c) to use Python 3 Bytes API
|
|
8
|
+
- Updated MIRACL pairing module to use EVP API instead of deprecated OpenSSL functions
|
|
9
|
+
- Modern Python packaging with pyproject.toml (PEP 517/518)
|
|
10
|
+
- Added GitHub Actions CI/CD workflow for automated testing
|
|
11
|
+
- Added type stubs (.pyi files) for C extension modules
|
|
12
|
+
- Upgraded to PBC library 1.0.0
|
|
13
|
+
- Fixed segmentation faults in EC and pairing modules
|
|
14
|
+
- Added new cryptographic scheme implementations and documentation
|
|
15
|
+
- Removed deprecated platform.linux_distribution() usage
|
|
16
|
+
- Removed obsolete distribute_setup.py
|
|
17
|
+
- Updated configure.sh to detect Python 3.8-3.12
|
|
18
|
+
- Various bug fixes and improvements
|
|
19
|
+
|
|
20
|
+
v0.50 beta release (major release with many changes)
|
|
21
|
+
-------------------------------------------
|
|
22
|
+
- error handling updates to base modules
|
|
23
|
+
- CL03: length of e is now verified, verifyCommit() and header added
|
|
24
|
+
- SHA1(m_i) for doctest (verifyCommit) added
|
|
25
|
+
- added implementation of private aggregate of time series data by Marc Joye et al.
|
|
26
|
+
- added Abe's blind signature scheme [AO00, A01]
|
|
27
|
+
- updated to install file for windows and nsis script.
|
|
28
|
+
- fixed typo in protocol_a00.py and protocol_ao00.py
|
|
29
|
+
- added hibenc_lew11.py
|
|
30
|
+
- added Goldwasser-Micali pkenc scheme
|
|
31
|
+
- added Leontiadis-Elkhyiaoui-Molva scheme
|
|
32
|
+
- added four more ABE schemes
|
|
33
|
+
- re-added Time-based proxy re-encryption scheme implementation for py3
|
|
34
|
+
- added non-monotonic CP-ABE scheme by Yamada, Attrapadung, Hanaoka, Kunihiro
|
|
35
|
+
- update libtomcrypt headers to v1.17
|
|
36
|
+
- fix configure.sh: detect python better. thanks to Neal H. Walfield
|
|
37
|
+
- fix decrypt error when plaintext=0 for Paillier scheme. Closes #97
|
|
38
|
+
- added BBS98 proxy re-encryption scheme
|
|
39
|
+
- added omplementation of AFGH06 scheme
|
|
40
|
+
- interface for Proxy Re-Encryption schemes (charm.toolbox.PREnc)
|
|
41
|
+
- adapted BBS98 to PREnc interface
|
|
42
|
+
- added first NAL16 scheme
|
|
43
|
+
- added NAL16b (CCA_21 version of NAL16a)
|
|
44
|
+
- added scheme from Rouselakis and Waters (maabe_rw12.py)
|
|
45
|
+
- added hash support to wrapped pbc ecc elements (pairingmodule.c)
|
|
46
|
+
- added support for uncompressed curves elements (de)serialization.
|
|
47
|
+
- improved arguments management in (de)serialize methods of the c pairingmodule.
|
|
48
|
+
- improved error management in deserialize c pairingmodule
|
|
49
|
+
- improved error management in pairing product routine of pairinggroup.c
|
|
50
|
+
- improved error handling for initialize and initPP, new preproc attribute.
|
|
51
|
+
- changed hash function from sha1 to sha256 everywhere appropriate
|
|
52
|
+
- simplified encode/decode of messages in ECGroups. Squashed some bugs related to BN_bin2bn/BN_bn2bin
|
|
53
|
+
- updated configure.sh to support ARM (android, raspberry pi, include armv7l support)
|
|
54
|
+
- renamed sha1 to sha2 and update version to v0.5
|
|
55
|
+
- added py2.7 compatibility for pairing group serialize/deserialize
|
|
56
|
+
- added Dockerfile to document installation process
|
|
57
|
+
- fixed compilation errors with OpenSSL 1.1.0 caused by API change
|
|
58
|
+
- ciphertext-policy ABE schemes implemented under asymmetric pairing groups. Any policy represented as a monotone span program can be handled.
|
|
59
|
+
- added support for Mac OS X 10.11+
|
|
60
|
+
- added documentation
|
|
61
|
+
- scheme contributions, bug fixes and/or various improvements from @adelapie, @leontiad, @nikosft, @0xwille, @artjomb, @cygnusv, @lferr, @denniss17, @locksmithone, @leafac, @ElectroSuccess, @sagrawal87. Thanks to all!
|
|
62
|
+
|
|
63
|
+
v0.43 beta release (infrastructure changes)
|
|
64
|
+
-------------------------------------------
|
|
65
|
+
- simplified benchmarking interface -- breaks compatibility and see docs
|
|
66
|
+
- added new schemes (some external contributions from Nikos Fotiou, Fan Zhang, Hoeteck Wee)
|
|
67
|
+
- added pre-computation optimization for group exponentiation in pairing-based modules -- see docs
|
|
68
|
+
- fixed several memory leaks and segmentation faults
|
|
69
|
+
- switched from SHA1 to SHA2 for hashing operations
|
|
70
|
+
- improved serialization -- now using JSON instead of Pickle (security vulnerability)
|
|
71
|
+
- significant improvements to all base modules -- several fixes to integer and ecmodule functions
|
|
72
|
+
- more robust Android build for Charm
|
|
73
|
+
- significant fixes to 2.7 version of Charm
|
|
74
|
+
|
|
75
|
+
v0.42 beta release (infrastructure changes)
|
|
76
|
+
-------------------------------------------
|
|
77
|
+
- Several bug fixes to base modules (mem leaks, interface issues): pairing (PBC & Miracl), ecc, and integer
|
|
78
|
+
- Added new base module for RELIC and fixed bugs for MIRACL (Note: unified abstract interface for base modules coming in v0.43)
|
|
79
|
+
- Refactored charm package structure. This affects schemes, toolbox, adapters, etc.
|
|
80
|
+
- setup.py now creates Python egg
|
|
81
|
+
- Integrated pytest to replace unit testing framework
|
|
82
|
+
- Added doctests to all Charm schemes
|
|
83
|
+
- Updated documentation
|
|
84
|
+
|
|
85
|
+
v0.4 beta release
|
|
86
|
+
-----------------
|
|
87
|
+
- Several bug fixes to base modules: pairing (PBC & Miracl), ecc, and integer
|
|
88
|
+
- Major changes to base module API. Recommend using the group abstraction wrappers: PairingGroup, ECGroup, and IntegerGroup
|
|
89
|
+
- Removed pairing curve params in favor of a unified 'toolbox/pairingcurve.py' with curve identifiers (e.g., SS512, MNT224, etc)
|
|
90
|
+
- Deleted the 'params' dir (See previous bullet)
|
|
91
|
+
- Added high-level serialization API to simplify managing ciphertexts and keys in applications
|
|
92
|
+
- Added PKCS #7 padding to toolbox
|
|
93
|
+
- Added public key encryption schemes: 2 new IBE schemes (ibenc_ckrs09, ibenc_lsw08)
|
|
94
|
+
- Added signature schemes: CL04 (anony. creds)
|
|
95
|
+
- Added verifiable random function (VRF) scheme
|
|
96
|
+
- Updates to KPABE scheme with new adapter
|
|
97
|
+
- Improved protocol engine: automatically store data transmitted between parties and more flexibility in state transition map
|
|
98
|
+
- Updated CNS07 scheme
|
|
99
|
+
- Name updates to authenticated crypto abstraction
|
|
100
|
+
- Updated documentation for generating group parameters and using our serialization interface
|
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
Charm-Crypto: Installation Documentation
|
|
2
|
+
-------------------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
Charm has automated the installation process such that the end-user
|
|
5
|
+
does not have to directly handle dependencies, linking, compiler flag setting, and the
|
|
6
|
+
like. However, there is always the corner case in which an end-user is using a currently
|
|
7
|
+
unsupported platform, and thus may need to build and install using a very manual process.
|
|
8
|
+
|
|
9
|
+
We would like to support you in this case, and have written this documentation to get
|
|
10
|
+
you started on your path using Charm. This installation file will contain some
|
|
11
|
+
installation blocks highlighting each respective implementation.
|
|
12
|
+
|
|
13
|
+
Before we begin, please note the current dependencies:
|
|
14
|
+
|
|
15
|
+
- Python 3.8 or later (Python 2 is no longer supported)
|
|
16
|
+
|
|
17
|
+
- Pyparsing http://pyparsing.wikispaces.com/
|
|
18
|
+
|
|
19
|
+
- GMP 5.x http://gmplib.org/
|
|
20
|
+
|
|
21
|
+
- PBC 0.5.14 http://crypto.stanford.edu/pbc/news.html
|
|
22
|
+
|
|
23
|
+
- OPENSSL http://www.openssl.org/
|
|
24
|
+
|
|
25
|
+
See ./configure.sh --help for other options.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
BUILDING IN LINUX
|
|
29
|
+
------------------------
|
|
30
|
+
|
|
31
|
+
Note that the entire compilation process is supported by the Charm configure/make scripts.
|
|
32
|
+
The steps for building in linux this way are:
|
|
33
|
+
1. In a terminal, run configure.sh
|
|
34
|
+
2. sudo make
|
|
35
|
+
3. sudo make install
|
|
36
|
+
|
|
37
|
+
[Ubuntu 20.04/22.04/24.04 LTS]
|
|
38
|
+
|
|
39
|
+
1. Before installing Charm, there are a few prerequisites that need to be installed on your system:
|
|
40
|
+
1. Git
|
|
41
|
+
sudo apt-get install git
|
|
42
|
+
2. Python 3 and header files
|
|
43
|
+
sudo apt-get install python3 python3-dev python3-pip
|
|
44
|
+
3. Build tools
|
|
45
|
+
sudo apt-get install build-essential m4 flex bison
|
|
46
|
+
4. Required libraries
|
|
47
|
+
sudo apt-get install libgmp-dev libssl-dev
|
|
48
|
+
|
|
49
|
+
2. Now we need to obtain a copy of Charm:
|
|
50
|
+
git clone https://github.com/JHUISI/charm.git
|
|
51
|
+
|
|
52
|
+
3. Next, we will install Charm. Navigate to the Charm directory.
|
|
53
|
+
1. We must first run the configuration script:
|
|
54
|
+
./configure.sh
|
|
55
|
+
2. Now we will build and install Charm:
|
|
56
|
+
make
|
|
57
|
+
sudo make install
|
|
58
|
+
3. And finally we must rebuild the searchpath for libraries
|
|
59
|
+
sudo ldconfig
|
|
60
|
+
|
|
61
|
+
[Fedora]
|
|
62
|
+
|
|
63
|
+
1. Before installing Charm, there are a few prerequisites that need to be installed on your system. These are:
|
|
64
|
+
1. m4
|
|
65
|
+
su -c "yum install m4"
|
|
66
|
+
2. Python 3
|
|
67
|
+
su -c "yum install python3"
|
|
68
|
+
3. Header files/static library
|
|
69
|
+
su -c "yum install python3-devel"
|
|
70
|
+
4. openssl-devel
|
|
71
|
+
su -c "yum install openssl-devel"
|
|
72
|
+
|
|
73
|
+
2. Red Hat/Fedora has decided not to support ECC in OpenSSL due to patent concerns, so we now need to remove their restriction, manually import the required files, and build new shared libraries.
|
|
74
|
+
1. Remove the ECC restriction
|
|
75
|
+
1. Navigate to /usr/include/openssl
|
|
76
|
+
cd /usr/include/openssl
|
|
77
|
+
2. Open the OpenSSL configuration file for editing using your editor of choice
|
|
78
|
+
su -c "vi opensslconf-i386.h"
|
|
79
|
+
3. Remove the flags that restrict the use of ECC
|
|
80
|
+
Delete (at the beginning of file)
|
|
81
|
+
#ifndef OPENSSL_NO_EC
|
|
82
|
+
# define OPENSSL_NO_EC
|
|
83
|
+
#endif
|
|
84
|
+
#ifndef OPENSSL_NO_ECDH
|
|
85
|
+
# define OPENSSL_NO_ECDH
|
|
86
|
+
#endif
|
|
87
|
+
#ifndef OPENSSL_NO_ECDSA
|
|
88
|
+
# define OPENSSL_NO_ECDSA
|
|
89
|
+
#endif
|
|
90
|
+
Delete (later on the file)
|
|
91
|
+
# if defined(OPENSSL_NO_EC) && !defined(NO_EC)
|
|
92
|
+
# define NO_EC
|
|
93
|
+
# endif
|
|
94
|
+
# if defined(OPENSSL_NO_ECDH) && !defined(NO_ECDH)
|
|
95
|
+
# define NO_ECDH
|
|
96
|
+
# endif
|
|
97
|
+
# if defined(OPENSSL_NO_ECDSA) && !defined(NO_ECDSA)
|
|
98
|
+
# define NO_ECDSA
|
|
99
|
+
# endif
|
|
100
|
+
4. Save the file and close it
|
|
101
|
+
2. Add the ECC files
|
|
102
|
+
1. Navigate to http://www.openssl.org/source/ and download the latest version of openssl source
|
|
103
|
+
2. Untar it
|
|
104
|
+
3. Navigate to /path/to/openssl-[version]/include/openssl (ie inside the untarred file)
|
|
105
|
+
cd /path/to/openssl-[version]/include/openssl
|
|
106
|
+
4. Add the new files to the current OpenSSL installation
|
|
107
|
+
su -c "yes n | cp * /usr/include/openssl"
|
|
108
|
+
3. Build the new shared libraries
|
|
109
|
+
1. Navigate to your downloaded version of OpenSSL
|
|
110
|
+
cd /path/to/openssl-[version]/
|
|
111
|
+
2. Configure OpenSSL to make the shared libraries
|
|
112
|
+
./config shared
|
|
113
|
+
3. Make the new OpenSSL library
|
|
114
|
+
make
|
|
115
|
+
4. Move the new shared libraries with their links
|
|
116
|
+
su -c "cp --no-dereference libcrypto.so /usr/local/lib/libcrypto.so.10"
|
|
117
|
+
su -c "cp libcrypto.so.1.0.0 /usr/local/lib"
|
|
118
|
+
su -c "cp --no-dereference libssl.so /usr/local/lib/libssl.so.10"
|
|
119
|
+
su -c "cp libssl.so.1.0.0 /usr/local/lib"
|
|
120
|
+
su -c "cp libcrypto.a /usr/local/lib"
|
|
121
|
+
su -c "cp libssl.a /usr/local/lib"
|
|
122
|
+
5. And now we need to set the library search path to look for the libraries we just added first.
|
|
123
|
+
cd /etc/ld.so.conf.d/
|
|
124
|
+
su -c "vi charm.conf"
|
|
125
|
+
put "/usr/local/lib" (without quotes) into the file, save, and close
|
|
126
|
+
su -c ldconfig
|
|
127
|
+
6. Set the library search path to look for the new libraries first (either type this into your terminal or put it in your .bashrc file and source it)
|
|
128
|
+
export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH
|
|
129
|
+
|
|
130
|
+
3. Now we need to obtain a copy of Charm:
|
|
131
|
+
git clone -b master https://github.com/JHUISI/charm.git
|
|
132
|
+
|
|
133
|
+
4. Next, we will install Charm. Navigate to the Charm directory.
|
|
134
|
+
1. We must first run the configuration script:
|
|
135
|
+
su -c ./configure.sh
|
|
136
|
+
|
|
137
|
+
If the output of the configure script says that libgmp is already installed (and this is your first time installing Charm), chances are you have an outdated version of GMP. We need to check which version of libgmp you have installed.
|
|
138
|
+
su -c updatedb
|
|
139
|
+
locate libgmp
|
|
140
|
+
If you don't see libgmp.so.10 OR libgmp.so.10.0.2 in the resulting list, then you will need to build the GMP libraries from source.
|
|
141
|
+
1. Download the latest version of the GMP source from ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.2.tar.gz
|
|
142
|
+
2. Untar it
|
|
143
|
+
3. Navigate to /path/to/gmpsource (ie inside the untarred file)
|
|
144
|
+
cd /path/to/gmpsource
|
|
145
|
+
4. Build and install the libraries
|
|
146
|
+
./configure
|
|
147
|
+
make
|
|
148
|
+
su -c "cp gmp.h /usr/local/include"
|
|
149
|
+
su -c "make install"
|
|
150
|
+
5. You now have two options (remove or keep the old libraries):
|
|
151
|
+
1. Remove the old libraries
|
|
152
|
+
cd /usr/lib
|
|
153
|
+
su -c "rm libgmp.*"
|
|
154
|
+
2. Keep the old libraries, rename the new one
|
|
155
|
+
1. Determine the version of the old library
|
|
156
|
+
su -c updatedb
|
|
157
|
+
locate libgmp
|
|
158
|
+
2. Look for /usr/lib/libgmp.so.X in the resulting list where X is a number (NOT /usr/lib/libgmp.X.Y.Z)
|
|
159
|
+
3. Rename the new link
|
|
160
|
+
cd /usr/local/lib
|
|
161
|
+
su -c "mv libgmp.so.10 libgmp.so.X"
|
|
162
|
+
6. Rebuild the searchpath for libraries
|
|
163
|
+
su -c ldconfig
|
|
164
|
+
2. Now we will build and install Charm:
|
|
165
|
+
su -c "make"
|
|
166
|
+
su -c "make install"
|
|
167
|
+
3. And finally we must rebuild the searchpath for libraries
|
|
168
|
+
su -c ldconfig
|
|
169
|
+
|
|
170
|
+
[Fedora x86_64]
|
|
171
|
+
|
|
172
|
+
[Mint x86_64]
|
|
173
|
+
1. Before installing Charm, there are a few prerequisites that need to be installed on your system. These are:
|
|
174
|
+
1. Git
|
|
175
|
+
sudo apt-get install git
|
|
176
|
+
2. m4
|
|
177
|
+
sudo apt-get install m4
|
|
178
|
+
3. Python 3
|
|
179
|
+
sudo apt-get install python3
|
|
180
|
+
4. Header files/static library
|
|
181
|
+
sudo apt-get install python3-dev
|
|
182
|
+
5. libssl-dev (only necessary if you did not install Python 3)
|
|
183
|
+
sudo apt-get install libssl-dev
|
|
184
|
+
6. This distro doesn't seem to come with binutils or gcc, install those.
|
|
185
|
+
|
|
186
|
+
2. Now we need to obtain a copy of Charm:
|
|
187
|
+
git clone git://github.com/JHUISI/charm.git
|
|
188
|
+
|
|
189
|
+
3. Next, we will install Charm. Navigate to the Charm directory.
|
|
190
|
+
1. We must first run the configuration script:
|
|
191
|
+
sudo bash ./configure.sh * Bash to avoid unexpected operator error.
|
|
192
|
+
2. Now we will build and install Charm:
|
|
193
|
+
sudo make
|
|
194
|
+
sudo make install
|
|
195
|
+
3. And finally we must rebuild the searchpath for libraries
|
|
196
|
+
sudo ldconfig
|
|
197
|
+
|
|
198
|
+
[Creating a .deb]
|
|
199
|
+
If you want to create a .deb binary from the charm source, there are a
|
|
200
|
+
couple more steps. The following was tested in Ubuntu 16.04 (x86_64).
|
|
201
|
+
1. Before installing Charm, there are a few prerequisites that need to be installed on your system. These are:
|
|
202
|
+
1. Git
|
|
203
|
+
sudo apt-get install git
|
|
204
|
+
2. m4
|
|
205
|
+
sudo apt-get install m4
|
|
206
|
+
3. Python 3
|
|
207
|
+
sudo apt-get install python3
|
|
208
|
+
4. Header files/static library
|
|
209
|
+
sudo apt-get install python3-dev
|
|
210
|
+
5. libssl-dev (only necessary if you did not install Python 3)
|
|
211
|
+
sudo apt-get install libssl-dev
|
|
212
|
+
6. Additional packages related to packaging for .deb
|
|
213
|
+
sudo apt-get install python3-all-dev debhelper python3-pip
|
|
214
|
+
7. The stdeb python package, installed via pip
|
|
215
|
+
pip3 install stdeb
|
|
216
|
+
8. Verify that *all* of the dependencies at the top of the
|
|
217
|
+
document are satisfied. Not doing this may result in strange
|
|
218
|
+
bugs while compiling the .deb from source.
|
|
219
|
+
|
|
220
|
+
2. Now we need to obtain a copy of Charm:
|
|
221
|
+
git clone git://github.com/JHUISI/charm.git
|
|
222
|
+
|
|
223
|
+
3. Next, we will install Charm. Navigate to the Charm directory.
|
|
224
|
+
1. We must first run the configuration script:
|
|
225
|
+
sudo bash ./configure.sh * Bash to avoid unexpected operator error.
|
|
226
|
+
2. Now we will build and install Charm:
|
|
227
|
+
sudo make
|
|
228
|
+
sudo make install
|
|
229
|
+
3. And finally we must rebuild the searchpath for libraries
|
|
230
|
+
sudo ldconfig
|
|
231
|
+
|
|
232
|
+
4. Finally, we will build the installer. Navigate to the installers/deb.installer directory, and at a shell prompt run
|
|
233
|
+
sudo python3 create_deb.py * use python instead of python3 to make a 2.7 binary
|
|
234
|
+
|
|
235
|
+
5. Install the created .deb file.
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
BUILDING IN WINDOWS
|
|
240
|
+
------------------------
|
|
241
|
+
|
|
242
|
+
Note that the entire compilation process is now supported by the Charm configure/make scripts.
|
|
243
|
+
The steps for building in mingw32 this way are:
|
|
244
|
+
1. Download the latest source version of openssl.
|
|
245
|
+
2. Run MinGW Shell.
|
|
246
|
+
3. Extract openssl, configure and install as shown below.
|
|
247
|
+
4. Extract Charm, and navigate to the top directory.
|
|
248
|
+
5. Run configure.sh as shown below.
|
|
249
|
+
6. The process will fail out at wget, and open Internet Explorer to the wget download
|
|
250
|
+
page.
|
|
251
|
+
7. Install wget, and set it's bin directory on your PATH. To do this, right-click My
|
|
252
|
+
Computer, Select Properties, Select Advanced System Settings, Select Advanced, Select
|
|
253
|
+
Environment Variables, and than PATH. Scroll to the end, and enter a ; followed by
|
|
254
|
+
the absolute path to the bin directory (e.g., C:\Program Files\etc).
|
|
255
|
+
8. With wget installed, run the configure.sh script again, and it should set up your
|
|
256
|
+
Make dependencies for you.
|
|
257
|
+
9. Make build.
|
|
258
|
+
10. Make install.
|
|
259
|
+
*. Another way to install dependencies is to follow the Windows blocks below.
|
|
260
|
+
|
|
261
|
+
[MinGW32 and Cygwin]
|
|
262
|
+
|
|
263
|
+
Let's first build our dependencies with the following scripts:
|
|
264
|
+
|
|
265
|
+
#GMP
|
|
266
|
+
./configure --prefix=/mingw --disable-static --enable-shared
|
|
267
|
+
make
|
|
268
|
+
make install
|
|
269
|
+
|
|
270
|
+
#OPENSSL
|
|
271
|
+
./config --openssldir=/mingw --shared # This gets us around installing perl.
|
|
272
|
+
make
|
|
273
|
+
make install
|
|
274
|
+
|
|
275
|
+
# ** NOTE ** openssl-1.0.0e ./test compilation problems.
|
|
276
|
+
# You will run into a compilation error that looks similar to:
|
|
277
|
+
# mdtest.c:1:10 error: expected ...
|
|
278
|
+
#
|
|
279
|
+
# To mitigate, do the following:
|
|
280
|
+
# grep "./test/dummytest.c" *
|
|
281
|
+
# edit each file from "dummytest.c" to "#include "dummytest.c"
|
|
282
|
+
|
|
283
|
+
#PBC
|
|
284
|
+
./configure --prefix=/mingw --disable-static --enable-shared
|
|
285
|
+
make
|
|
286
|
+
make install
|
|
287
|
+
|
|
288
|
+
#Building Charm
|
|
289
|
+
./configure --prefix=/mingw --python=/c/Python32/python.exe
|
|
290
|
+
|
|
291
|
+
# ** NOTE ** The latest mingw installer comes coupled with gcc-4.6.x
|
|
292
|
+
# which no longer supports the flag -mno-cygwin. This, unfortunately,
|
|
293
|
+
# is called during python setup.py build as it is a part of a class
|
|
294
|
+
# in distutils for python. A fix is coming for python to evaluate
|
|
295
|
+
# the gcc compiler version, and remove the flag -mno-cygwin if it
|
|
296
|
+
# 4.6+, but that has yet to be implemented.
|
|
297
|
+
|
|
298
|
+
[Building Executable]
|
|
299
|
+
|
|
300
|
+
If you are building to make an executable with NSIS, than be sure to
|
|
301
|
+
compile the dependencies first and pass the appropriate header and
|
|
302
|
+
library files to --python-build-ext (calls build_ext option for setup).
|
|
303
|
+
|
|
304
|
+
./configure.sh --python=/c/Python32/python.exe --python-build-ext="-L/path/to/lib -I/path/to/header"
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
Need help building the dependencies? Follow the below:
|
|
308
|
+
#GMP
|
|
309
|
+
./configure --prefix=/c/charm-crypto --disable-static --enable-shared
|
|
310
|
+
make
|
|
311
|
+
make install
|
|
312
|
+
|
|
313
|
+
#PBC
|
|
314
|
+
./configure --prefix=/c/charm-crypto --disable-static --enable-shared LDFLAGS="-L/c/charm-crypto/lib" CPPFLAGS="-I/c/charm-crypto/include"
|
|
315
|
+
make
|
|
316
|
+
make install
|
|
317
|
+
|
|
318
|
+
#OPENSSL
|
|
319
|
+
./config --openssldir=/c/charm-crypto --shared # This gets us around installing perl.
|
|
320
|
+
make
|
|
321
|
+
make install
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
BUILDING IN OS X
|
|
325
|
+
------------------------
|
|
326
|
+
|
|
327
|
+
Note that the entire compilation process is supported by the Charm configure/make scripts.
|
|
328
|
+
|
|
329
|
+
[macOS (Monterey, Ventura, Sonoma)]
|
|
330
|
+
|
|
331
|
+
1. Install Homebrew if not already installed:
|
|
332
|
+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
333
|
+
|
|
334
|
+
2. Install dependencies via Homebrew:
|
|
335
|
+
brew install gmp openssl@3 flex bison wget
|
|
336
|
+
|
|
337
|
+
3. Build and install PBC library:
|
|
338
|
+
wget https://crypto.stanford.edu/pbc/files/pbc-1.0.0.tar.gz
|
|
339
|
+
tar -xzf pbc-1.0.0.tar.gz
|
|
340
|
+
cd pbc-1.0.0
|
|
341
|
+
./configure LDFLAGS="-L$(brew --prefix gmp)/lib" CPPFLAGS="-I$(brew --prefix gmp)/include"
|
|
342
|
+
make
|
|
343
|
+
sudo make install
|
|
344
|
+
|
|
345
|
+
4. Configure and build Charm:
|
|
346
|
+
./configure.sh --enable-darwin
|
|
347
|
+
make
|
|
348
|
+
sudo make install
|
|
349
|
+
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 29 June 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
6
|
+
of this license document, but changing it is not allowed.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
|
11
|
+
License, supplemented by the additional permissions listed below.
|
|
12
|
+
|
|
13
|
+
0. Additional Definitions.
|
|
14
|
+
|
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
17
|
+
General Public License.
|
|
18
|
+
|
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
|
20
|
+
other than an Application or a Combined Work as defined below.
|
|
21
|
+
|
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
|
25
|
+
of using an interface provided by the Library.
|
|
26
|
+
|
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
|
28
|
+
Application with the Library. The particular version of the Library
|
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
|
30
|
+
Version".
|
|
31
|
+
|
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
|
35
|
+
based on the Application, and not on the Linked Version.
|
|
36
|
+
|
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
|
38
|
+
object code and/or source code for the Application, including any data
|
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
|
41
|
+
|
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
|
43
|
+
|
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
|
46
|
+
|
|
47
|
+
2. Conveying Modified Versions.
|
|
48
|
+
|
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
|
51
|
+
that uses the facility (other than as an argument passed when the
|
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
|
53
|
+
version:
|
|
54
|
+
|
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
|
56
|
+
ensure that, in the event an Application does not supply the
|
|
57
|
+
function or data, the facility still operates, and performs
|
|
58
|
+
whatever part of its purpose remains meaningful, or
|
|
59
|
+
|
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
|
61
|
+
this License applicable to that copy.
|
|
62
|
+
|
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
|
64
|
+
|
|
65
|
+
The object code form of an Application may incorporate material from
|
|
66
|
+
a header file that is part of the Library. You may convey such object
|
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
|
68
|
+
material is not limited to numerical parameters, data structure
|
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
|
71
|
+
|
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
|
73
|
+
Library is used in it and that the Library and its use are
|
|
74
|
+
covered by this License.
|
|
75
|
+
|
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
77
|
+
document.
|
|
78
|
+
|
|
79
|
+
4. Combined Works.
|
|
80
|
+
|
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
|
82
|
+
taken together, effectively do not restrict modification of the
|
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
|
85
|
+
the following:
|
|
86
|
+
|
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
|
88
|
+
the Library is used in it and that the Library and its use are
|
|
89
|
+
covered by this License.
|
|
90
|
+
|
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
92
|
+
document.
|
|
93
|
+
|
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
|
95
|
+
execution, include the copyright notice for the Library among
|
|
96
|
+
these notices, as well as a reference directing the user to the
|
|
97
|
+
copies of the GNU GPL and this license document.
|
|
98
|
+
|
|
99
|
+
d) Do one of the following:
|
|
100
|
+
|
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
|
102
|
+
License, and the Corresponding Application Code in a form
|
|
103
|
+
suitable for, and under terms that permit, the user to
|
|
104
|
+
recombine or relink the Application with a modified version of
|
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
|
107
|
+
Corresponding Source.
|
|
108
|
+
|
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
|
111
|
+
a copy of the Library already present on the user's computer
|
|
112
|
+
system, and (b) will operate properly with a modified version
|
|
113
|
+
of the Library that is interface-compatible with the Linked
|
|
114
|
+
Version.
|
|
115
|
+
|
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
|
117
|
+
be required to provide such information under section 6 of the
|
|
118
|
+
GNU GPL, and only to the extent that such information is
|
|
119
|
+
necessary to install and execute a modified version of the
|
|
120
|
+
Combined Work produced by recombining or relinking the
|
|
121
|
+
Application with a modified version of the Linked Version. (If
|
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
|
126
|
+
for conveying Corresponding Source.)
|
|
127
|
+
|
|
128
|
+
5. Combined Libraries.
|
|
129
|
+
|
|
130
|
+
You may place library facilities that are a work based on the
|
|
131
|
+
Library side by side in a single library together with other library
|
|
132
|
+
facilities that are not Applications and are not covered by this
|
|
133
|
+
License, and convey such a combined library under terms of your
|
|
134
|
+
choice, if you do both of the following:
|
|
135
|
+
|
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
|
137
|
+
on the Library, uncombined with any other library facilities,
|
|
138
|
+
conveyed under the terms of this License.
|
|
139
|
+
|
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
|
141
|
+
is a work based on the Library, and explaining where to find the
|
|
142
|
+
accompanying uncombined form of the same work.
|
|
143
|
+
|
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
|
145
|
+
|
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
|
148
|
+
versions will be similar in spirit to the present version, but may
|
|
149
|
+
differ in detail to address new problems or concerns.
|
|
150
|
+
|
|
151
|
+
Each version is given a distinguishing version number. If the
|
|
152
|
+
Library as you received it specifies that a certain numbered version
|
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
|
154
|
+
applies to it, you have the option of following the terms and
|
|
155
|
+
conditions either of that published version or of any later version
|
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
|
160
|
+
|
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
|
164
|
+
permanent authorization for you to choose that version for the
|
|
165
|
+
Library.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
include VERSION README.md INSTALL configure.sh Makefile CHANGELOG setup.cfg
|
|
2
|
+
include LICENSE.txt pyproject.toml config.dist.py pytest.ini
|
|
3
|
+
graft doc
|
|
4
|
+
graft doc/source
|
|
5
|
+
recursive-include charm *.h *.c *.py
|
|
6
|
+
prune build
|
|
7
|
+
prune deps/pbc
|
|
8
|
+
prune deps/relic
|
|
9
|
+
prune *.egg-info
|
|
10
|
+
global-exclude __pycache__
|
|
11
|
+
global-exclude *.py[cod]
|
|
12
|
+
global-exclude *.so
|