├── .gitignore ├── Axiom ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── docs │ ├── .lock │ ├── COPYRIGHT.txt │ ├── FiraSans-LICENSE.txt │ ├── FiraSans-Medium.woff2 │ ├── FiraSans-Regular.woff2 │ ├── LICENSE-APACHE.txt │ ├── LICENSE-MIT.txt │ ├── NanumBarunGothic-LICENSE.txt │ ├── NanumBarunGothic.ttf.woff2 │ ├── SourceCodePro-It.ttf.woff2 │ ├── SourceCodePro-LICENSE.txt │ ├── SourceCodePro-Regular.ttf.woff2 │ ├── SourceCodePro-Semibold.ttf.woff2 │ ├── SourceSerif4-Bold.ttf.woff2 │ ├── SourceSerif4-It.ttf.woff2 │ ├── SourceSerif4-LICENSE.md │ ├── SourceSerif4-Regular.ttf.woff2 │ ├── ayu.css │ ├── clipboard.svg │ ├── crates.js │ ├── dark.css │ ├── down-arrow.svg │ ├── favicon.svg │ ├── halo2_base │ │ ├── all.html │ │ ├── constant.SKIP_FIRST_PASS.html │ │ ├── enum.QuantumCell.html │ │ ├── gates │ │ │ ├── builder │ │ │ │ ├── enum.CircuitBuilderStage.html │ │ │ │ ├── fn.assign_threads_in.html │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.FlexGateConfigParams.html │ │ │ │ ├── struct.GateCircuitBuilder.html │ │ │ │ ├── struct.GateThreadBuilder.html │ │ │ │ ├── struct.KeygenAssignments.html │ │ │ │ ├── struct.RangeCircuitBuilder.html │ │ │ │ ├── type.MultiPhaseThreadBreakPoints.html │ │ │ │ └── type.ThreadBreakPoints.html │ │ │ ├── flex_gate │ │ │ │ ├── constant.MAX_PHASE.html │ │ │ │ ├── enum.GateStrategy.html │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.BasicGateConfig.html │ │ │ │ ├── struct.FlexGateConfig.html │ │ │ │ ├── struct.GateChip.html │ │ │ │ └── trait.GateInstructions.html │ │ │ ├── index.html │ │ │ ├── range │ │ │ │ ├── enum.RangeStrategy.html │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.RangeChip.html │ │ │ │ ├── struct.RangeConfig.html │ │ │ │ └── trait.RangeInstructions.html │ │ │ └── sidebar-items.js │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── struct.AssignedValue.html │ │ ├── struct.Context.html │ │ ├── struct.ContextCell.html │ │ └── utils │ │ │ ├── fn.bigint_to_fe.html │ │ │ ├── fn.biguint_to_fe.html │ │ │ ├── fn.bit_length.html │ │ │ ├── fn.compose.html │ │ │ ├── fn.decompose.html │ │ │ ├── fn.decompose_bigint.html │ │ │ ├── fn.decompose_bigint_option.html │ │ │ ├── fn.decompose_biguint.html │ │ │ ├── fn.decompose_fe_to_u64_limbs.html │ │ │ ├── fn.fe_to_bigint.html │ │ │ ├── fn.fe_to_biguint.html │ │ │ ├── fn.log2_ceil.html │ │ │ ├── fn.modulus.html │ │ │ ├── fn.power_of_two.html │ │ │ ├── fn.value_to_option.html │ │ │ ├── fs │ │ │ ├── fn.gen_srs.html │ │ │ ├── fn.read_or_create_srs.html │ │ │ ├── fn.read_params.html │ │ │ ├── index.html │ │ │ └── sidebar-items.js │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── trait.BigPrimeField.html │ │ │ ├── trait.CurveAffineExt.html │ │ │ └── trait.ScalarField.html │ ├── halo2_ecc │ │ ├── all.html │ │ ├── bigint │ │ │ ├── add_no_carry │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── big_is_equal │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── fn.wrapper.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── big_is_zero │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── fn.positive.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── big_less_than │ │ │ │ ├── fn.assign.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── carry_mod │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── check_carry_mod_to_zero │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── check_carry_to_zero │ │ │ │ ├── fn.truncate.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── enum.BigIntStrategy.html │ │ │ ├── index.html │ │ │ ├── mul_no_carry │ │ │ │ ├── fn.crt.html │ │ │ │ ├── fn.truncate.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── negative │ │ │ │ ├── fn.assign.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── scalar_mul_and_add_no_carry │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── scalar_mul_no_carry │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── select │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── select_by_indicator │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── sidebar-items.js │ │ │ ├── struct.CRTInteger.html │ │ │ ├── struct.FixedAssignedCRTInteger.html │ │ │ ├── struct.FixedCRTInteger.html │ │ │ ├── struct.FixedOverflowInteger.html │ │ │ ├── struct.OverflowInteger.html │ │ │ ├── sub │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ └── sub_no_carry │ │ │ │ ├── fn.assign.html │ │ │ │ ├── fn.crt.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ ├── bn254 │ │ │ ├── final_exp │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── index.html │ │ │ ├── pairing │ │ │ │ ├── fn.fp12_multiply_with_line_equal.html │ │ │ │ ├── fn.fp12_multiply_with_line_unequal.html │ │ │ │ ├── fn.miller_loop_BN.html │ │ │ │ ├── fn.multi_miller_loop_BN.html │ │ │ │ ├── fn.neg_twisted_frobenius.html │ │ │ │ ├── fn.sparse_fp12_multiply.html │ │ │ │ ├── fn.sparse_line_function_equal.html │ │ │ │ ├── fn.sparse_line_function_unequal.html │ │ │ │ ├── fn.twisted_frobenius.html │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ └── struct.PairingChip.html │ │ │ ├── sidebar-items.js │ │ │ ├── type.Fp12Chip.html │ │ │ ├── type.Fp2Chip.html │ │ │ ├── type.FpChip.html │ │ │ ├── type.FpPoint.html │ │ │ └── type.FqPoint.html │ │ ├── ecc │ │ │ ├── ecdsa │ │ │ │ ├── fn.ecdsa_verify_no_pubkey_check.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── fixed_base │ │ │ │ ├── fn.msm.html │ │ │ │ ├── fn.msm_par.html │ │ │ │ ├── fn.scalar_multiply.html │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ └── struct.FixedEcPoint.html │ │ │ ├── fn.ec_add_unequal.html │ │ │ ├── fn.ec_double.html │ │ │ ├── fn.ec_double_and_add_unequal.html │ │ │ ├── fn.ec_select.html │ │ │ ├── fn.ec_select_by_indicator.html │ │ │ ├── fn.ec_select_from_bits.html │ │ │ ├── fn.ec_sub_unequal.html │ │ │ ├── fn.get_naf.html │ │ │ ├── fn.is_on_curve.html │ │ │ ├── fn.load_random_point.html │ │ │ ├── fn.multi_scalar_multiply.html │ │ │ ├── fn.scalar_multiply.html │ │ │ ├── index.html │ │ │ ├── pippenger │ │ │ │ ├── fn.multi_exp.html │ │ │ │ ├── fn.multi_exp_par.html │ │ │ │ ├── fn.multi_product.html │ │ │ │ ├── index.html │ │ │ │ └── sidebar-items.js │ │ │ ├── sidebar-items.js │ │ │ ├── struct.EcPoint.html │ │ │ ├── struct.EccChip.html │ │ │ └── type.BaseFieldEccChip.html │ │ ├── fields │ │ │ ├── enum.FpStrategy.html │ │ │ ├── fp │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ ├── struct.FpChip.html │ │ │ │ ├── type.BaseFieldChip.html │ │ │ │ └── type.FpConfig.html │ │ │ ├── fp12 │ │ │ │ ├── fn.mul_no_carry_w6.html │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ └── struct.Fp12Chip.html │ │ │ ├── fp2 │ │ │ │ ├── index.html │ │ │ │ ├── sidebar-items.js │ │ │ │ └── struct.Fp2Chip.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── struct.FieldExtPoint.html │ │ │ ├── trait.FieldChip.html │ │ │ ├── trait.FieldExtConstructor.html │ │ │ ├── trait.PrimeFieldChip.html │ │ │ ├── trait.Selectable.html │ │ │ └── traitalias.PrimeField.html │ │ ├── index.html │ │ ├── secp256k1 │ │ │ ├── constant.SECP_B.html │ │ │ ├── index.html │ │ │ ├── sidebar-items.js │ │ │ ├── type.FpChip.html │ │ │ ├── type.FqChip.html │ │ │ └── type.Secp256k1Chip.html │ │ └── sidebar-items.js │ ├── help.html │ ├── implementors │ │ ├── core │ │ │ ├── clone │ │ │ │ └── trait.Clone.js │ │ │ ├── cmp │ │ │ │ └── trait.PartialEq.js │ │ │ ├── convert │ │ │ │ └── trait.From.js │ │ │ ├── default │ │ │ │ └── trait.Default.js │ │ │ ├── fmt │ │ │ │ └── trait.Debug.js │ │ │ ├── marker │ │ │ │ ├── trait.Copy.js │ │ │ │ ├── trait.Freeze.js │ │ │ │ ├── trait.Send.js │ │ │ │ ├── trait.StructuralPartialEq.js │ │ │ │ ├── trait.Sync.js │ │ │ │ └── trait.Unpin.js │ │ │ └── panic │ │ │ │ └── unwind_safe │ │ │ │ ├── trait.RefUnwindSafe.js │ │ │ │ └── trait.UnwindSafe.js │ │ ├── halo2_base │ │ │ ├── gates │ │ │ │ ├── flex_gate │ │ │ │ │ └── trait.GateInstructions.js │ │ │ │ └── range │ │ │ │ │ └── trait.RangeInstructions.js │ │ │ └── utils │ │ │ │ ├── trait.BigPrimeField.js │ │ │ │ └── trait.ScalarField.js │ │ ├── halo2_ecc │ │ │ └── fields │ │ │ │ ├── trait.FieldChip.js │ │ │ │ ├── trait.FieldExtConstructor.js │ │ │ │ ├── trait.PrimeFieldChip.js │ │ │ │ └── trait.Selectable.js │ │ ├── halo2_proofs │ │ │ └── plonk │ │ │ │ └── circuit │ │ │ │ └── trait.Circuit.js │ │ ├── halo2curves │ │ │ └── arithmetic │ │ │ │ └── trait.CurveAffineExt.js │ │ ├── serde │ │ │ ├── de │ │ │ │ └── trait.Deserialize.js │ │ │ └── ser │ │ │ │ └── trait.Serialize.js │ │ └── zkevm_keccak │ │ │ └── util │ │ │ ├── eth_types │ │ │ ├── trait.Field.js │ │ │ ├── trait.ToAddress.js │ │ │ ├── trait.ToBigEndian.js │ │ │ ├── trait.ToLittleEndian.js │ │ │ ├── trait.ToScalar.js │ │ │ └── trait.ToWord.js │ │ │ └── expression │ │ │ └── trait.Expr.js │ ├── index.html │ ├── light.css │ ├── main.js │ ├── normalize.css │ ├── noscript.css │ ├── rust-logo.svg │ ├── rustdoc.css │ ├── search-index.js │ ├── search.js │ ├── settings.css │ ├── settings.html │ ├── settings.js │ ├── source-files.js │ ├── source-script.js │ ├── src │ │ ├── halo2_base │ │ │ ├── gates │ │ │ │ ├── builder.rs.html │ │ │ │ ├── flex_gate.rs.html │ │ │ │ ├── mod.rs.html │ │ │ │ └── range.rs.html │ │ │ ├── lib.rs.html │ │ │ └── utils.rs.html │ │ ├── halo2_ecc │ │ │ ├── bigint │ │ │ │ ├── add_no_carry.rs.html │ │ │ │ ├── big_is_equal.rs.html │ │ │ │ ├── big_is_zero.rs.html │ │ │ │ ├── big_less_than.rs.html │ │ │ │ ├── carry_mod.rs.html │ │ │ │ ├── check_carry_mod_to_zero.rs.html │ │ │ │ ├── check_carry_to_zero.rs.html │ │ │ │ ├── mod.rs.html │ │ │ │ ├── mul_no_carry.rs.html │ │ │ │ ├── negative.rs.html │ │ │ │ ├── scalar_mul_and_add_no_carry.rs.html │ │ │ │ ├── scalar_mul_no_carry.rs.html │ │ │ │ ├── select.rs.html │ │ │ │ ├── select_by_indicator.rs.html │ │ │ │ ├── sub.rs.html │ │ │ │ └── sub_no_carry.rs.html │ │ │ ├── bn254 │ │ │ │ ├── final_exp.rs.html │ │ │ │ ├── mod.rs.html │ │ │ │ └── pairing.rs.html │ │ │ ├── ecc │ │ │ │ ├── ecdsa.rs.html │ │ │ │ ├── fixed_base.rs.html │ │ │ │ ├── mod.rs.html │ │ │ │ └── pippenger.rs.html │ │ │ ├── fields │ │ │ │ ├── fp.rs.html │ │ │ │ ├── fp12.rs.html │ │ │ │ ├── fp2.rs.html │ │ │ │ └── mod.rs.html │ │ │ ├── lib.rs.html │ │ │ └── secp256k1 │ │ │ │ └── mod.rs.html │ │ └── zkevm_keccak │ │ │ ├── keccak_packed_multi.rs.html │ │ │ ├── lib.rs.html │ │ │ ├── util.rs.html │ │ │ └── util │ │ │ ├── constraint_builder.rs.html │ │ │ ├── eth_types.rs.html │ │ │ └── expression.rs.html │ ├── storage.js │ ├── toggle-minus.svg │ ├── toggle-plus.svg │ ├── wheel.svg │ └── zkevm_keccak │ │ ├── all.html │ │ ├── index.html │ │ ├── keccak_packed_multi │ │ ├── fn.assign_advice_custom.html │ │ ├── fn.assign_fixed_custom.html │ │ ├── fn.get_keccak_capacity.html │ │ ├── fn.get_num_keccak_f.html │ │ ├── fn.get_num_rows_per_round.html │ │ ├── fn.keccak_phase0.html │ │ ├── fn.keccak_phase1.html │ │ ├── fn.multi_keccak_phase0.html │ │ ├── fn.multi_keccak_phase1.html │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── struct.KeccakCircuitConfig.html │ │ ├── struct.KeccakRow.html │ │ └── struct.KeccakTable.html │ │ ├── macro.address!.html │ │ ├── macro.address.html │ │ ├── macro.impl_expr!.html │ │ ├── macro.impl_expr.html │ │ ├── macro.word!.html │ │ ├── macro.word.html │ │ ├── macro.word_map!.html │ │ ├── macro.word_map.html │ │ ├── sidebar-items.js │ │ └── util │ │ ├── constant.ABSORB_WIDTH_PER_ROW.html │ │ ├── constant.ABSORB_WIDTH_PER_ROW_BYTES.html │ │ ├── constant.BIT_COUNT.html │ │ ├── constant.BIT_SIZE.html │ │ ├── constant.KECCAK_WIDTH.html │ │ ├── constant.KECCAK_WIDTH_IN_BITS.html │ │ ├── constant.NUM_BITS_PER_BYTE.html │ │ ├── constant.NUM_BITS_PER_WORD.html │ │ ├── constant.NUM_BYTES_PER_WORD.html │ │ ├── constant.NUM_BYTES_TO_ABSORB.html │ │ ├── constant.NUM_BYTES_TO_SQUEEZE.html │ │ ├── constant.NUM_ROUNDS.html │ │ ├── constant.NUM_WORDS_TO_ABSORB.html │ │ ├── constant.NUM_WORDS_TO_SQUEEZE.html │ │ ├── constant.RATE.html │ │ ├── constant.RATE_IN_BITS.html │ │ ├── constraint_builder │ │ ├── index.html │ │ ├── sidebar-items.js │ │ └── struct.BaseConstraintBuilder.html │ │ ├── eth_types │ │ ├── index.html │ │ ├── sidebar-items.js │ │ ├── struct.AccessList.html │ │ ├── struct.Block.html │ │ ├── struct.Bytes.html │ │ ├── struct.H160.html │ │ ├── struct.H256.html │ │ ├── struct.H64.html │ │ ├── struct.Signature.html │ │ ├── struct.Transaction.html │ │ ├── struct.U256.html │ │ ├── struct.U64.html │ │ ├── trait.Field.html │ │ ├── trait.ToAddress.html │ │ ├── trait.ToBigEndian.html │ │ ├── trait.ToLittleEndian.html │ │ ├── trait.ToScalar.html │ │ ├── trait.ToWord.html │ │ ├── type.Address.html │ │ ├── type.Hash.html │ │ └── type.Word.html │ │ ├── expression │ │ ├── and │ │ │ ├── fn.expr.html │ │ │ ├── fn.value.html │ │ │ ├── index.html │ │ │ └── sidebar-items.js │ │ ├── fn.expr_from_bytes.html │ │ ├── fn.pow_of_two.html │ │ ├── index.html │ │ ├── not │ │ │ ├── fn.expr.html │ │ │ ├── fn.value.html │ │ │ ├── index.html │ │ │ └── sidebar-items.js │ │ ├── or │ │ │ ├── fn.expr.html │ │ │ ├── fn.value.html │ │ │ ├── index.html │ │ │ └── sidebar-items.js │ │ ├── select │ │ │ ├── fn.expr.html │ │ │ ├── fn.value.html │ │ │ ├── fn.value_word.html │ │ │ ├── index.html │ │ │ └── sidebar-items.js │ │ ├── sidebar-items.js │ │ ├── sum │ │ │ ├── fn.expr.html │ │ │ ├── fn.value.html │ │ │ ├── index.html │ │ │ └── sidebar-items.js │ │ ├── trait.Expr.html │ │ └── xor │ │ │ ├── fn.expr.html │ │ │ ├── fn.value.html │ │ │ ├── index.html │ │ │ └── sidebar-items.js │ │ ├── fn.field_xor.html │ │ ├── fn.get_absorb_positions.html │ │ ├── fn.get_degree.html │ │ ├── fn.get_num_bits_per_lookup.html │ │ ├── fn.get_rotate_count.html │ │ ├── fn.into_bits.html │ │ ├── fn.pack.html │ │ ├── fn.pack_part.html │ │ ├── fn.pack_u64.html │ │ ├── fn.pack_with_base.html │ │ ├── fn.rotate.html │ │ ├── fn.rotate_left.html │ │ ├── fn.rotate_rev.html │ │ ├── fn.target_part_sizes.html │ │ ├── fn.unpack.html │ │ ├── index.html │ │ ├── scatter │ │ ├── index.html │ │ └── sidebar-items.js │ │ ├── sidebar-items.js │ │ ├── struct.PartInfo.html │ │ ├── struct.WordParts.html │ │ └── to_bytes │ │ ├── index.html │ │ └── sidebar-items.js ├── halo2-base │ ├── Cargo.toml │ ├── README.md │ ├── benches │ │ ├── inner_product.rs │ │ └── mul.rs │ ├── examples │ │ └── inner_product.rs │ ├── proptest-regressions │ │ └── gates │ │ │ └── tests │ │ │ └── prop_test.txt │ └── src │ │ ├── gates │ │ ├── builder.rs │ │ ├── builder │ │ │ └── parallelize.rs │ │ ├── flex_gate.rs │ │ ├── mod.rs │ │ ├── range.rs │ │ └── tests │ │ │ ├── README.md │ │ │ ├── bitwise_rotate.rs │ │ │ ├── flex_gate.rs │ │ │ ├── general.rs │ │ │ ├── idx_to_indicator.rs │ │ │ ├── mod.rs │ │ │ ├── neg_prop.rs │ │ │ ├── pos_prop.rs │ │ │ ├── range_gate.rs │ │ │ └── utils.rs │ │ ├── lib.rs │ │ ├── safe_types │ │ ├── mod.rs │ │ └── tests.rs │ │ └── utils.rs ├── halo2-ecc │ ├── Cargo.toml │ ├── benches │ │ ├── README.md │ │ ├── fixed_base_msm.rs │ │ ├── fp_mul.rs │ │ └── msm.rs │ ├── configs │ │ ├── bn254 │ │ │ ├── bench_ec_add.config │ │ │ ├── bench_fixed_msm.config │ │ │ ├── bench_fixed_msm.t.config │ │ │ ├── bench_msm.config │ │ │ ├── bench_msm.t.config │ │ │ ├── bench_pairing.config │ │ │ ├── bench_pairing.t.config │ │ │ ├── ec_add_circuit.config │ │ │ ├── fixed_msm_circuit.config │ │ │ ├── msm_circuit.config │ │ │ └── pairing_circuit.config │ │ └── secp256k1 │ │ │ ├── bench_ecdsa.config │ │ │ ├── ecdsa_circuit.config │ │ │ └── scalar_multiplication.config │ └── src │ │ ├── bigint │ │ ├── add_no_carry.rs │ │ ├── big_is_equal.rs │ │ ├── big_is_zero.rs │ │ ├── big_less_than.rs │ │ ├── carry_mod.rs │ │ ├── check_carry_mod_to_zero.rs │ │ ├── check_carry_to_zero.rs │ │ ├── mod.rs │ │ ├── mul_no_carry.rs │ │ ├── negative.rs │ │ ├── scalar_mul_and_add_no_carry.rs │ │ ├── scalar_mul_no_carry.rs │ │ ├── select.rs │ │ ├── select_by_indicator.rs │ │ ├── sub.rs │ │ └── sub_no_carry.rs │ │ ├── bn254 │ │ ├── final_exp.rs │ │ ├── mod.rs │ │ ├── pairing.rs │ │ └── tests │ │ │ ├── ec_add.rs │ │ │ ├── fixed_base_msm.rs │ │ │ ├── mod.rs │ │ │ ├── msm.rs │ │ │ ├── msm_sum_infinity.rs │ │ │ ├── msm_sum_infinity_fixed_base.rs │ │ │ └── pairing.rs │ │ ├── ecc │ │ ├── ecdsa.rs │ │ ├── fixed_base.rs │ │ ├── fixed_base_pippenger.rs │ │ ├── mod.rs │ │ ├── pippenger.rs │ │ └── tests.rs │ │ ├── fields │ │ ├── fp.rs │ │ ├── fp12.rs │ │ ├── fp2.rs │ │ ├── mod.rs │ │ ├── tests │ │ │ ├── fp │ │ │ │ ├── assert_eq.rs │ │ │ │ └── mod.rs │ │ │ ├── fp12 │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ └── vector.rs │ │ ├── lib.rs │ │ └── secp256k1 │ │ ├── mod.rs │ │ └── tests │ │ ├── ecdsa.rs │ │ ├── ecdsa_tests.rs │ │ ├── mod.rs │ │ └── sm_unsafe_scalars.rs ├── hashes │ └── zkevm-keccak │ │ ├── Cargo.toml │ │ ├── data │ │ └── config.json │ │ └── src │ │ ├── keccak_packed_multi.rs │ │ ├── keccak_packed_multi │ │ └── tests.rs │ │ ├── lib.rs │ │ ├── util.rs │ │ └── util │ │ ├── constraint_builder.rs │ │ ├── eth_types.rs │ │ └── expression.rs ├── make_docs.sh ├── rust-toolchain └── rustfmt.toml ├── JumpCrypto ├── Cargo.lock ├── Cargo.toml └── src │ ├── keccak256.rs │ ├── lib.rs │ ├── main.rs │ ├── nonnative │ ├── README.md │ ├── gadgets │ │ ├── biguint.rs │ │ └── mod.rs │ └── mod.rs │ ├── types.rs │ └── u32 │ ├── README.md │ ├── gadgets │ ├── arithmetic_u32.rs │ ├── binary_u32.rs │ ├── interleaved_u32.rs │ ├── mod.rs │ ├── multiple_comparison.rs │ └── range_check.rs │ ├── gates │ ├── add_many_u32.rs │ ├── arithmetic_u32.rs │ ├── comparison.rs │ ├── interleave_u32.rs │ ├── mod.rs │ ├── range_check_u32.rs │ ├── subtraction_u32.rs │ ├── uninterleave_to_b32.rs │ └── uninterleave_to_u32.rs │ ├── mod.rs │ └── witness.rs ├── LICENSE ├── Maru ├── Cargo.lock ├── Cargo.toml ├── keccak_ctl │ ├── Cargo.toml │ └── src │ │ ├── get_challenges.rs │ │ ├── keccak.rs │ │ ├── keccak_ctl_stark.rs │ │ ├── keccak_permutation │ │ ├── columns.rs │ │ ├── constants.rs │ │ ├── ctl.rs │ │ ├── keccak_permutation_stark.rs │ │ ├── logic.rs │ │ ├── mod.rs │ │ └── round_flags.rs │ │ ├── keccak_proof.rs │ │ ├── keccak_sponge │ │ ├── columns.rs │ │ ├── ctl.rs │ │ ├── keccak_sponge_stark.rs │ │ ├── keccak_util.rs │ │ └── mod.rs │ │ ├── keccak_xor │ │ ├── columns.rs │ │ ├── ctl.rs │ │ ├── mod.rs │ │ └── xor_stark.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── proof_ctl.rs │ │ ├── prover_ctl.rs │ │ ├── snark_aggregation.rs │ │ ├── stark_aggregation.rs │ │ └── verifier_ctl.rs └── starky_ctl │ ├── Cargo.toml │ └── src │ ├── config.rs │ ├── constraint_consumer.rs │ ├── cross_table_lookup.rs │ ├── get_challenges.rs │ ├── lib.rs │ ├── permutation.rs │ ├── proof.rs │ ├── prover.rs │ ├── recursion.rs │ ├── recursion_no_ctl.rs │ ├── serialization.rs │ ├── stark.rs │ ├── stark_testing.rs │ ├── table.rs │ ├── util.rs │ ├── vanishing_poly.rs │ ├── vars.rs │ └── verifier.rs ├── PolygonZero-plonky3 └── Plonky3 │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── air │ ├── Cargo.toml │ └── src │ │ ├── air.rs │ │ ├── lib.rs │ │ ├── two_row_matrix.rs │ │ └── virtual_column.rs │ ├── baby-bear │ ├── Cargo.toml │ ├── benches │ │ ├── inverse.rs │ │ └── root_7.rs │ └── src │ │ ├── aarch64_neon.rs │ │ ├── baby_bear.rs │ │ └── lib.rs │ ├── blake3 │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── brakedown │ ├── Cargo.toml │ ├── benches │ │ └── encode.rs │ └── src │ │ ├── brakedown_code.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ └── standard_fast.rs │ ├── challenger │ ├── Cargo.toml │ └── src │ │ ├── duplex_challenger.rs │ │ ├── hash_challenger.rs │ │ └── lib.rs │ ├── code │ ├── Cargo.toml │ └── src │ │ ├── code.rs │ │ ├── identity.rs │ │ ├── lib.rs │ │ ├── registry.rs │ │ └── systematic.rs │ ├── commit │ ├── Cargo.toml │ └── src │ │ ├── adapters │ │ ├── mod.rs │ │ ├── multi_from_uni_pcs.rs │ │ └── uni_from_multi_pcs.rs │ │ ├── lib.rs │ │ ├── mmcs.rs │ │ └── pcs.rs │ ├── dft │ ├── Cargo.toml │ ├── benches │ │ └── fft.rs │ └── src │ │ ├── butterflies.rs │ │ ├── lib.rs │ │ ├── naive.rs │ │ ├── radix_2_bowers.rs │ │ ├── radix_2_dit.rs │ │ ├── radix_2_dit_parallel.rs │ │ ├── testing.rs │ │ ├── traits.rs │ │ └── util.rs │ ├── field-testing │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── field │ ├── Cargo.toml │ └── src │ │ ├── array.rs │ │ ├── batch_inverse.rs │ │ ├── exponentiation.rs │ │ ├── extension │ │ ├── cubic.rs │ │ ├── mod.rs │ │ └── quadratic.rs │ │ ├── field.rs │ │ ├── helpers.rs │ │ ├── lib.rs │ │ ├── packed.rs │ │ └── symbolic.rs │ ├── fri │ ├── Cargo.toml │ └── src │ │ ├── config.rs │ │ ├── fold_even_odd.rs │ │ ├── lib.rs │ │ ├── proof.rs │ │ ├── prover.rs │ │ └── verifier.rs │ ├── goldilocks │ ├── Cargo.toml │ ├── benches │ │ ├── inverse.rs │ │ └── root_7.rs │ └── src │ │ ├── extension.rs │ │ └── lib.rs │ ├── interpolation │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── keccak-air │ ├── Cargo.toml │ ├── benches │ │ └── keccak_air.rs │ └── src │ │ ├── air.rs │ │ ├── columns.rs │ │ ├── constants.rs │ │ ├── generation.rs │ │ ├── lib.rs │ │ ├── logic.rs │ │ └── round_flags.rs │ ├── keccak │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── lde │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── naive.rs │ ├── ldt │ ├── Cargo.toml │ └── src │ │ ├── ldt_based_pcs.rs │ │ ├── lib.rs │ │ └── quotient.rs │ ├── matrix │ ├── Cargo.toml │ └── src │ │ ├── dense.rs │ │ ├── lib.rs │ │ ├── mul.rs │ │ ├── sparse.rs │ │ ├── stack.rs │ │ └── strided.rs │ ├── maybe-rayon │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── mds │ ├── Cargo.toml │ ├── benches │ │ └── mds.rs │ └── src │ │ ├── babybear.rs │ │ ├── coset_mds.rs │ │ ├── goldilocks.rs │ │ ├── integrated_coset_mds.rs │ │ ├── lib.rs │ │ ├── mersenne31.rs │ │ └── util.rs │ ├── merkle-tree │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── mersenne-31 │ ├── Cargo.toml │ ├── benches │ │ ├── inverse.rs │ │ └── root_5.rs │ └── src │ │ ├── aarch64_neon.rs │ │ ├── complex.rs │ │ ├── dft.rs │ │ ├── extension.rs │ │ └── lib.rs │ ├── monolith │ ├── Cargo.toml │ ├── benches │ │ └── permute.rs │ └── src │ │ ├── lib.rs │ │ ├── monolith.rs │ │ ├── monolith_mds.rs │ │ └── util.rs │ ├── multi-stark │ ├── Cargo.toml │ ├── src │ │ ├── config.rs │ │ ├── folder.rs │ │ ├── lib.rs │ │ ├── prover.rs │ │ └── sym_var.rs │ └── tests │ │ └── mul_air.rs │ ├── poseidon │ ├── Cargo.toml │ ├── benches │ │ └── poseidon.rs │ └── src │ │ └── lib.rs │ ├── poseidon2 │ ├── Cargo.toml │ ├── benches │ │ └── poseidon2.rs │ └── src │ │ ├── babybear.rs │ │ ├── diffusion.rs │ │ ├── goldilocks.rs │ │ └── lib.rs │ ├── reed-solomon │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── rescue │ ├── Cargo.toml │ ├── benches │ │ └── rescue.rs │ └── src │ │ ├── inverse_sbox.rs │ │ ├── lib.rs │ │ ├── rescue.rs │ │ └── util.rs │ ├── rustfmt.toml │ ├── symmetric │ ├── Cargo.toml │ └── src │ │ ├── compression.rs │ │ ├── hasher.rs │ │ ├── lib.rs │ │ ├── permutation.rs │ │ └── sponge.rs │ ├── tensor-pcs │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── reshape.rs │ │ ├── tensor_pcs.rs │ │ └── wrapped_matrix.rs │ ├── uni-stark │ ├── Cargo.toml │ ├── src │ │ ├── config.rs │ │ ├── decompose.rs │ │ ├── folder.rs │ │ ├── lib.rs │ │ ├── proof.rs │ │ ├── prover.rs │ │ ├── sym_var.rs │ │ ├── verifier.rs │ │ └── zerofier_coset.rs │ └── tests │ │ └── mul_air.rs │ └── util │ ├── Cargo.toml │ └── src │ └── lib.rs ├── README.md ├── full_description.pdf └── short_description.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | target/ 3 | .vscode 4 | .idea/ -------------------------------------------------------------------------------- /Axiom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/CHANGELOG.md -------------------------------------------------------------------------------- /Axiom/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/CONTRIBUTING.md -------------------------------------------------------------------------------- /Axiom/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/Cargo.lock -------------------------------------------------------------------------------- /Axiom/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/Cargo.toml -------------------------------------------------------------------------------- /Axiom/docs/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Axiom/docs/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/COPYRIGHT.txt -------------------------------------------------------------------------------- /Axiom/docs/FiraSans-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/FiraSans-LICENSE.txt -------------------------------------------------------------------------------- /Axiom/docs/FiraSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/FiraSans-Medium.woff2 -------------------------------------------------------------------------------- /Axiom/docs/FiraSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/FiraSans-Regular.woff2 -------------------------------------------------------------------------------- /Axiom/docs/LICENSE-APACHE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/LICENSE-APACHE.txt -------------------------------------------------------------------------------- /Axiom/docs/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/LICENSE-MIT.txt -------------------------------------------------------------------------------- /Axiom/docs/NanumBarunGothic-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/NanumBarunGothic-LICENSE.txt -------------------------------------------------------------------------------- /Axiom/docs/NanumBarunGothic.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/NanumBarunGothic.ttf.woff2 -------------------------------------------------------------------------------- /Axiom/docs/SourceCodePro-It.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceCodePro-It.ttf.woff2 -------------------------------------------------------------------------------- /Axiom/docs/SourceCodePro-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceCodePro-LICENSE.txt -------------------------------------------------------------------------------- /Axiom/docs/SourceCodePro-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceCodePro-Regular.ttf.woff2 -------------------------------------------------------------------------------- /Axiom/docs/SourceCodePro-Semibold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceCodePro-Semibold.ttf.woff2 -------------------------------------------------------------------------------- /Axiom/docs/SourceSerif4-Bold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceSerif4-Bold.ttf.woff2 -------------------------------------------------------------------------------- /Axiom/docs/SourceSerif4-It.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceSerif4-It.ttf.woff2 -------------------------------------------------------------------------------- /Axiom/docs/SourceSerif4-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceSerif4-LICENSE.md -------------------------------------------------------------------------------- /Axiom/docs/SourceSerif4-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/SourceSerif4-Regular.ttf.woff2 -------------------------------------------------------------------------------- /Axiom/docs/ayu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/ayu.css -------------------------------------------------------------------------------- /Axiom/docs/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/clipboard.svg -------------------------------------------------------------------------------- /Axiom/docs/crates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/crates.js -------------------------------------------------------------------------------- /Axiom/docs/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/dark.css -------------------------------------------------------------------------------- /Axiom/docs/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/down-arrow.svg -------------------------------------------------------------------------------- /Axiom/docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/favicon.svg -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/all.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/constant.SKIP_FIRST_PASS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/constant.SKIP_FIRST_PASS.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/enum.QuantumCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/enum.QuantumCell.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/builder/enum.CircuitBuilderStage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/builder/enum.CircuitBuilderStage.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/builder/fn.assign_threads_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/builder/fn.assign_threads_in.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/builder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/builder/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/builder/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/builder/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/builder/struct.GateThreadBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/builder/struct.GateThreadBuilder.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/builder/struct.KeygenAssignments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/builder/struct.KeygenAssignments.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/builder/type.ThreadBreakPoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/builder/type.ThreadBreakPoints.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/flex_gate/constant.MAX_PHASE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/flex_gate/constant.MAX_PHASE.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/flex_gate/enum.GateStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/flex_gate/enum.GateStrategy.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/flex_gate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/flex_gate/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/flex_gate/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/flex_gate/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/flex_gate/struct.BasicGateConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/flex_gate/struct.BasicGateConfig.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/flex_gate/struct.FlexGateConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/flex_gate/struct.FlexGateConfig.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/flex_gate/struct.GateChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/flex_gate/struct.GateChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/range/enum.RangeStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/range/enum.RangeStrategy.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/range/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/range/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/range/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/range/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/range/struct.RangeChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/range/struct.RangeChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/range/struct.RangeConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/range/struct.RangeConfig.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/range/trait.RangeInstructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/range/trait.RangeInstructions.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/gates/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/gates/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/struct.AssignedValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/struct.AssignedValue.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/struct.Context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/struct.Context.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/struct.ContextCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/struct.ContextCell.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.bigint_to_fe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.bigint_to_fe.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.biguint_to_fe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.biguint_to_fe.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.bit_length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.bit_length.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.compose.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.decompose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.decompose.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.decompose_bigint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.decompose_bigint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.decompose_bigint_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.decompose_bigint_option.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.decompose_biguint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.decompose_biguint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.decompose_fe_to_u64_limbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.decompose_fe_to_u64_limbs.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.fe_to_bigint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.fe_to_bigint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.fe_to_biguint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.fe_to_biguint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.log2_ceil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.log2_ceil.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.modulus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.modulus.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.power_of_two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.power_of_two.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fn.value_to_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fn.value_to_option.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fs/fn.gen_srs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fs/fn.gen_srs.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fs/fn.read_or_create_srs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fs/fn.read_or_create_srs.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fs/fn.read_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fs/fn.read_params.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fs/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/fs/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/fs/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/trait.BigPrimeField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/trait.BigPrimeField.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/trait.CurveAffineExt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/trait.CurveAffineExt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_base/utils/trait.ScalarField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_base/utils/trait.ScalarField.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/all.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/add_no_carry/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/add_no_carry/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/add_no_carry/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/add_no_carry/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/add_no_carry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/add_no_carry/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/add_no_carry/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/add_no_carry/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_equal/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_equal/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_equal/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_equal/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_equal/fn.wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_equal/fn.wrapper.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_equal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_equal/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_equal/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_equal/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_zero/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_zero/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_zero/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_zero/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_zero/fn.positive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_zero/fn.positive.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_zero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_zero/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_is_zero/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_is_zero/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_less_than/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_less_than/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_less_than/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/big_less_than/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/big_less_than/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {"fn":[["assign",""]]}; -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/carry_mod/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/carry_mod/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/carry_mod/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/carry_mod/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/carry_mod/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {"fn":[["crt",""]]}; -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/check_carry_mod_to_zero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/check_carry_mod_to_zero/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/check_carry_mod_to_zero/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {"fn":[["crt",""]]}; -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/check_carry_to_zero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/check_carry_to_zero/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/check_carry_to_zero/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {"fn":[["truncate",""]]}; -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/enum.BigIntStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/enum.BigIntStrategy.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/mul_no_carry/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/mul_no_carry/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/mul_no_carry/fn.truncate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/mul_no_carry/fn.truncate.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/mul_no_carry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/mul_no_carry/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/mul_no_carry/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/mul_no_carry/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/negative/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/negative/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/negative/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/negative/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/negative/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {"fn":[["assign",""]]}; -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/scalar_mul_no_carry/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/scalar_mul_no_carry/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/scalar_mul_no_carry/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/scalar_mul_no_carry/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/scalar_mul_no_carry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/scalar_mul_no_carry/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/select/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/select/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/select/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/select/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/select/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/select/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/select/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/select/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/select_by_indicator/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/select_by_indicator/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/select_by_indicator/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/select_by_indicator/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/select_by_indicator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/select_by_indicator/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/struct.CRTInteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/struct.CRTInteger.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/struct.FixedCRTInteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/struct.FixedCRTInteger.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/struct.FixedOverflowInteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/struct.FixedOverflowInteger.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/struct.OverflowInteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/struct.OverflowInteger.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub_no_carry/fn.assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub_no_carry/fn.assign.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub_no_carry/fn.crt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub_no_carry/fn.crt.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub_no_carry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub_no_carry/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bigint/sub_no_carry/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bigint/sub_no_carry/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/final_exp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/final_exp/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/final_exp/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {}; -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/pairing/fn.miller_loop_BN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/pairing/fn.miller_loop_BN.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/pairing/fn.twisted_frobenius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/pairing/fn.twisted_frobenius.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/pairing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/pairing/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/pairing/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/pairing/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/pairing/struct.PairingChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/pairing/struct.PairingChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/type.Fp12Chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/type.Fp12Chip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/type.Fp2Chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/type.Fp2Chip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/type.FpChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/type.FpChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/type.FpPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/type.FpPoint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/bn254/type.FqPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/bn254/type.FqPoint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/ecdsa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/ecdsa/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/ecdsa/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {"fn":[["ecdsa_verify_no_pubkey_check",""]]}; -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fixed_base/fn.msm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fixed_base/fn.msm.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fixed_base/fn.msm_par.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fixed_base/fn.msm_par.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fixed_base/fn.scalar_multiply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fixed_base/fn.scalar_multiply.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fixed_base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fixed_base/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fixed_base/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fixed_base/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fixed_base/struct.FixedEcPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fixed_base/struct.FixedEcPoint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.ec_add_unequal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.ec_add_unequal.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.ec_double.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.ec_double.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.ec_double_and_add_unequal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.ec_double_and_add_unequal.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.ec_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.ec_select.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.ec_select_by_indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.ec_select_by_indicator.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.ec_select_from_bits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.ec_select_from_bits.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.ec_sub_unequal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.ec_sub_unequal.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.get_naf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.get_naf.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.is_on_curve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.is_on_curve.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.load_random_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.load_random_point.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.multi_scalar_multiply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.multi_scalar_multiply.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/fn.scalar_multiply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/fn.scalar_multiply.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/pippenger/fn.multi_exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/pippenger/fn.multi_exp.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/pippenger/fn.multi_exp_par.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/pippenger/fn.multi_exp_par.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/pippenger/fn.multi_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/pippenger/fn.multi_product.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/pippenger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/pippenger/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/pippenger/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/pippenger/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/struct.EcPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/struct.EcPoint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/struct.EccChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/struct.EccChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/ecc/type.BaseFieldEccChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/ecc/type.BaseFieldEccChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/enum.FpStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/enum.FpStrategy.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp/struct.FpChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp/struct.FpChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp/type.BaseFieldChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp/type.BaseFieldChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp/type.FpConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp/type.FpConfig.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp12/fn.mul_no_carry_w6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp12/fn.mul_no_carry_w6.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp12/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp12/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp12/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp12/struct.Fp12Chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp12/struct.Fp12Chip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp2/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp2/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp2/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/fp2/struct.Fp2Chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/fp2/struct.Fp2Chip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/struct.FieldExtPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/struct.FieldExtPoint.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/trait.FieldChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/trait.FieldChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/trait.FieldExtConstructor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/trait.FieldExtConstructor.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/trait.PrimeFieldChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/trait.PrimeFieldChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/trait.Selectable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/trait.Selectable.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/fields/traitalias.PrimeField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/fields/traitalias.PrimeField.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/secp256k1/constant.SECP_B.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/secp256k1/constant.SECP_B.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/secp256k1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/secp256k1/index.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/secp256k1/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/secp256k1/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/secp256k1/type.FpChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/secp256k1/type.FpChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/secp256k1/type.FqChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/secp256k1/type.FqChip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/secp256k1/type.Secp256k1Chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/secp256k1/type.Secp256k1Chip.html -------------------------------------------------------------------------------- /Axiom/docs/halo2_ecc/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/halo2_ecc/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/help.html -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/clone/trait.Clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/clone/trait.Clone.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/cmp/trait.PartialEq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/cmp/trait.PartialEq.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/convert/trait.From.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/convert/trait.From.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/default/trait.Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/default/trait.Default.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/fmt/trait.Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/fmt/trait.Debug.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/marker/trait.Copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/marker/trait.Copy.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/marker/trait.Freeze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/marker/trait.Freeze.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/marker/trait.Send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/marker/trait.Send.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/marker/trait.Sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/marker/trait.Sync.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/core/marker/trait.Unpin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/core/marker/trait.Unpin.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/halo2_base/utils/trait.ScalarField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/halo2_base/utils/trait.ScalarField.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/halo2_ecc/fields/trait.FieldChip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/halo2_ecc/fields/trait.FieldChip.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/halo2_ecc/fields/trait.Selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/halo2_ecc/fields/trait.Selectable.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/serde/de/trait.Deserialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/serde/de/trait.Deserialize.js -------------------------------------------------------------------------------- /Axiom/docs/implementors/serde/ser/trait.Serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/implementors/serde/ser/trait.Serialize.js -------------------------------------------------------------------------------- /Axiom/docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Axiom/docs/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/light.css -------------------------------------------------------------------------------- /Axiom/docs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/main.js -------------------------------------------------------------------------------- /Axiom/docs/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/normalize.css -------------------------------------------------------------------------------- /Axiom/docs/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/noscript.css -------------------------------------------------------------------------------- /Axiom/docs/rust-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/rust-logo.svg -------------------------------------------------------------------------------- /Axiom/docs/rustdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/rustdoc.css -------------------------------------------------------------------------------- /Axiom/docs/search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/search-index.js -------------------------------------------------------------------------------- /Axiom/docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/search.js -------------------------------------------------------------------------------- /Axiom/docs/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/settings.css -------------------------------------------------------------------------------- /Axiom/docs/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/settings.html -------------------------------------------------------------------------------- /Axiom/docs/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/settings.js -------------------------------------------------------------------------------- /Axiom/docs/source-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/source-files.js -------------------------------------------------------------------------------- /Axiom/docs/source-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/source-script.js -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_base/gates/builder.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_base/gates/builder.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_base/gates/flex_gate.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_base/gates/flex_gate.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_base/gates/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_base/gates/mod.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_base/gates/range.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_base/gates/range.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_base/lib.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_base/lib.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_base/utils.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_base/utils.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/add_no_carry.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/add_no_carry.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/big_is_equal.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/big_is_equal.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/big_is_zero.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/big_is_zero.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/big_less_than.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/big_less_than.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/carry_mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/carry_mod.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/check_carry_to_zero.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/check_carry_to_zero.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/mod.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/mul_no_carry.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/mul_no_carry.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/negative.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/negative.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/scalar_mul_no_carry.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/scalar_mul_no_carry.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/select.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/select.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/select_by_indicator.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/select_by_indicator.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/sub.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/sub.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bigint/sub_no_carry.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bigint/sub_no_carry.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bn254/final_exp.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bn254/final_exp.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bn254/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bn254/mod.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/bn254/pairing.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/bn254/pairing.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/ecc/ecdsa.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/ecc/ecdsa.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/ecc/fixed_base.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/ecc/fixed_base.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/ecc/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/ecc/mod.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/ecc/pippenger.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/ecc/pippenger.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/fields/fp.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/fields/fp.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/fields/fp12.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/fields/fp12.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/fields/fp2.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/fields/fp2.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/fields/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/fields/mod.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/lib.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/lib.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/halo2_ecc/secp256k1/mod.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/halo2_ecc/secp256k1/mod.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/zkevm_keccak/keccak_packed_multi.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/zkevm_keccak/keccak_packed_multi.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/zkevm_keccak/lib.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/zkevm_keccak/lib.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/zkevm_keccak/util.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/zkevm_keccak/util.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/zkevm_keccak/util/constraint_builder.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/zkevm_keccak/util/constraint_builder.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/zkevm_keccak/util/eth_types.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/zkevm_keccak/util/eth_types.rs.html -------------------------------------------------------------------------------- /Axiom/docs/src/zkevm_keccak/util/expression.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/src/zkevm_keccak/util/expression.rs.html -------------------------------------------------------------------------------- /Axiom/docs/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/storage.js -------------------------------------------------------------------------------- /Axiom/docs/toggle-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/toggle-minus.svg -------------------------------------------------------------------------------- /Axiom/docs/toggle-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/toggle-plus.svg -------------------------------------------------------------------------------- /Axiom/docs/wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/wheel.svg -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/all.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/keccak_packed_multi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/keccak_packed_multi/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/keccak_packed_multi/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/keccak_packed_multi/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.address!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.address!.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.address.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.impl_expr!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.impl_expr!.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.impl_expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.impl_expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.word!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.word!.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.word.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.word.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.word_map!.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.word_map!.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/macro.word_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/macro.word_map.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.BIT_COUNT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.BIT_COUNT.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.BIT_SIZE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.BIT_SIZE.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.KECCAK_WIDTH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.KECCAK_WIDTH.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.NUM_BITS_PER_BYTE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.NUM_BITS_PER_BYTE.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.NUM_BITS_PER_WORD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.NUM_BITS_PER_WORD.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.NUM_BYTES_PER_WORD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.NUM_BYTES_PER_WORD.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.NUM_BYTES_TO_ABSORB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.NUM_BYTES_TO_ABSORB.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.NUM_ROUNDS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.NUM_ROUNDS.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.NUM_WORDS_TO_ABSORB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.NUM_WORDS_TO_ABSORB.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.RATE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.RATE.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constant.RATE_IN_BITS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constant.RATE_IN_BITS.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constraint_builder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/constraint_builder/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/constraint_builder/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {"struct":[["BaseConstraintBuilder",""]]}; -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.AccessList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.AccessList.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.Block.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.Bytes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.Bytes.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.H160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.H160.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.H256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.H256.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.H64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.H64.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.Signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.Signature.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.Transaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.Transaction.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.U256.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/struct.U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/struct.U64.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/trait.Field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/trait.Field.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/trait.ToAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/trait.ToAddress.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/trait.ToBigEndian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/trait.ToBigEndian.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/trait.ToScalar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/trait.ToScalar.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/trait.ToWord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/trait.ToWord.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/type.Address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/type.Address.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/type.Hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/type.Hash.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/eth_types/type.Word.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/eth_types/type.Word.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/and/fn.expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/and/fn.expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/and/fn.value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/and/fn.value.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/and/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/and/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/and/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/and/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/fn.pow_of_two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/fn.pow_of_two.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/not/fn.expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/not/fn.expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/not/fn.value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/not/fn.value.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/not/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/not/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/not/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/not/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/or/fn.expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/or/fn.expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/or/fn.value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/or/fn.value.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/or/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/or/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/or/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/or/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/select/fn.expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/select/fn.expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/select/fn.value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/select/fn.value.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/select/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/select/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/sum/fn.expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/sum/fn.expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/sum/fn.value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/sum/fn.value.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/sum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/sum/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/sum/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/sum/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/trait.Expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/trait.Expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/xor/fn.expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/xor/fn.expr.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/xor/fn.value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/xor/fn.value.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/xor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/xor/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/expression/xor/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/expression/xor/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.field_xor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.field_xor.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.get_absorb_positions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.get_absorb_positions.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.get_degree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.get_degree.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.get_num_bits_per_lookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.get_num_bits_per_lookup.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.get_rotate_count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.get_rotate_count.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.into_bits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.into_bits.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.pack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.pack.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.pack_part.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.pack_part.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.pack_u64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.pack_u64.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.pack_with_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.pack_with_base.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.rotate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.rotate.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.rotate_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.rotate_left.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.rotate_rev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.rotate_rev.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.target_part_sizes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.target_part_sizes.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/fn.unpack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/fn.unpack.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/scatter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/scatter/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/scatter/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {}; -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/sidebar-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/sidebar-items.js -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/struct.PartInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/struct.PartInfo.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/struct.WordParts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/struct.WordParts.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/to_bytes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/docs/zkevm_keccak/util/to_bytes/index.html -------------------------------------------------------------------------------- /Axiom/docs/zkevm_keccak/util/to_bytes/sidebar-items.js: -------------------------------------------------------------------------------- 1 | window.SIDEBAR_ITEMS = {}; -------------------------------------------------------------------------------- /Axiom/halo2-base/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/Cargo.toml -------------------------------------------------------------------------------- /Axiom/halo2-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/README.md -------------------------------------------------------------------------------- /Axiom/halo2-base/benches/inner_product.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/benches/inner_product.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/benches/mul.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/benches/mul.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/examples/inner_product.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/examples/inner_product.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/builder.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/builder/parallelize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/builder/parallelize.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/flex_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/flex_gate.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/range.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/README.md -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/bitwise_rotate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/bitwise_rotate.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/flex_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/flex_gate.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/general.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/idx_to_indicator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/idx_to_indicator.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/neg_prop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/neg_prop.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/pos_prop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/pos_prop.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/range_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/range_gate.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/gates/tests/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/gates/tests/utils.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/lib.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/safe_types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/safe_types/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/safe_types/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/safe_types/tests.rs -------------------------------------------------------------------------------- /Axiom/halo2-base/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-base/src/utils.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/Cargo.toml -------------------------------------------------------------------------------- /Axiom/halo2-ecc/benches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/benches/README.md -------------------------------------------------------------------------------- /Axiom/halo2-ecc/benches/fixed_base_msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/benches/fixed_base_msm.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/benches/fp_mul.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/benches/fp_mul.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/benches/msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/benches/msm.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/bench_ec_add.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/bench_ec_add.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/bench_fixed_msm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/bench_fixed_msm.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/bench_fixed_msm.t.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/bench_fixed_msm.t.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/bench_msm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/bench_msm.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/bench_msm.t.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/bench_msm.t.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/bench_pairing.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/bench_pairing.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/bench_pairing.t.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/bench_pairing.t.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/ec_add_circuit.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/ec_add_circuit.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/fixed_msm_circuit.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/fixed_msm_circuit.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/msm_circuit.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/msm_circuit.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/bn254/pairing_circuit.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/bn254/pairing_circuit.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/secp256k1/bench_ecdsa.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/secp256k1/bench_ecdsa.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/secp256k1/ecdsa_circuit.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/secp256k1/ecdsa_circuit.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/configs/secp256k1/scalar_multiplication.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/configs/secp256k1/scalar_multiplication.config -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/add_no_carry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/add_no_carry.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/big_is_equal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/big_is_equal.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/big_is_zero.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/big_is_zero.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/big_less_than.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/big_less_than.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/carry_mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/carry_mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/check_carry_mod_to_zero.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/check_carry_mod_to_zero.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/check_carry_to_zero.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/check_carry_to_zero.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/mul_no_carry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/mul_no_carry.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/negative.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/negative.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/scalar_mul_and_add_no_carry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/scalar_mul_and_add_no_carry.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/scalar_mul_no_carry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/scalar_mul_no_carry.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/select.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/select.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/select_by_indicator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/select_by_indicator.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/sub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/sub.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bigint/sub_no_carry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bigint/sub_no_carry.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/final_exp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/final_exp.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/pairing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/pairing.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/tests/ec_add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/tests/ec_add.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/tests/fixed_base_msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/tests/fixed_base_msm.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/tests/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/tests/msm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/tests/msm.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/tests/msm_sum_infinity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/tests/msm_sum_infinity.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/tests/msm_sum_infinity_fixed_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/tests/msm_sum_infinity_fixed_base.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/bn254/tests/pairing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/bn254/tests/pairing.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/ecc/ecdsa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/ecc/ecdsa.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/ecc/fixed_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/ecc/fixed_base.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/ecc/fixed_base_pippenger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/ecc/fixed_base_pippenger.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/ecc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/ecc/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/ecc/pippenger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/ecc/pippenger.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/ecc/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/ecc/tests.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/fp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/fp.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/fp12.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/fp12.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/fp2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/fp2.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/tests/fp/assert_eq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/tests/fp/assert_eq.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/tests/fp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/tests/fp/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/tests/fp12/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/tests/fp12/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/tests/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/fields/vector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/fields/vector.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/lib.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/secp256k1/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/secp256k1/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/secp256k1/tests/ecdsa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/secp256k1/tests/ecdsa.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/secp256k1/tests/ecdsa_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/secp256k1/tests/ecdsa_tests.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/secp256k1/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/secp256k1/tests/mod.rs -------------------------------------------------------------------------------- /Axiom/halo2-ecc/src/secp256k1/tests/sm_unsafe_scalars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/halo2-ecc/src/secp256k1/tests/sm_unsafe_scalars.rs -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/Cargo.toml -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/data/config.json -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/src/keccak_packed_multi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/src/keccak_packed_multi.rs -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/src/keccak_packed_multi/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/src/keccak_packed_multi/tests.rs -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/src/lib.rs -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/src/util.rs -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/src/util/constraint_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/src/util/constraint_builder.rs -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/src/util/eth_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/src/util/eth_types.rs -------------------------------------------------------------------------------- /Axiom/hashes/zkevm-keccak/src/util/expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/hashes/zkevm-keccak/src/util/expression.rs -------------------------------------------------------------------------------- /Axiom/make_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Axiom/make_docs.sh -------------------------------------------------------------------------------- /Axiom/rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2022-10-28 -------------------------------------------------------------------------------- /Axiom/rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 100 2 | use_small_heuristics = "Max" -------------------------------------------------------------------------------- /JumpCrypto/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/Cargo.lock -------------------------------------------------------------------------------- /JumpCrypto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/Cargo.toml -------------------------------------------------------------------------------- /JumpCrypto/src/keccak256.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/keccak256.rs -------------------------------------------------------------------------------- /JumpCrypto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/lib.rs -------------------------------------------------------------------------------- /JumpCrypto/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/main.rs -------------------------------------------------------------------------------- /JumpCrypto/src/nonnative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/nonnative/README.md -------------------------------------------------------------------------------- /JumpCrypto/src/nonnative/gadgets/biguint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/nonnative/gadgets/biguint.rs -------------------------------------------------------------------------------- /JumpCrypto/src/nonnative/gadgets/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod biguint; 2 | -------------------------------------------------------------------------------- /JumpCrypto/src/nonnative/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/nonnative/mod.rs -------------------------------------------------------------------------------- /JumpCrypto/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/types.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/README.md -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gadgets/arithmetic_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gadgets/arithmetic_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gadgets/binary_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gadgets/binary_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gadgets/interleaved_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gadgets/interleaved_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gadgets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gadgets/mod.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gadgets/multiple_comparison.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gadgets/multiple_comparison.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gadgets/range_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gadgets/range_check.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/add_many_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/add_many_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/arithmetic_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/arithmetic_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/comparison.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/comparison.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/interleave_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/interleave_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/mod.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/range_check_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/range_check_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/subtraction_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/subtraction_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/uninterleave_to_b32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/uninterleave_to_b32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/gates/uninterleave_to_u32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/gates/uninterleave_to_u32.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/mod.rs -------------------------------------------------------------------------------- /JumpCrypto/src/u32/witness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/JumpCrypto/src/u32/witness.rs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /Maru/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/Cargo.lock -------------------------------------------------------------------------------- /Maru/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/Cargo.toml -------------------------------------------------------------------------------- /Maru/keccak_ctl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/Cargo.toml -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/get_challenges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/get_challenges.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_ctl_stark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_ctl_stark.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_permutation/columns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_permutation/columns.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_permutation/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_permutation/constants.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_permutation/ctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_permutation/ctl.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_permutation/logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_permutation/logic.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_permutation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_permutation/mod.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_permutation/round_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_permutation/round_flags.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_proof.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_sponge/columns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_sponge/columns.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_sponge/ctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_sponge/ctl.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_sponge/keccak_sponge_stark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_sponge/keccak_sponge_stark.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_sponge/keccak_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_sponge/keccak_util.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_sponge/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_sponge/mod.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_xor/columns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_xor/columns.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_xor/ctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_xor/ctl.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_xor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_xor/mod.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/keccak_xor/xor_stark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/keccak_xor/xor_stark.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/lib.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/main.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/proof_ctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/proof_ctl.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/prover_ctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/prover_ctl.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/snark_aggregation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/snark_aggregation.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/stark_aggregation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/stark_aggregation.rs -------------------------------------------------------------------------------- /Maru/keccak_ctl/src/verifier_ctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/keccak_ctl/src/verifier_ctl.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/Cargo.toml -------------------------------------------------------------------------------- /Maru/starky_ctl/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/config.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/constraint_consumer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/constraint_consumer.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/cross_table_lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/cross_table_lookup.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/get_challenges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/get_challenges.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/lib.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/permutation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/permutation.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/proof.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/prover.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/recursion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/recursion.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/recursion_no_ctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/recursion_no_ctl.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/serialization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/serialization.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/stark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/stark.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/stark_testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/stark_testing.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/table.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/util.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/vanishing_poly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/vanishing_poly.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/vars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/vars.rs -------------------------------------------------------------------------------- /Maru/starky_ctl/src/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/Maru/starky_ctl/src/verifier.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | flamegraph.svg 4 | -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/LICENSE-APACHE -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/LICENSE-MIT -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/README.md -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/air/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/air/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/air/src/air.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/air/src/air.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/air/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/air/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/air/src/two_row_matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/air/src/two_row_matrix.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/air/src/virtual_column.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/air/src/virtual_column.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/baby-bear/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/baby-bear/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/baby-bear/benches/inverse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/baby-bear/benches/inverse.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/baby-bear/benches/root_7.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/baby-bear/benches/root_7.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/baby-bear/src/aarch64_neon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/baby-bear/src/aarch64_neon.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/baby-bear/src/baby_bear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/baby-bear/src/baby_bear.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/baby-bear/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/baby-bear/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/blake3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/blake3/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/blake3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/blake3/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/brakedown/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/brakedown/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/brakedown/benches/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/brakedown/benches/encode.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/brakedown/src/brakedown_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/brakedown/src/brakedown_code.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/brakedown/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/brakedown/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/brakedown/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/brakedown/src/macros.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/brakedown/src/standard_fast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/brakedown/src/standard_fast.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/challenger/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/challenger/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/challenger/src/hash_challenger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/challenger/src/hash_challenger.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/challenger/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/challenger/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/code/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/code/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/code/src/code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/code/src/code.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/code/src/identity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/code/src/identity.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/code/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/code/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/code/src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/code/src/registry.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/code/src/systematic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/code/src/systematic.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/commit/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/commit/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/commit/src/adapters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/commit/src/adapters/mod.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/commit/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/commit/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/commit/src/mmcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/commit/src/mmcs.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/commit/src/pcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/commit/src/pcs.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/benches/fft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/benches/fft.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/butterflies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/butterflies.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/naive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/naive.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/radix_2_bowers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/radix_2_bowers.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/radix_2_dit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/radix_2_dit.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/radix_2_dit_parallel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/radix_2_dit_parallel.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/testing.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/traits.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/dft/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/dft/src/util.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field-testing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field-testing/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field-testing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field-testing/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/array.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/batch_inverse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/batch_inverse.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/exponentiation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/exponentiation.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/extension/cubic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/extension/cubic.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/extension/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/extension/mod.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/extension/quadratic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/extension/quadratic.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/field.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/helpers.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/packed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/packed.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/field/src/symbolic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/field/src/symbolic.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/fri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/fri/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/fri/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/fri/src/config.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/fri/src/fold_even_odd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/fri/src/fold_even_odd.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/fri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/fri/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/fri/src/proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/fri/src/proof.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/fri/src/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/fri/src/prover.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/fri/src/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/fri/src/verifier.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/goldilocks/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/goldilocks/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/goldilocks/benches/inverse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/goldilocks/benches/inverse.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/goldilocks/benches/root_7.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/goldilocks/benches/root_7.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/goldilocks/src/extension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/goldilocks/src/extension.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/goldilocks/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/goldilocks/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/interpolation/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/interpolation/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/interpolation/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/interpolation/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/benches/keccak_air.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/benches/keccak_air.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/src/air.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/src/air.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/src/columns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/src/columns.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/src/constants.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/src/generation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/src/generation.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/src/logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/src/logic.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak-air/src/round_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak-air/src/round_flags.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/keccak/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/keccak/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/lde/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/lde/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/lde/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/lde/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/lde/src/naive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/lde/src/naive.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/ldt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/ldt/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/ldt/src/ldt_based_pcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/ldt/src/ldt_based_pcs.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/ldt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/ldt/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/ldt/src/quotient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/ldt/src/quotient.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/matrix/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/matrix/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/matrix/src/dense.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/matrix/src/dense.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/matrix/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/matrix/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/matrix/src/mul.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/matrix/src/mul.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/matrix/src/sparse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/matrix/src/sparse.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/matrix/src/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/matrix/src/stack.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/matrix/src/strided.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/matrix/src/strided.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/maybe-rayon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/maybe-rayon/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/maybe-rayon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/maybe-rayon/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/benches/mds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/benches/mds.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/src/babybear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/src/babybear.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/src/coset_mds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/src/coset_mds.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/src/goldilocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/src/goldilocks.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/src/integrated_coset_mds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/src/integrated_coset_mds.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/src/mersenne31.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/src/mersenne31.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mds/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mds/src/util.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/merkle-tree/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/merkle-tree/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/merkle-tree/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/merkle-tree/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/benches/inverse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/benches/inverse.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/benches/root_5.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/benches/root_5.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/src/aarch64_neon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/src/aarch64_neon.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/src/complex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/src/complex.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/src/dft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/src/dft.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/src/extension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/src/extension.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/mersenne-31/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/mersenne-31/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/monolith/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/monolith/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/monolith/benches/permute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/monolith/benches/permute.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/monolith/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/monolith/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/monolith/src/monolith.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/monolith/src/monolith.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/monolith/src/monolith_mds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/monolith/src/monolith_mds.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/monolith/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/monolith/src/util.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/multi-stark/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/multi-stark/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/multi-stark/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/multi-stark/src/config.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/multi-stark/src/folder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/multi-stark/src/folder.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/multi-stark/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/multi-stark/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/multi-stark/src/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/multi-stark/src/prover.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/multi-stark/src/sym_var.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/multi-stark/src/sym_var.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/multi-stark/tests/mul_air.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/multi-stark/tests/mul_air.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon/benches/poseidon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon/benches/poseidon.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon2/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon2/benches/poseidon2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon2/benches/poseidon2.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon2/src/babybear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon2/src/babybear.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon2/src/diffusion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon2/src/diffusion.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon2/src/goldilocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon2/src/goldilocks.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/poseidon2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/poseidon2/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/reed-solomon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/reed-solomon/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/reed-solomon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/reed-solomon/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/rescue/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/rescue/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/rescue/benches/rescue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/rescue/benches/rescue.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/rescue/src/inverse_sbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/rescue/src/inverse_sbox.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/rescue/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/rescue/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/rescue/src/rescue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/rescue/src/rescue.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/rescue/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/rescue/src/util.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/rustfmt.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/symmetric/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/symmetric/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/symmetric/src/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/symmetric/src/compression.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/symmetric/src/hasher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/symmetric/src/hasher.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/symmetric/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/symmetric/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/symmetric/src/permutation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/symmetric/src/permutation.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/symmetric/src/sponge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/symmetric/src/sponge.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/tensor-pcs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/tensor-pcs/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/tensor-pcs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/tensor-pcs/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/tensor-pcs/src/reshape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/tensor-pcs/src/reshape.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/tensor-pcs/src/tensor_pcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/tensor-pcs/src/tensor_pcs.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/tensor-pcs/src/wrapped_matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/tensor-pcs/src/wrapped_matrix.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/config.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/decompose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/decompose.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/folder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/folder.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/lib.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/proof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/proof.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/prover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/prover.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/sym_var.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/sym_var.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/verifier.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/src/zerofier_coset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/src/zerofier_coset.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/uni-stark/tests/mul_air.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/uni-stark/tests/mul_air.rs -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/util/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/util/Cargo.toml -------------------------------------------------------------------------------- /PolygonZero-plonky3/Plonky3/util/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/PolygonZero-plonky3/Plonky3/util/src/lib.rs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /full_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/full_description.pdf -------------------------------------------------------------------------------- /short_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proxima-one/keccak-circuit-benchmarks/HEAD/short_description.pdf --------------------------------------------------------------------------------