├── .github └── workflows │ ├── block-pr-to-main-from-not-develop.yaml │ ├── build-claasp-base-image.yaml │ ├── build-main-webapp-image.yaml │ ├── build-staging-webapp-image.yaml │ ├── fork-run-pytest.yaml │ ├── generate-and-submit-documentation.yaml │ ├── publish-claasp-on-pypi.yaml │ ├── run-benchmark-tests.yaml │ ├── run-doctest.yaml │ ├── run-pytest-and-sonarcloud-scan.yaml │ └── update-changelog.yaml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── claasp ├── DTOs │ ├── __init__.py │ ├── component_state.py │ └── power_of_2_word_based_dto.py ├── __init__.py ├── cipher.py ├── cipher_modules │ ├── __init__.py │ ├── algebraic_tests.py │ ├── avalanche_tests.py │ ├── code_generator.py │ ├── component_analysis_tests.py │ ├── continuous_diffusion_analysis.py │ ├── division_trail_search.py │ ├── evaluator.py │ ├── generic_bit_based_c_functions.c │ ├── generic_bit_based_c_functions.h │ ├── generic_functions.py │ ├── generic_functions_continuous_diffusion_analysis.py │ ├── generic_functions_vectorized_bit.py │ ├── generic_functions_vectorized_byte.py │ ├── generic_word_based_c_functions.c │ ├── generic_word_based_c_functions.h │ ├── graph_generator.py │ ├── inverse_cipher.py │ ├── models │ │ ├── __init__.py │ │ ├── algebraic │ │ │ ├── __init__.py │ │ │ ├── algebraic_model.py │ │ │ ├── boolean_polynomial_ring.py │ │ │ └── constraints.py │ │ ├── cp │ │ │ ├── __init__.py │ │ │ ├── minizinc_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── mzn_bct_predicates.py │ │ │ │ ├── usefulfunctions.py │ │ │ │ └── utils.py │ │ │ ├── mzn_model.py │ │ │ ├── mzn_models │ │ │ │ ├── __init__.py │ │ │ │ ├── mzn_boomerang_model_arx_optimized.py │ │ │ │ ├── mzn_cipher_model.py │ │ │ │ ├── mzn_cipher_model_arx_optimized.py │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model_arx_optimized.py │ │ │ │ ├── mzn_hybrid_impossible_xor_differential_model.py │ │ │ │ ├── mzn_impossible_xor_differential_model.py │ │ │ │ ├── mzn_wordwise_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── mzn_xor_differential_model.py │ │ │ │ ├── mzn_xor_differential_model_arx_optimized.py │ │ │ │ ├── mzn_xor_differential_number_of_active_sboxes_model.py │ │ │ │ ├── mzn_xor_differential_trail_search_fixing_number_of_active_sboxes_model.py │ │ │ │ └── mzn_xor_linear_model.py │ │ │ └── solvers.py │ │ ├── milp │ │ │ ├── __init__.py │ │ │ ├── milp_model.py │ │ │ ├── milp_models │ │ │ │ ├── __init__.py │ │ │ │ ├── milp_bitwise_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── milp_bitwise_impossible_xor_differential_model.py │ │ │ │ ├── milp_cipher_model.py │ │ │ │ ├── milp_wordwise_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── milp_wordwise_impossible_xor_differential_model.py │ │ │ │ ├── milp_xor_differential_model.py │ │ │ │ └── milp_xor_linear_model.py │ │ │ ├── solvers.py │ │ │ ├── tmp │ │ │ │ └── tea_cipher_xordiff_model.lp │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── dictionary_containing_truncated_input_pattern_inequalities.obj │ │ │ │ ├── dictionary_containing_truncated_mds_inequalities.obj │ │ │ │ ├── dictionary_containing_truncated_xor_inequalities_between_n_input_bits.obj │ │ │ │ ├── dictionary_containing_xor_inequalities_between_n_input_bits.obj │ │ │ │ ├── dictionary_that_contains_inequalities_for_large_sboxes.obj │ │ │ │ ├── dictionary_that_contains_inequalities_for_large_sboxes_xor_linear.obj │ │ │ │ ├── dictionary_that_contains_inequalities_for_sboxes_with_undisturbed_bits.obj │ │ │ │ ├── dictionary_that_contains_inequalities_for_small_sboxes.obj │ │ │ │ ├── dictionary_that_contains_inequalities_for_small_sboxes_xor_linear.obj │ │ │ │ ├── generate_inequalities_for_and_operation_2_input_bits.py │ │ │ │ ├── generate_inequalities_for_large_sboxes.py │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_mds_matrices.py │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_xor_with_n_input_bits.py │ │ │ │ ├── generate_inequalities_for_xor_with_n_input_bits.py │ │ │ │ ├── generate_sbox_inequalities_for_trail_search.py │ │ │ │ ├── generate_undisturbed_bits_inequalities_for_sboxes.py │ │ │ │ ├── milp_name_mappings.py │ │ │ │ ├── milp_truncated_utils.py │ │ │ │ ├── mzn_predicates.py │ │ │ │ └── utils.py │ │ ├── sat │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── cms_models │ │ │ │ ├── __init__.py │ │ │ │ ├── cms_bitwise_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── cms_cipher_model.py │ │ │ │ ├── cms_xor_differential_model.py │ │ │ │ └── cms_xor_linear_model.py │ │ │ ├── sat_model.py │ │ │ ├── sat_models │ │ │ │ ├── __init__.py │ │ │ │ ├── sat_bitwise_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── sat_cipher_model.py │ │ │ │ ├── sat_differential_linear_model.py │ │ │ │ ├── sat_probabilistic_xor_truncated_differential_model.py │ │ │ │ ├── sat_semi_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── sat_shared_difference_paired_input_differential_linear_model.py │ │ │ │ ├── sat_shared_difference_paired_input_differential_model.py │ │ │ │ ├── sat_truncated_xor_differential_model.py │ │ │ │ ├── sat_xor_differential_model.py │ │ │ │ └── sat_xor_linear_model.py │ │ │ ├── solvers.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── mzn_predicates.py │ │ │ │ ├── n_window_heuristic_helper.py │ │ │ │ └── utils.py │ │ ├── smt │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── smt_model.py │ │ │ ├── smt_models │ │ │ │ ├── __init__.py │ │ │ │ ├── smt_cipher_model.py │ │ │ │ ├── smt_deterministic_truncated_xor_differential_model.py │ │ │ │ ├── smt_xor_differential_model.py │ │ │ │ └── smt_xor_linear_model.py │ │ │ ├── solvers.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ └── utils.py │ │ └── utils.py │ ├── neural_network_tests.py │ ├── report.py │ ├── statistical_tests │ │ ├── __init__.py │ │ ├── dataset_generator.py │ │ ├── dieharder_statistical_tests.py │ │ ├── finalAnalysisReportExample.txt │ │ ├── input_data_example │ │ └── nist_statistical_tests.py │ └── tester.py ├── ciphers │ ├── __init__.py │ ├── block_ciphers │ │ ├── __init__.py │ │ ├── aes_block_cipher.py │ │ ├── aradi_block_cipher.py │ │ ├── aradi_block_cipher_sbox.py │ │ ├── aradi_block_cipher_sbox_and_compact_linear_map.py │ │ ├── baksheesh_block_cipher.py │ │ ├── ballet_block_cipher.py │ │ ├── bea1_block_cipher.py │ │ ├── des_block_cipher.py │ │ ├── des_exact_key_length_block_cipher.py │ │ ├── hight_block_cipher.py │ │ ├── kasumi_block_cipher.py │ │ ├── lblock_block_cipher.py │ │ ├── lea_block_cipher.py │ │ ├── lowmc_block_cipher.py │ │ ├── lowmc_generate_matrices.py │ │ ├── midori_block_cipher.py │ │ ├── present_block_cipher.py │ │ ├── prince_block_cipher.py │ │ ├── prince_v2_block_cipher.py │ │ ├── qarmav2_block_cipher.py │ │ ├── qarmav2_with_mixcolumn_block_cipher.py │ │ ├── raiden_block_cipher.py │ │ ├── rc5_block_cipher.py │ │ ├── scarf_block_cipher.py │ │ ├── simeck_block_cipher.py │ │ ├── simeck_sbox_block_cipher.py │ │ ├── simon_block_cipher.py │ │ ├── simon_sbox_block_cipher.py │ │ ├── skinny_block_cipher.py │ │ ├── sparx_block_cipher.py │ │ ├── speck_block_cipher.py │ │ ├── speedy_block_cipher.py │ │ ├── tea_block_cipher.py │ │ ├── threefish_block_cipher.py │ │ ├── twine_block_cipher.py │ │ ├── twofish_block_cipher.py │ │ ├── ublock_block_cipher.py │ │ └── xtea_block_cipher.py │ ├── hash_functions │ │ ├── __init__.py │ │ ├── blake2_hash_function.py │ │ ├── blake_hash_function.py │ │ ├── md5_hash_function.py │ │ ├── sha1_hash_function.py │ │ ├── sha2_hash_function.py │ │ └── whirlpool_hash_function.py │ ├── permutations │ │ ├── __init__.py │ │ ├── ascon_permutation.py │ │ ├── ascon_sbox_sigma_no_matrix_permutation.py │ │ ├── ascon_sbox_sigma_permutation.py │ │ ├── chacha_permutation.py │ │ ├── gaston_permutation.py │ │ ├── gaston_sbox_permutation.py │ │ ├── gaston_sbox_theta_permutation.py │ │ ├── gift_permutation.py │ │ ├── gift_sbox_permutation.py │ │ ├── gimli_permutation.py │ │ ├── gimli_sbox_permutation.py │ │ ├── grain_core_permutation.py │ │ ├── keccak_invertible_permutation.py │ │ ├── keccak_permutation.py │ │ ├── keccak_sbox_permutation.py │ │ ├── photon_permutation.py │ │ ├── salsa_permutation.py │ │ ├── sparkle_permutation.py │ │ ├── spongent_pi_fsr_permutation.py │ │ ├── spongent_pi_permutation.py │ │ ├── spongent_pi_precomputation_permutation.py │ │ ├── tinyjambu_32bits_word_permutation.py │ │ ├── tinyjambu_fsr_32bits_word_permutation.py │ │ ├── tinyjambu_permutation.py │ │ ├── util.py │ │ ├── xoodoo_invertible_permutation.py │ │ ├── xoodoo_permutation.py │ │ └── xoodoo_sbox_permutation.py │ ├── stream_ciphers │ │ ├── __init__.py │ │ ├── a5_1_stream_cipher.py │ │ ├── a5_2_stream_cipher.py │ │ ├── bivium_stream_cipher.py │ │ ├── bluetooth_stream_cipher_e0.py │ │ ├── chacha_stream_cipher.py │ │ ├── snow3g_stream_cipher.py │ │ ├── trivium_stream_cipher.py │ │ └── zuc_stream_cipher.py │ └── toys │ │ ├── __init__.py │ │ ├── constant_block_cipher.py │ │ ├── fancy_block_cipher.py │ │ ├── identity_block_cipher.py │ │ ├── toy_cipherfour.py │ │ ├── toyfeistel.py │ │ ├── toyspn1.py │ │ └── toyspn2.py ├── component.py ├── components │ ├── __init__.py │ ├── and_component.py │ ├── cipher_output_component.py │ ├── concatenate_component.py │ ├── constant_component.py │ ├── fsr_component.py │ ├── intermediate_output_component.py │ ├── linear_layer_component.py │ ├── mix_column_component.py │ ├── modadd_component.py │ ├── modsub_component.py │ ├── modular_component.py │ ├── multi_input_non_linear_logical_operator_component.py │ ├── not_component.py │ ├── or_component.py │ ├── permutation_component.py │ ├── reverse_component.py │ ├── rotate_component.py │ ├── sbox_component.py │ ├── shift_component.py │ ├── shift_rows_component.py │ ├── sigma_component.py │ ├── theta_gaston_component.py │ ├── theta_keccak_component.py │ ├── theta_xoodoo_component.py │ ├── variable_rotate_component.py │ ├── variable_shift_component.py │ ├── word_permutation_component.py │ └── xor_component.py ├── compound_xor_differential_cipher.py ├── editor.py ├── input.py ├── name_mappings.py ├── round.py ├── rounds.py └── utils │ ├── __init__.py │ ├── integer.py │ ├── integer_functions.py │ ├── sage_scripts.py │ ├── sequence_operations.py │ ├── templates.py │ ├── tii_reports │ └── diffusion_test_template.csv │ └── utils.py ├── configure.sh ├── conftest.py ├── create_bash_script.py ├── create_copyright.py ├── docker ├── Dockerfile ├── README.md ├── docker-compose.yml ├── sitecustomize.py └── tag-build.png ├── docs ├── CHANGELOG.md ├── CIPHER.md ├── CONTRIBUTING.md ├── Makefile ├── README.md ├── USER_GUIDE.md ├── build │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── cipher.rst.txt │ │ ├── cipher_modules │ │ │ ├── algebraic_tests.rst.txt │ │ │ ├── avalanche_tests.rst.txt │ │ │ ├── code_generator.rst.txt │ │ │ ├── component_analysis_tests.rst.txt │ │ │ ├── continuous_diffusion_analysis.rst.txt │ │ │ ├── division_trail_search.rst.txt │ │ │ ├── evaluator.rst.txt │ │ │ ├── generic_bit_based_c_functions.rst.txt │ │ │ ├── generic_functions.rst.txt │ │ │ ├── generic_functions_continuous_diffusion_analysis.rst.txt │ │ │ ├── generic_functions_vectorized_bit.rst.txt │ │ │ ├── generic_functions_vectorized_byte.rst.txt │ │ │ ├── generic_word_based_c_functions.rst.txt │ │ │ ├── graph_generator.rst.txt │ │ │ ├── inverse_cipher.rst.txt │ │ │ ├── models │ │ │ │ ├── algebraic │ │ │ │ │ ├── algebraic_model.rst.txt │ │ │ │ │ ├── boolean_polynomial_ring.rst.txt │ │ │ │ │ └── constraints.rst.txt │ │ │ │ ├── cp │ │ │ │ │ ├── minizinc_utils │ │ │ │ │ │ ├── mzn_bct_predicates.rst.txt │ │ │ │ │ │ ├── usefulfunctions.rst.txt │ │ │ │ │ │ └── utils.rst.txt │ │ │ │ │ ├── mzn_model.rst.txt │ │ │ │ │ ├── mzn_models │ │ │ │ │ │ ├── mzn_boomerang_model_arx_optimized.rst.txt │ │ │ │ │ │ ├── mzn_cipher_model.rst.txt │ │ │ │ │ │ ├── mzn_cipher_model_arx_optimized.rst.txt │ │ │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model_arx_optimized.rst.txt │ │ │ │ │ │ ├── mzn_hybrid_impossible_xor_differential_model.rst.txt │ │ │ │ │ │ ├── mzn_impossible_xor_differential_model.rst.txt │ │ │ │ │ │ ├── mzn_wordwise_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── mzn_xor_differential_model.rst.txt │ │ │ │ │ │ ├── mzn_xor_differential_model_arx_optimized.rst.txt │ │ │ │ │ │ ├── mzn_xor_differential_number_of_active_sboxes_model.rst.txt │ │ │ │ │ │ ├── mzn_xor_differential_trail_search_fixing_number_of_active_sboxes_model.rst.txt │ │ │ │ │ │ └── mzn_xor_linear_model.rst.txt │ │ │ │ │ └── solvers.rst.txt │ │ │ │ ├── milp │ │ │ │ │ ├── milp_model.rst.txt │ │ │ │ │ ├── milp_models │ │ │ │ │ │ ├── milp_bitwise_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── milp_bitwise_impossible_xor_differential_model.rst.txt │ │ │ │ │ │ ├── milp_cipher_model.rst.txt │ │ │ │ │ │ ├── milp_wordwise_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── milp_wordwise_impossible_xor_differential_model.rst.txt │ │ │ │ │ │ ├── milp_xor_differential_model.rst.txt │ │ │ │ │ │ └── milp_xor_linear_model.rst.txt │ │ │ │ │ ├── solvers.rst.txt │ │ │ │ │ ├── tmp │ │ │ │ │ │ └── tea_cipher_xordiff_model.rst.txt │ │ │ │ │ └── utils │ │ │ │ │ │ ├── dictionary_containing_truncated_input_pattern_inequalities.rst.txt │ │ │ │ │ │ ├── dictionary_containing_truncated_mds_inequalities.rst.txt │ │ │ │ │ │ ├── dictionary_containing_truncated_xor_inequalities_between_n_input_bits.rst.txt │ │ │ │ │ │ ├── dictionary_containing_xor_inequalities_between_n_input_bits.rst.txt │ │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_large_sboxes.rst.txt │ │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_large_sboxes_xor_linear.rst.txt │ │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_sboxes_with_undisturbed_bits.rst.txt │ │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_small_sboxes.rst.txt │ │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_small_sboxes_xor_linear.rst.txt │ │ │ │ │ │ ├── generate_inequalities_for_and_operation_2_input_bits.rst.txt │ │ │ │ │ │ ├── generate_inequalities_for_large_sboxes.rst.txt │ │ │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_mds_matrices.rst.txt │ │ │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_xor_with_n_input_bits.rst.txt │ │ │ │ │ │ ├── generate_inequalities_for_xor_with_n_input_bits.rst.txt │ │ │ │ │ │ ├── generate_sbox_inequalities_for_trail_search.rst.txt │ │ │ │ │ │ ├── generate_undisturbed_bits_inequalities_for_sboxes.rst.txt │ │ │ │ │ │ ├── milp_name_mappings.rst.txt │ │ │ │ │ │ ├── milp_truncated_utils.rst.txt │ │ │ │ │ │ ├── mzn_predicates.rst.txt │ │ │ │ │ │ └── utils.rst.txt │ │ │ │ ├── sat │ │ │ │ │ ├── cms_models │ │ │ │ │ │ ├── cms_bitwise_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── cms_cipher_model.rst.txt │ │ │ │ │ │ ├── cms_xor_differential_model.rst.txt │ │ │ │ │ │ └── cms_xor_linear_model.rst.txt │ │ │ │ │ ├── sat_model.rst.txt │ │ │ │ │ ├── sat_models │ │ │ │ │ │ ├── sat_bitwise_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── sat_cipher_model.rst.txt │ │ │ │ │ │ ├── sat_differential_linear_model.rst.txt │ │ │ │ │ │ ├── sat_probabilistic_xor_truncated_differential_model.rst.txt │ │ │ │ │ │ ├── sat_semi_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── sat_shared_difference_paired_input_differential_linear_model.rst.txt │ │ │ │ │ │ ├── sat_shared_difference_paired_input_differential_model.rst.txt │ │ │ │ │ │ ├── sat_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── sat_xor_differential_model.rst.txt │ │ │ │ │ │ └── sat_xor_linear_model.rst.txt │ │ │ │ │ ├── solvers.rst.txt │ │ │ │ │ └── utils │ │ │ │ │ │ ├── mzn_predicates.rst.txt │ │ │ │ │ │ ├── n_window_heuristic_helper.rst.txt │ │ │ │ │ │ └── utils.rst.txt │ │ │ │ ├── smt │ │ │ │ │ ├── smt_model.rst.txt │ │ │ │ │ ├── smt_models │ │ │ │ │ │ ├── smt_cipher_model.rst.txt │ │ │ │ │ │ ├── smt_deterministic_truncated_xor_differential_model.rst.txt │ │ │ │ │ │ ├── smt_xor_differential_model.rst.txt │ │ │ │ │ │ └── smt_xor_linear_model.rst.txt │ │ │ │ │ ├── solvers.rst.txt │ │ │ │ │ └── utils │ │ │ │ │ │ └── utils.rst.txt │ │ │ │ └── utils.rst.txt │ │ │ ├── neural_network_tests.rst.txt │ │ │ ├── report.rst.txt │ │ │ ├── statistical_tests │ │ │ │ ├── dataset_generator.rst.txt │ │ │ │ ├── dieharder_statistical_tests.rst.txt │ │ │ │ ├── input_data_example.rst.txt │ │ │ │ └── nist_statistical_tests.rst.txt │ │ │ └── tester.rst.txt │ │ ├── ciphers │ │ │ ├── block_ciphers │ │ │ │ ├── aes_block_cipher.rst.txt │ │ │ │ ├── aradi_block_cipher.rst.txt │ │ │ │ ├── aradi_block_cipher_sbox.rst.txt │ │ │ │ ├── aradi_block_cipher_sbox_and_compact_linear_map.rst.txt │ │ │ │ ├── baksheesh_block_cipher.rst.txt │ │ │ │ ├── ballet_block_cipher.rst.txt │ │ │ │ ├── bea1_block_cipher.rst.txt │ │ │ │ ├── des_block_cipher.rst.txt │ │ │ │ ├── des_exact_key_length_block_cipher.rst.txt │ │ │ │ ├── hight_block_cipher.rst.txt │ │ │ │ ├── kasumi_block_cipher.rst.txt │ │ │ │ ├── lblock_block_cipher.rst.txt │ │ │ │ ├── lea_block_cipher.rst.txt │ │ │ │ ├── lowmc_block_cipher.rst.txt │ │ │ │ ├── lowmc_generate_matrices.rst.txt │ │ │ │ ├── midori_block_cipher.rst.txt │ │ │ │ ├── present_block_cipher.rst.txt │ │ │ │ ├── prince_block_cipher.rst.txt │ │ │ │ ├── prince_v2_block_cipher.rst.txt │ │ │ │ ├── qarmav2_block_cipher.rst.txt │ │ │ │ ├── qarmav2_with_mixcolumn_block_cipher.rst.txt │ │ │ │ ├── raiden_block_cipher.rst.txt │ │ │ │ ├── rc5_block_cipher.rst.txt │ │ │ │ ├── scarf_block_cipher.rst.txt │ │ │ │ ├── simeck_block_cipher.rst.txt │ │ │ │ ├── simeck_sbox_block_cipher.rst.txt │ │ │ │ ├── simon_block_cipher.rst.txt │ │ │ │ ├── simon_sbox_block_cipher.rst.txt │ │ │ │ ├── skinny_block_cipher.rst.txt │ │ │ │ ├── sparx_block_cipher.rst.txt │ │ │ │ ├── speck_block_cipher.rst.txt │ │ │ │ ├── speedy_block_cipher.rst.txt │ │ │ │ ├── tea_block_cipher.rst.txt │ │ │ │ ├── threefish_block_cipher.rst.txt │ │ │ │ ├── twine_block_cipher.rst.txt │ │ │ │ ├── twofish_block_cipher.rst.txt │ │ │ │ ├── ublock_block_cipher.rst.txt │ │ │ │ └── xtea_block_cipher.rst.txt │ │ │ ├── hash_functions │ │ │ │ ├── blake2_hash_function.rst.txt │ │ │ │ ├── blake_hash_function.rst.txt │ │ │ │ ├── md5_hash_function.rst.txt │ │ │ │ ├── sha1_hash_function.rst.txt │ │ │ │ ├── sha2_hash_function.rst.txt │ │ │ │ └── whirlpool_hash_function.rst.txt │ │ │ ├── permutations │ │ │ │ ├── ascon_permutation.rst.txt │ │ │ │ ├── ascon_sbox_sigma_no_matrix_permutation.rst.txt │ │ │ │ ├── ascon_sbox_sigma_permutation.rst.txt │ │ │ │ ├── chacha_permutation.rst.txt │ │ │ │ ├── gaston_permutation.rst.txt │ │ │ │ ├── gaston_sbox_permutation.rst.txt │ │ │ │ ├── gaston_sbox_theta_permutation.rst.txt │ │ │ │ ├── gift_permutation.rst.txt │ │ │ │ ├── gift_sbox_permutation.rst.txt │ │ │ │ ├── gimli_permutation.rst.txt │ │ │ │ ├── gimli_sbox_permutation.rst.txt │ │ │ │ ├── grain_core_permutation.rst.txt │ │ │ │ ├── keccak_invertible_permutation.rst.txt │ │ │ │ ├── keccak_permutation.rst.txt │ │ │ │ ├── keccak_sbox_permutation.rst.txt │ │ │ │ ├── photon_permutation.rst.txt │ │ │ │ ├── salsa_permutation.rst.txt │ │ │ │ ├── sparkle_permutation.rst.txt │ │ │ │ ├── spongent_pi_fsr_permutation.rst.txt │ │ │ │ ├── spongent_pi_permutation.rst.txt │ │ │ │ ├── spongent_pi_precomputation_permutation.rst.txt │ │ │ │ ├── tinyjambu_32bits_word_permutation.rst.txt │ │ │ │ ├── tinyjambu_fsr_32bits_word_permutation.rst.txt │ │ │ │ ├── tinyjambu_permutation.rst.txt │ │ │ │ ├── util.rst.txt │ │ │ │ ├── xoodoo_invertible_permutation.rst.txt │ │ │ │ ├── xoodoo_permutation.rst.txt │ │ │ │ └── xoodoo_sbox_permutation.rst.txt │ │ │ ├── stream_ciphers │ │ │ │ ├── a5_1_stream_cipher.rst.txt │ │ │ │ ├── a5_2_stream_cipher.rst.txt │ │ │ │ ├── bivium_stream_cipher.rst.txt │ │ │ │ ├── bluetooth_stream_cipher_e0.rst.txt │ │ │ │ ├── chacha_stream_cipher.rst.txt │ │ │ │ ├── snow3g_stream_cipher.rst.txt │ │ │ │ ├── trivium_stream_cipher.rst.txt │ │ │ │ └── zuc_stream_cipher.rst.txt │ │ │ └── toys │ │ │ │ ├── constant_block_cipher.rst.txt │ │ │ │ ├── fancy_block_cipher.rst.txt │ │ │ │ ├── identity_block_cipher.rst.txt │ │ │ │ ├── toy_cipherfour.rst.txt │ │ │ │ ├── toyfeistel.rst.txt │ │ │ │ ├── toyspn1.rst.txt │ │ │ │ └── toyspn2.rst.txt │ │ ├── component.rst.txt │ │ ├── components │ │ │ ├── and_component.rst.txt │ │ │ ├── cipher_output_component.rst.txt │ │ │ ├── concatenate_component.rst.txt │ │ │ ├── constant_component.rst.txt │ │ │ ├── fsr_component.rst.txt │ │ │ ├── intermediate_output_component.rst.txt │ │ │ ├── linear_layer_component.rst.txt │ │ │ ├── mix_column_component.rst.txt │ │ │ ├── modadd_component.rst.txt │ │ │ ├── modsub_component.rst.txt │ │ │ ├── modular_component.rst.txt │ │ │ ├── multi_input_non_linear_logical_operator_component.rst.txt │ │ │ ├── not_component.rst.txt │ │ │ ├── or_component.rst.txt │ │ │ ├── permutation_component.rst.txt │ │ │ ├── reverse_component.rst.txt │ │ │ ├── rotate_component.rst.txt │ │ │ ├── sbox_component.rst.txt │ │ │ ├── shift_component.rst.txt │ │ │ ├── shift_rows_component.rst.txt │ │ │ ├── sigma_component.rst.txt │ │ │ ├── theta_gaston_component.rst.txt │ │ │ ├── theta_keccak_component.rst.txt │ │ │ ├── theta_xoodoo_component.rst.txt │ │ │ ├── variable_rotate_component.rst.txt │ │ │ ├── variable_shift_component.rst.txt │ │ │ ├── word_permutation_component.rst.txt │ │ │ └── xor_component.rst.txt │ │ ├── compound_xor_differential_cipher.rst.txt │ │ ├── editor.rst.txt │ │ ├── index.rst.txt │ │ ├── input.rst.txt │ │ ├── references.rst.txt │ │ ├── round.rst.txt │ │ ├── rounds.rst.txt │ │ └── utils │ │ │ ├── integer.rst.txt │ │ │ ├── integer_functions.rst.txt │ │ │ ├── sage_scripts.rst.txt │ │ │ ├── sequence_operations.rst.txt │ │ │ ├── templates.rst.txt │ │ │ └── utils.rst.txt │ │ ├── _static │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── classic.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── favicon.ico │ │ ├── file.png │ │ ├── jquery-3.6.0.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── logo_sagemath.svg │ │ ├── logo_tii.png │ │ ├── logo_tii.svg │ │ ├── mathjax_sage.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── sage.css │ │ ├── sageicon.png │ │ ├── sagelogo.png │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── thebe-sage.js │ │ ├── underscore-1.13.1.js │ │ └── underscore.js │ │ ├── cipher.html │ │ ├── cipher_modules │ │ ├── algebraic_tests.html │ │ ├── avalanche_tests.html │ │ ├── code_generator.html │ │ ├── component_analysis_tests.html │ │ ├── continuous_diffusion_analysis.html │ │ ├── division_trail_search.html │ │ ├── evaluator.html │ │ ├── generic_bit_based_c_functions.html │ │ ├── generic_functions.html │ │ ├── generic_functions_continuous_diffusion_analysis.html │ │ ├── generic_functions_vectorized_bit.html │ │ ├── generic_functions_vectorized_byte.html │ │ ├── generic_word_based_c_functions.html │ │ ├── graph_generator.html │ │ ├── inverse_cipher.html │ │ ├── models │ │ │ ├── algebraic │ │ │ │ ├── algebraic_model.html │ │ │ │ ├── boolean_polynomial_ring.html │ │ │ │ └── constraints.html │ │ │ ├── cp │ │ │ │ ├── minizinc_utils │ │ │ │ │ ├── mzn_bct_predicates.html │ │ │ │ │ ├── usefulfunctions.html │ │ │ │ │ └── utils.html │ │ │ │ ├── mzn_model.html │ │ │ │ ├── mzn_models │ │ │ │ │ ├── mzn_boomerang_model_arx_optimized.html │ │ │ │ │ ├── mzn_cipher_model.html │ │ │ │ │ ├── mzn_cipher_model_arx_optimized.html │ │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model_arx_optimized.html │ │ │ │ │ ├── mzn_hybrid_impossible_xor_differential_model.html │ │ │ │ │ ├── mzn_impossible_xor_differential_model.html │ │ │ │ │ ├── mzn_wordwise_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── mzn_xor_differential_model.html │ │ │ │ │ ├── mzn_xor_differential_model_arx_optimized.html │ │ │ │ │ ├── mzn_xor_differential_number_of_active_sboxes_model.html │ │ │ │ │ ├── mzn_xor_differential_trail_search_fixing_number_of_active_sboxes_model.html │ │ │ │ │ └── mzn_xor_linear_model.html │ │ │ │ └── solvers.html │ │ │ ├── milp │ │ │ │ ├── milp_model.html │ │ │ │ ├── milp_models │ │ │ │ │ ├── milp_bitwise_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── milp_bitwise_impossible_xor_differential_model.html │ │ │ │ │ ├── milp_cipher_model.html │ │ │ │ │ ├── milp_wordwise_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── milp_wordwise_impossible_xor_differential_model.html │ │ │ │ │ ├── milp_xor_differential_model.html │ │ │ │ │ └── milp_xor_linear_model.html │ │ │ │ ├── solvers.html │ │ │ │ ├── tmp │ │ │ │ │ └── tea_cipher_xordiff_model.html │ │ │ │ └── utils │ │ │ │ │ ├── dictionary_containing_truncated_input_pattern_inequalities.html │ │ │ │ │ ├── dictionary_containing_truncated_mds_inequalities.html │ │ │ │ │ ├── dictionary_containing_truncated_xor_inequalities_between_n_input_bits.html │ │ │ │ │ ├── dictionary_containing_xor_inequalities_between_n_input_bits.html │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_large_sboxes.html │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_large_sboxes_xor_linear.html │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_sboxes_with_undisturbed_bits.html │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_small_sboxes.html │ │ │ │ │ ├── dictionary_that_contains_inequalities_for_small_sboxes_xor_linear.html │ │ │ │ │ ├── generate_inequalities_for_and_operation_2_input_bits.html │ │ │ │ │ ├── generate_inequalities_for_large_sboxes.html │ │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_mds_matrices.html │ │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_xor_with_n_input_bits.html │ │ │ │ │ ├── generate_inequalities_for_xor_with_n_input_bits.html │ │ │ │ │ ├── generate_sbox_inequalities_for_trail_search.html │ │ │ │ │ ├── generate_undisturbed_bits_inequalities_for_sboxes.html │ │ │ │ │ ├── milp_name_mappings.html │ │ │ │ │ ├── milp_truncated_utils.html │ │ │ │ │ ├── mzn_predicates.html │ │ │ │ │ └── utils.html │ │ │ ├── sat │ │ │ │ ├── cms_models │ │ │ │ │ ├── cms_bitwise_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── cms_cipher_model.html │ │ │ │ │ ├── cms_xor_differential_model.html │ │ │ │ │ └── cms_xor_linear_model.html │ │ │ │ ├── sat_model.html │ │ │ │ ├── sat_models │ │ │ │ │ ├── sat_bitwise_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── sat_cipher_model.html │ │ │ │ │ ├── sat_differential_linear_model.html │ │ │ │ │ ├── sat_probabilistic_xor_truncated_differential_model.html │ │ │ │ │ ├── sat_semi_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── sat_shared_difference_paired_input_differential_linear_model.html │ │ │ │ │ ├── sat_shared_difference_paired_input_differential_model.html │ │ │ │ │ ├── sat_truncated_xor_differential_model.html │ │ │ │ │ ├── sat_xor_differential_model.html │ │ │ │ │ └── sat_xor_linear_model.html │ │ │ │ ├── solvers.html │ │ │ │ └── utils │ │ │ │ │ ├── mzn_predicates.html │ │ │ │ │ ├── n_window_heuristic_helper.html │ │ │ │ │ └── utils.html │ │ │ ├── smt │ │ │ │ ├── smt_model.html │ │ │ │ ├── smt_models │ │ │ │ │ ├── smt_cipher_model.html │ │ │ │ │ ├── smt_deterministic_truncated_xor_differential_model.html │ │ │ │ │ ├── smt_xor_differential_model.html │ │ │ │ │ └── smt_xor_linear_model.html │ │ │ │ ├── solvers.html │ │ │ │ └── utils │ │ │ │ │ └── utils.html │ │ │ └── utils.html │ │ ├── neural_network_tests.html │ │ ├── report.html │ │ ├── statistical_tests │ │ │ ├── dataset_generator.html │ │ │ ├── dieharder_statistical_tests.html │ │ │ ├── input_data_example.html │ │ │ └── nist_statistical_tests.html │ │ └── tester.html │ │ ├── ciphers │ │ ├── block_ciphers │ │ │ ├── aes_block_cipher.html │ │ │ ├── aradi_block_cipher.html │ │ │ ├── aradi_block_cipher_sbox.html │ │ │ ├── aradi_block_cipher_sbox_and_compact_linear_map.html │ │ │ ├── baksheesh_block_cipher.html │ │ │ ├── ballet_block_cipher.html │ │ │ ├── bea1_block_cipher.html │ │ │ ├── des_block_cipher.html │ │ │ ├── des_exact_key_length_block_cipher.html │ │ │ ├── hight_block_cipher.html │ │ │ ├── kasumi_block_cipher.html │ │ │ ├── lblock_block_cipher.html │ │ │ ├── lea_block_cipher.html │ │ │ ├── lowmc_block_cipher.html │ │ │ ├── lowmc_generate_matrices.html │ │ │ ├── midori_block_cipher.html │ │ │ ├── present_block_cipher.html │ │ │ ├── prince_block_cipher.html │ │ │ ├── prince_v2_block_cipher.html │ │ │ ├── qarmav2_block_cipher.html │ │ │ ├── qarmav2_with_mixcolumn_block_cipher.html │ │ │ ├── raiden_block_cipher.html │ │ │ ├── rc5_block_cipher.html │ │ │ ├── scarf_block_cipher.html │ │ │ ├── simeck_block_cipher.html │ │ │ ├── simeck_sbox_block_cipher.html │ │ │ ├── simon_block_cipher.html │ │ │ ├── simon_sbox_block_cipher.html │ │ │ ├── skinny_block_cipher.html │ │ │ ├── sparx_block_cipher.html │ │ │ ├── speck_block_cipher.html │ │ │ ├── speedy_block_cipher.html │ │ │ ├── tea_block_cipher.html │ │ │ ├── threefish_block_cipher.html │ │ │ ├── twine_block_cipher.html │ │ │ ├── twofish_block_cipher.html │ │ │ ├── ublock_block_cipher.html │ │ │ └── xtea_block_cipher.html │ │ ├── hash_functions │ │ │ ├── blake2_hash_function.html │ │ │ ├── blake_hash_function.html │ │ │ ├── md5_hash_function.html │ │ │ ├── sha1_hash_function.html │ │ │ ├── sha2_hash_function.html │ │ │ └── whirlpool_hash_function.html │ │ ├── permutations │ │ │ ├── ascon_permutation.html │ │ │ ├── ascon_sbox_sigma_no_matrix_permutation.html │ │ │ ├── ascon_sbox_sigma_permutation.html │ │ │ ├── chacha_permutation.html │ │ │ ├── gaston_permutation.html │ │ │ ├── gaston_sbox_permutation.html │ │ │ ├── gaston_sbox_theta_permutation.html │ │ │ ├── gift_permutation.html │ │ │ ├── gift_sbox_permutation.html │ │ │ ├── gimli_permutation.html │ │ │ ├── gimli_sbox_permutation.html │ │ │ ├── grain_core_permutation.html │ │ │ ├── keccak_invertible_permutation.html │ │ │ ├── keccak_permutation.html │ │ │ ├── keccak_sbox_permutation.html │ │ │ ├── photon_permutation.html │ │ │ ├── salsa_permutation.html │ │ │ ├── sparkle_permutation.html │ │ │ ├── spongent_pi_fsr_permutation.html │ │ │ ├── spongent_pi_permutation.html │ │ │ ├── spongent_pi_precomputation_permutation.html │ │ │ ├── tinyjambu_32bits_word_permutation.html │ │ │ ├── tinyjambu_fsr_32bits_word_permutation.html │ │ │ ├── tinyjambu_permutation.html │ │ │ ├── util.html │ │ │ ├── xoodoo_invertible_permutation.html │ │ │ ├── xoodoo_permutation.html │ │ │ └── xoodoo_sbox_permutation.html │ │ ├── stream_ciphers │ │ │ ├── a5_1_stream_cipher.html │ │ │ ├── a5_2_stream_cipher.html │ │ │ ├── bivium_stream_cipher.html │ │ │ ├── bluetooth_stream_cipher_e0.html │ │ │ ├── chacha_stream_cipher.html │ │ │ ├── snow3g_stream_cipher.html │ │ │ ├── trivium_stream_cipher.html │ │ │ └── zuc_stream_cipher.html │ │ └── toys │ │ │ ├── constant_block_cipher.html │ │ │ ├── fancy_block_cipher.html │ │ │ ├── identity_block_cipher.html │ │ │ ├── toy_cipherfour.html │ │ │ ├── toyfeistel.html │ │ │ ├── toyspn1.html │ │ │ └── toyspn2.html │ │ ├── component.html │ │ ├── components │ │ ├── and_component.html │ │ ├── cipher_output_component.html │ │ ├── concatenate_component.html │ │ ├── constant_component.html │ │ ├── fsr_component.html │ │ ├── intermediate_output_component.html │ │ ├── linear_layer_component.html │ │ ├── mix_column_component.html │ │ ├── modadd_component.html │ │ ├── modsub_component.html │ │ ├── modular_component.html │ │ ├── multi_input_non_linear_logical_operator_component.html │ │ ├── not_component.html │ │ ├── or_component.html │ │ ├── permutation_component.html │ │ ├── reverse_component.html │ │ ├── rotate_component.html │ │ ├── sbox_component.html │ │ ├── shift_component.html │ │ ├── shift_rows_component.html │ │ ├── sigma_component.html │ │ ├── theta_gaston_component.html │ │ ├── theta_keccak_component.html │ │ ├── theta_xoodoo_component.html │ │ ├── variable_rotate_component.html │ │ ├── variable_shift_component.html │ │ ├── word_permutation_component.html │ │ └── xor_component.html │ │ ├── compound_xor_differential_cipher.html │ │ ├── editor.html │ │ ├── genindex-A.html │ │ ├── genindex-B.html │ │ ├── genindex-C.html │ │ ├── genindex-D.html │ │ ├── genindex-E.html │ │ ├── genindex-F.html │ │ ├── genindex-G.html │ │ ├── genindex-H.html │ │ ├── genindex-I.html │ │ ├── genindex-K.html │ │ ├── genindex-L.html │ │ ├── genindex-M.html │ │ ├── genindex-N.html │ │ ├── genindex-O.html │ │ ├── genindex-P.html │ │ ├── genindex-Q.html │ │ ├── genindex-R.html │ │ ├── genindex-S.html │ │ ├── genindex-T.html │ │ ├── genindex-U.html │ │ ├── genindex-V.html │ │ ├── genindex-W.html │ │ ├── genindex-X.html │ │ ├── genindex-Y.html │ │ ├── genindex-Z.html │ │ ├── genindex-all.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── input.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── references.html │ │ ├── round.html │ │ ├── rounds.html │ │ ├── search.html │ │ ├── searchindex.js │ │ └── utils │ │ ├── integer.html │ │ ├── integer_functions.html │ │ ├── sage_scripts.html │ │ ├── sequence_operations.html │ │ ├── templates.html │ │ └── utils.html ├── conf.py ├── create_rst_structure.py ├── images │ ├── activate-on-save.png │ ├── add-external-tool.png │ ├── add-watcher.png │ ├── autopep-watcher.png │ ├── autopep8-set-up.png │ ├── edit-watcher.png │ ├── external-tools.png │ ├── pycodestyle-set-up.png │ └── tool-set-up.png ├── references.rst └── theme │ └── tii │ ├── layout.html │ ├── search.html │ ├── static │ ├── favicon.ico │ ├── logo_sagemath.svg │ ├── logo_tii.png │ ├── logo_tii.svg │ ├── mathjax_sage.js_t │ ├── sage.css_t │ ├── sageicon.png │ ├── sagelogo.png │ └── thebe-sage.js │ └── theme.conf ├── extract_release_notes.py ├── publish_documentation.py ├── required_dependencies ├── assess.c ├── sage_numerical_backends_gurobi-9.3.1.tar.gz ├── utilities.c └── utilities.h ├── run_update_changelog.sh ├── setup.cfg ├── setup.py ├── sonar-project.properties ├── tests ├── benchmark │ ├── cipher_test.py │ ├── sat_xor_differential_model_test.py │ └── statistical_tests_test.py ├── compound_xor_differential_cipher_test.py ├── precomputed_results.sobj └── unit │ ├── cipher_modules │ ├── avalanche_tests_test.py │ ├── code_generator_test.py │ ├── component_analysis_tests_test.py │ ├── continuous_diffusion_analysis_test.py │ ├── division_trail_search_test.py │ ├── generic_functions_continuous_diffusion_analysis_test.py │ ├── generic_functions_test.py │ ├── generic_functions_vectorized_byte_test.py │ ├── graph_generator_test.py │ ├── models │ │ ├── algebraic │ │ │ ├── algebraic_model_test.py │ │ │ └── constraints_test.py │ │ ├── cp │ │ │ ├── mzn_model_test.py │ │ │ └── mzn_models │ │ │ │ ├── mzn_boomerang_model_arx_optimized_test.py │ │ │ │ ├── mzn_cipher_model_arx_optimized_test.py │ │ │ │ ├── mzn_cipher_model_test.py │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model_arx_optimized_test.py │ │ │ │ ├── mzn_deterministic_truncated_xor_differential_model_test.py │ │ │ │ ├── mzn_hybrid_impossible_xor_differential_model_test.py │ │ │ │ ├── mzn_impossible_xor_differential_model_test.py │ │ │ │ ├── mzn_wordwise_deterministic_truncated_xor_differential_model_test.py │ │ │ │ ├── mzn_xor_differential_model_arx_optimized_test.py │ │ │ │ ├── mzn_xor_differential_model_test.py │ │ │ │ ├── mzn_xor_differential_number_of_active_sboxes_model_test.py │ │ │ │ ├── mzn_xor_differential_trail_search_fixing_number_of_active_sboxes_model_test.py │ │ │ │ └── mzn_xor_linear_model_test.py │ │ ├── milp │ │ │ ├── milp_model_test.py │ │ │ ├── milp_models │ │ │ │ ├── milp_bitwise_deterministic_truncated_xor_differential_model_test.py │ │ │ │ ├── milp_bitwise_impossible_xor_differential_model_test.py │ │ │ │ ├── milp_cipher_model_test.py │ │ │ │ ├── milp_wordwise_deterministic_truncated_xor_differential_model_test.py │ │ │ │ ├── milp_wordwise_impossible_xor_differential_model_test.py │ │ │ │ ├── milp_xor_differential_model_test.py │ │ │ │ └── milp_xor_linear_model_test.py │ │ │ └── utils │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_mds_matrix_test.py │ │ │ │ ├── generate_inequalities_for_wordwise_truncated_xor_with_n_input_bits_test.py │ │ │ │ ├── generate_sbox_inequalities_for_trail_search_test.py │ │ │ │ └── generate_undisturbed_bits_inequalities_for_sboxes_test.py │ │ ├── models_utils_test.py │ │ ├── sat │ │ │ ├── cms_models │ │ │ │ ├── cms_cipher_model_test.py │ │ │ │ ├── cms_deterministic_truncated_xor_differential_model_test.py │ │ │ │ ├── cms_xor_differential_model_test.py │ │ │ │ └── cms_xor_linear_model_test.py │ │ │ ├── sat_model_test.py │ │ │ ├── sat_models │ │ │ │ ├── chacha_inverse_4_rounds.pkl │ │ │ │ ├── sat_bitwise_deterministic_truncated_xor_differential_model_test.py │ │ │ │ ├── sat_cipher_model_test.py │ │ │ │ ├── sat_differential_linear_test.py │ │ │ │ ├── sat_probabilistic_xor_truncated_differential_test.py │ │ │ │ ├── sat_semi_deterministic_xor_differential_model_test.py │ │ │ │ ├── sat_shared_difference_paired_input_differential_linear_model_test.py │ │ │ │ ├── sat_shared_difference_paired_input_differential_model_test.py │ │ │ │ ├── sat_xor_differential_model_test.py │ │ │ │ └── sat_xor_linear_model_test.py │ │ │ └── utils │ │ │ │ └── sat_model_utils_test.py │ │ └── smt │ │ │ ├── smt_model_test.py │ │ │ └── smt_models │ │ │ ├── smt_cipher_model_test.py │ │ │ ├── smt_xor_differential_model_test.py │ │ │ └── smt_xor_linear_model_test.py │ ├── neural_network_tests_test.py │ ├── pre_computed_cda_obj.pkl │ ├── report_test.py │ └── statistical_tests │ │ ├── dataset_generator_test.py │ │ ├── dieharder_statistical_tests_test.py │ │ └── nist_statistical_tests_test.py │ ├── cipher_test.py │ ├── ciphers │ ├── block_ciphers │ │ ├── aes_block_cipher_test.py │ │ ├── aradi_block_cipher_sbox_and_compact_linear_map_test.py │ │ ├── aradi_block_cipher_sbox_test.py │ │ ├── aradi_block_cipher_test.py │ │ ├── baksheesh_block_cipher_test.py │ │ ├── ballet_block_cipher_test.py │ │ ├── bea1_block_cipher_test.py │ │ ├── constant_block_cipher_test.py │ │ ├── des_block_cipher_test.py │ │ ├── des_exact_key_length_block_cipher_test.py │ │ ├── fancy_block_cipher_test.py │ │ ├── hight_block_cipher_test.py │ │ ├── identity_block_cipher_test.py │ │ ├── kasumi_block_cipher_test.py │ │ ├── lblock_block_cipher_test.py │ │ ├── lea_block_cipher_test.py │ │ ├── lowmc_block_cipher_test.py │ │ ├── midori_block_cipher_test.py │ │ ├── present_block_cipher_test.py │ │ ├── prince_block_cipher_test.py │ │ ├── prince_v2_block_cipher_test.py │ │ ├── qarmav2_block_cipher_test.py │ │ ├── qarmav2_with_mixcolumn_block_cipher_test.py │ │ ├── raiden_block_cipher_test.py │ │ ├── rc5_block_cipher_test.py │ │ ├── scarf_block_cipher_test.py │ │ ├── simeck_block_cipher_test.py │ │ ├── simeck_sbox_block_cipher_test.py │ │ ├── simon_block_cipher_test.py │ │ ├── simon_sbox_block_cipher_test.py │ │ ├── skinny_block_cipher_test.py │ │ ├── sparx_block_cipher_test.py │ │ ├── speck_block_cipher_test.py │ │ ├── speedy_block_cipher_test.py │ │ ├── tea_block_cipher_test.py │ │ ├── threefish_block_cipher_test.py │ │ ├── twine_block_cipher_test.py │ │ ├── twofish_block_cipher_test.py │ │ ├── ublock_block_cipher_test.py │ │ └── xtea_block_cipher_test.py │ ├── hash_functions │ │ ├── blake2_hash_function_test.py │ │ ├── blake_hash_function_test.py │ │ ├── md5_hash_function_test.py │ │ ├── sha1_hash_function_test.py │ │ ├── sha2_hash_function_test.py │ │ └── whirlpool_hash_function_test.py │ ├── permutations │ │ ├── ascon_permutation_test.py │ │ ├── ascon_sbox_sigma_no_matrix_permutation_test.py │ │ ├── ascon_sbox_sigma_permutation_test.py │ │ ├── chacha_permutation_test.py │ │ ├── gaston_permutation_test.py │ │ ├── gaston_sbox_permutation_test.py │ │ ├── gaston_sbox_theta_permutation_test.py │ │ ├── gift_permutation_test.py │ │ ├── gift_sbox_permutation_test.py │ │ ├── gimli_permutation_test.py │ │ ├── gimli_sbox_permutation_test.py │ │ ├── grain_core_permutation_test.py │ │ ├── keccak_invertible_permutation_test.py │ │ ├── keccak_permutation_test.py │ │ ├── keccak_sbox_permutation_test.py │ │ ├── photon_permutation_test.py │ │ ├── salsa_permutation_test.py │ │ ├── sparkle_permutation_test.py │ │ ├── spongent_pi_fsr_permutation_test.py │ │ ├── spongent_pi_permutation_test.py │ │ ├── spongent_pi_precomputation_permutation_test.py │ │ ├── tinyjambu_32bits_word_permutation_test.py │ │ ├── tinyjambu_fsr_32bits_word_permutation_test.py │ │ ├── tinyjambu_permutation_test.py │ │ ├── xoodoo_invertible_permutation_test.py │ │ ├── xoodoo_permutation_test.py │ │ └── xoodoo_sbox_permutation_test.py │ ├── stream_ciphers │ │ ├── a5_1_stream_cipher_test.py │ │ ├── a5_2_stream_cipher_test.py │ │ ├── bivium_stream_cipher_test.py │ │ ├── bluetooth_stream_cipher_e0_test.py │ │ ├── chacha_stream_cipher_test.py │ │ ├── snow3g_stream_cipher_test.py │ │ ├── trivium_stream_cipher_test.py │ │ └── zuc_stream_cipher_test.py │ └── toys │ │ ├── toy_cipherFOUR_test.py │ │ ├── toyfeistel_test.py │ │ ├── toyspn1_test.py │ │ └── toyspn2_test.py │ ├── components │ ├── and_component_test.py │ ├── cipher_output_component_test.py │ ├── constant_component_test.py │ ├── fsr_component_test.py │ ├── linear_layer_component_test.py │ ├── mix_column_component_test.py │ ├── modadd_component_test.py │ ├── modsub_component_test.py │ ├── multi_input_non_linear_logical_operator_component_test.py │ ├── not_component_test.py │ ├── or_component_test.py │ ├── rotate_component_test.py │ ├── sbox_component_test.py │ ├── shift_component_test.py │ ├── variable_shift_component_test.py │ └── xor_component_test.py │ ├── editor_test.py │ └── utils │ ├── integer_test.py │ ├── sequence_operations_test.py │ └── utils_test.py └── update_changelog.py /.github/workflows/block-pr-to-main-from-not-develop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/block-pr-to-main-from-not-develop.yaml -------------------------------------------------------------------------------- /.github/workflows/build-claasp-base-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/build-claasp-base-image.yaml -------------------------------------------------------------------------------- /.github/workflows/build-main-webapp-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/build-main-webapp-image.yaml -------------------------------------------------------------------------------- /.github/workflows/build-staging-webapp-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/build-staging-webapp-image.yaml -------------------------------------------------------------------------------- /.github/workflows/fork-run-pytest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/fork-run-pytest.yaml -------------------------------------------------------------------------------- /.github/workflows/generate-and-submit-documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/generate-and-submit-documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-claasp-on-pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/publish-claasp-on-pypi.yaml -------------------------------------------------------------------------------- /.github/workflows/run-benchmark-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/run-benchmark-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/run-doctest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/run-doctest.yaml -------------------------------------------------------------------------------- /.github/workflows/run-pytest-and-sonarcloud-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/run-pytest-and-sonarcloud-scan.yaml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.github/workflows/update-changelog.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v3.1.0 -------------------------------------------------------------------------------- /claasp/DTOs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/DTOs/component_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/DTOs/component_state.py -------------------------------------------------------------------------------- /claasp/DTOs/power_of_2_word_based_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/DTOs/power_of_2_word_based_dto.py -------------------------------------------------------------------------------- /claasp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher.py -------------------------------------------------------------------------------- /claasp/cipher_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/algebraic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/algebraic_tests.py -------------------------------------------------------------------------------- /claasp/cipher_modules/avalanche_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/avalanche_tests.py -------------------------------------------------------------------------------- /claasp/cipher_modules/code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/code_generator.py -------------------------------------------------------------------------------- /claasp/cipher_modules/component_analysis_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/component_analysis_tests.py -------------------------------------------------------------------------------- /claasp/cipher_modules/continuous_diffusion_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/continuous_diffusion_analysis.py -------------------------------------------------------------------------------- /claasp/cipher_modules/division_trail_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/division_trail_search.py -------------------------------------------------------------------------------- /claasp/cipher_modules/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/evaluator.py -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_bit_based_c_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_bit_based_c_functions.c -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_bit_based_c_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_bit_based_c_functions.h -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_functions.py -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_functions_continuous_diffusion_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_functions_continuous_diffusion_analysis.py -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_functions_vectorized_bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_functions_vectorized_bit.py -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_functions_vectorized_byte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_functions_vectorized_byte.py -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_word_based_c_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_word_based_c_functions.c -------------------------------------------------------------------------------- /claasp/cipher_modules/generic_word_based_c_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/generic_word_based_c_functions.h -------------------------------------------------------------------------------- /claasp/cipher_modules/graph_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/graph_generator.py -------------------------------------------------------------------------------- /claasp/cipher_modules/inverse_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/inverse_cipher.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/algebraic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/algebraic/algebraic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/algebraic/algebraic_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/algebraic/boolean_polynomial_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/algebraic/boolean_polynomial_ring.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/algebraic/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/algebraic/constraints.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/minizinc_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/minizinc_utils/mzn_bct_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/minizinc_utils/mzn_bct_predicates.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/minizinc_utils/usefulfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/minizinc_utils/usefulfunctions.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/minizinc_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/minizinc_utils/utils.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/mzn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/mzn_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/mzn_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/mzn_models/mzn_cipher_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/mzn_models/mzn_cipher_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/mzn_models/mzn_xor_differential_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/mzn_models/mzn_xor_differential_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/mzn_models/mzn_xor_linear_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/mzn_models/mzn_xor_linear_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/cp/solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/cp/solvers.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/__init__.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/milp_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/milp_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/milp_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/milp_models/milp_cipher_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/milp_models/milp_cipher_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/milp_models/milp_xor_linear_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/milp_models/milp_xor_linear_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/solvers.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/tmp/tea_cipher_xordiff_model.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/tmp/tea_cipher_xordiff_model.lp -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/utils/milp_name_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/utils/milp_name_mappings.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/utils/milp_truncated_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/utils/milp_truncated_utils.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/utils/mzn_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/utils/mzn_predicates.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/milp/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/milp/utils/utils.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/README.md -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/cms_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/cms_models/cms_cipher_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/cms_models/cms_cipher_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/cms_models/cms_xor_differential_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/cms_models/cms_xor_differential_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/cms_models/cms_xor_linear_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/cms_models/cms_xor_linear_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/sat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/sat_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/sat_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/sat_models/sat_cipher_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/sat_models/sat_cipher_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/sat_models/sat_xor_differential_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/sat_models/sat_xor_differential_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/sat_models/sat_xor_linear_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/sat_models/sat_xor_linear_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/solvers.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/utils/constants.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/utils/mzn_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/utils/mzn_predicates.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/utils/n_window_heuristic_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/utils/n_window_heuristic_helper.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/sat/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/sat/utils/utils.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/README.md -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/smt_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/smt_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/smt_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/smt_models/smt_cipher_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/smt_models/smt_cipher_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/smt_models/smt_xor_differential_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/smt_models/smt_xor_differential_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/smt_models/smt_xor_linear_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/smt_models/smt_xor_linear_model.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/solvers.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/utils/constants.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/smt/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/smt/utils/utils.py -------------------------------------------------------------------------------- /claasp/cipher_modules/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/models/utils.py -------------------------------------------------------------------------------- /claasp/cipher_modules/neural_network_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/neural_network_tests.py -------------------------------------------------------------------------------- /claasp/cipher_modules/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/report.py -------------------------------------------------------------------------------- /claasp/cipher_modules/statistical_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/cipher_modules/statistical_tests/dataset_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/statistical_tests/dataset_generator.py -------------------------------------------------------------------------------- /claasp/cipher_modules/statistical_tests/dieharder_statistical_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/statistical_tests/dieharder_statistical_tests.py -------------------------------------------------------------------------------- /claasp/cipher_modules/statistical_tests/finalAnalysisReportExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/statistical_tests/finalAnalysisReportExample.txt -------------------------------------------------------------------------------- /claasp/cipher_modules/statistical_tests/input_data_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/statistical_tests/input_data_example -------------------------------------------------------------------------------- /claasp/cipher_modules/statistical_tests/nist_statistical_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/statistical_tests/nist_statistical_tests.py -------------------------------------------------------------------------------- /claasp/cipher_modules/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/cipher_modules/tester.py -------------------------------------------------------------------------------- /claasp/ciphers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/aes_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/aes_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/aradi_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/aradi_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/aradi_block_cipher_sbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/aradi_block_cipher_sbox.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/baksheesh_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/baksheesh_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/ballet_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/ballet_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/bea1_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/bea1_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/des_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/des_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/des_exact_key_length_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/des_exact_key_length_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/hight_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/hight_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/kasumi_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/kasumi_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/lblock_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/lblock_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/lea_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/lea_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/lowmc_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/lowmc_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/lowmc_generate_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/lowmc_generate_matrices.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/midori_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/midori_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/present_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/present_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/prince_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/prince_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/prince_v2_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/prince_v2_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/qarmav2_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/qarmav2_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/qarmav2_with_mixcolumn_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/qarmav2_with_mixcolumn_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/raiden_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/raiden_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/rc5_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/rc5_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/scarf_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/scarf_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/simeck_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/simeck_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/simeck_sbox_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/simeck_sbox_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/simon_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/simon_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/simon_sbox_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/simon_sbox_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/skinny_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/skinny_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/sparx_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/sparx_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/speck_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/speck_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/speedy_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/speedy_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/tea_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/tea_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/threefish_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/threefish_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/twine_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/twine_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/twofish_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/twofish_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/ublock_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/ublock_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/block_ciphers/xtea_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/block_ciphers/xtea_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/hash_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/ciphers/hash_functions/blake2_hash_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/hash_functions/blake2_hash_function.py -------------------------------------------------------------------------------- /claasp/ciphers/hash_functions/blake_hash_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/hash_functions/blake_hash_function.py -------------------------------------------------------------------------------- /claasp/ciphers/hash_functions/md5_hash_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/hash_functions/md5_hash_function.py -------------------------------------------------------------------------------- /claasp/ciphers/hash_functions/sha1_hash_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/hash_functions/sha1_hash_function.py -------------------------------------------------------------------------------- /claasp/ciphers/hash_functions/sha2_hash_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/hash_functions/sha2_hash_function.py -------------------------------------------------------------------------------- /claasp/ciphers/hash_functions/whirlpool_hash_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/hash_functions/whirlpool_hash_function.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/ciphers/permutations/ascon_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/ascon_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/ascon_sbox_sigma_no_matrix_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/ascon_sbox_sigma_no_matrix_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/ascon_sbox_sigma_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/ascon_sbox_sigma_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/chacha_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/chacha_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/gaston_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/gaston_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/gaston_sbox_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/gaston_sbox_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/gaston_sbox_theta_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/gaston_sbox_theta_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/gift_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/gift_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/gift_sbox_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/gift_sbox_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/gimli_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/gimli_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/gimli_sbox_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/gimli_sbox_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/grain_core_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/grain_core_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/keccak_invertible_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/keccak_invertible_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/keccak_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/keccak_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/keccak_sbox_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/keccak_sbox_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/photon_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/photon_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/salsa_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/salsa_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/sparkle_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/sparkle_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/spongent_pi_fsr_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/spongent_pi_fsr_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/spongent_pi_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/spongent_pi_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/spongent_pi_precomputation_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/spongent_pi_precomputation_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/tinyjambu_32bits_word_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/tinyjambu_32bits_word_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/tinyjambu_fsr_32bits_word_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/tinyjambu_fsr_32bits_word_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/tinyjambu_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/tinyjambu_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/util.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/xoodoo_invertible_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/xoodoo_invertible_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/xoodoo_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/xoodoo_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/permutations/xoodoo_sbox_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/permutations/xoodoo_sbox_permutation.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/a5_1_stream_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/a5_1_stream_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/a5_2_stream_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/a5_2_stream_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/bivium_stream_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/bivium_stream_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/bluetooth_stream_cipher_e0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/bluetooth_stream_cipher_e0.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/chacha_stream_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/chacha_stream_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/snow3g_stream_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/snow3g_stream_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/trivium_stream_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/trivium_stream_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/stream_ciphers/zuc_stream_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/stream_ciphers/zuc_stream_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/toys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/ciphers/toys/constant_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/toys/constant_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/toys/fancy_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/toys/fancy_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/toys/identity_block_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/toys/identity_block_cipher.py -------------------------------------------------------------------------------- /claasp/ciphers/toys/toy_cipherfour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/toys/toy_cipherfour.py -------------------------------------------------------------------------------- /claasp/ciphers/toys/toyfeistel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/toys/toyfeistel.py -------------------------------------------------------------------------------- /claasp/ciphers/toys/toyspn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/toys/toyspn1.py -------------------------------------------------------------------------------- /claasp/ciphers/toys/toyspn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/ciphers/toys/toyspn2.py -------------------------------------------------------------------------------- /claasp/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/component.py -------------------------------------------------------------------------------- /claasp/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/components/and_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/and_component.py -------------------------------------------------------------------------------- /claasp/components/cipher_output_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/cipher_output_component.py -------------------------------------------------------------------------------- /claasp/components/concatenate_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/concatenate_component.py -------------------------------------------------------------------------------- /claasp/components/constant_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/constant_component.py -------------------------------------------------------------------------------- /claasp/components/fsr_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/fsr_component.py -------------------------------------------------------------------------------- /claasp/components/intermediate_output_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/intermediate_output_component.py -------------------------------------------------------------------------------- /claasp/components/linear_layer_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/linear_layer_component.py -------------------------------------------------------------------------------- /claasp/components/mix_column_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/mix_column_component.py -------------------------------------------------------------------------------- /claasp/components/modadd_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/modadd_component.py -------------------------------------------------------------------------------- /claasp/components/modsub_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/modsub_component.py -------------------------------------------------------------------------------- /claasp/components/modular_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/modular_component.py -------------------------------------------------------------------------------- /claasp/components/multi_input_non_linear_logical_operator_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/multi_input_non_linear_logical_operator_component.py -------------------------------------------------------------------------------- /claasp/components/not_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/not_component.py -------------------------------------------------------------------------------- /claasp/components/or_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/or_component.py -------------------------------------------------------------------------------- /claasp/components/permutation_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/permutation_component.py -------------------------------------------------------------------------------- /claasp/components/reverse_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/reverse_component.py -------------------------------------------------------------------------------- /claasp/components/rotate_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/rotate_component.py -------------------------------------------------------------------------------- /claasp/components/sbox_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/sbox_component.py -------------------------------------------------------------------------------- /claasp/components/shift_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/shift_component.py -------------------------------------------------------------------------------- /claasp/components/shift_rows_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/shift_rows_component.py -------------------------------------------------------------------------------- /claasp/components/sigma_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/sigma_component.py -------------------------------------------------------------------------------- /claasp/components/theta_gaston_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/theta_gaston_component.py -------------------------------------------------------------------------------- /claasp/components/theta_keccak_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/theta_keccak_component.py -------------------------------------------------------------------------------- /claasp/components/theta_xoodoo_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/theta_xoodoo_component.py -------------------------------------------------------------------------------- /claasp/components/variable_rotate_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/variable_rotate_component.py -------------------------------------------------------------------------------- /claasp/components/variable_shift_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/variable_shift_component.py -------------------------------------------------------------------------------- /claasp/components/word_permutation_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/word_permutation_component.py -------------------------------------------------------------------------------- /claasp/components/xor_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/components/xor_component.py -------------------------------------------------------------------------------- /claasp/compound_xor_differential_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/compound_xor_differential_cipher.py -------------------------------------------------------------------------------- /claasp/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/editor.py -------------------------------------------------------------------------------- /claasp/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/input.py -------------------------------------------------------------------------------- /claasp/name_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/name_mappings.py -------------------------------------------------------------------------------- /claasp/round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/round.py -------------------------------------------------------------------------------- /claasp/rounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/rounds.py -------------------------------------------------------------------------------- /claasp/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claasp/utils/integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/utils/integer.py -------------------------------------------------------------------------------- /claasp/utils/integer_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/utils/integer_functions.py -------------------------------------------------------------------------------- /claasp/utils/sage_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/utils/sage_scripts.py -------------------------------------------------------------------------------- /claasp/utils/sequence_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/utils/sequence_operations.py -------------------------------------------------------------------------------- /claasp/utils/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/utils/templates.py -------------------------------------------------------------------------------- /claasp/utils/tii_reports/diffusion_test_template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/utils/tii_reports/diffusion_test_template.csv -------------------------------------------------------------------------------- /claasp/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/claasp/utils/utils.py -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/configure.sh -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | import sage.all -------------------------------------------------------------------------------- /create_bash_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/create_bash_script.py -------------------------------------------------------------------------------- /create_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/create_copyright.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/sitecustomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docker/sitecustomize.py -------------------------------------------------------------------------------- /docker/tag-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docker/tag-build.png -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CIPHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/CIPHER.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/USER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/USER_GUIDE.md -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/algebraic_tests.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/algebraic_tests.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/avalanche_tests.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/avalanche_tests.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/code_generator.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/code_generator.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/component_analysis_tests.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/component_analysis_tests.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/division_trail_search.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/division_trail_search.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/evaluator.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/evaluator.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/generic_functions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/generic_functions.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/graph_generator.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/graph_generator.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/inverse_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/inverse_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/cp/mzn_model.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/cp/mzn_model.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/cp/solvers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/cp/solvers.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/milp/milp_model.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/milp/milp_model.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/milp/solvers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/milp/solvers.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/milp/utils/utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/milp/utils/utils.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/sat/sat_model.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/sat/sat_model.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/sat/solvers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/sat/solvers.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/sat/utils/utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/sat/utils/utils.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/smt/smt_model.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/smt/smt_model.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/smt/solvers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/smt/solvers.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/smt/utils/utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/smt/utils/utils.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/models/utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/models/utils.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/neural_network_tests.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/neural_network_tests.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/report.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/report.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/cipher_modules/tester.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/cipher_modules/tester.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/aes_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/aes_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/aradi_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/aradi_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/ballet_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/ballet_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/bea1_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/bea1_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/des_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/des_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/hight_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/hight_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/kasumi_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/kasumi_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/lblock_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/lblock_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/lea_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/lea_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/lowmc_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/lowmc_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/midori_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/midori_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/present_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/present_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/prince_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/prince_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/qarmav2_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/qarmav2_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/raiden_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/raiden_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/rc5_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/rc5_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/scarf_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/scarf_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/simeck_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/simeck_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/simon_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/simon_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/skinny_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/skinny_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/sparx_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/sparx_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/speck_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/speck_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/speedy_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/speedy_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/tea_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/tea_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/twine_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/twine_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/twofish_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/twofish_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/ublock_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/ublock_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/block_ciphers/xtea_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/block_ciphers/xtea_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/hash_functions/blake_hash_function.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/hash_functions/blake_hash_function.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/hash_functions/md5_hash_function.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/hash_functions/md5_hash_function.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/hash_functions/sha1_hash_function.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/hash_functions/sha1_hash_function.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/hash_functions/sha2_hash_function.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/hash_functions/sha2_hash_function.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/ascon_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/ascon_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/chacha_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/chacha_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/gaston_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/gaston_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/gift_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/gift_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/gift_sbox_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/gift_sbox_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/gimli_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/gimli_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/keccak_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/keccak_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/photon_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/photon_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/salsa_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/salsa_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/sparkle_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/sparkle_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/tinyjambu_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/tinyjambu_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/util.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/util.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/permutations/xoodoo_permutation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/permutations/xoodoo_permutation.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/stream_ciphers/a5_1_stream_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/stream_ciphers/a5_1_stream_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/stream_ciphers/a5_2_stream_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/stream_ciphers/a5_2_stream_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/stream_ciphers/zuc_stream_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/stream_ciphers/zuc_stream_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/toys/constant_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/toys/constant_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/toys/fancy_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/toys/fancy_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/toys/identity_block_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/toys/identity_block_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/toys/toy_cipherfour.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/toys/toy_cipherfour.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/toys/toyfeistel.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/toys/toyfeistel.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/toys/toyspn1.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/toys/toyspn1.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/ciphers/toys/toyspn2.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/ciphers/toys/toyspn2.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/and_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/and_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/cipher_output_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/cipher_output_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/concatenate_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/concatenate_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/constant_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/constant_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/fsr_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/fsr_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/intermediate_output_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/intermediate_output_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/linear_layer_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/linear_layer_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/mix_column_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/mix_column_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/modadd_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/modadd_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/modsub_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/modsub_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/modular_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/modular_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/not_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/not_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/or_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/or_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/permutation_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/permutation_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/reverse_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/reverse_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/rotate_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/rotate_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/sbox_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/sbox_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/shift_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/shift_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/shift_rows_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/shift_rows_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/sigma_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/sigma_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/theta_gaston_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/theta_gaston_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/theta_keccak_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/theta_keccak_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/theta_xoodoo_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/theta_xoodoo_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/variable_rotate_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/variable_rotate_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/variable_shift_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/variable_shift_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/word_permutation_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/word_permutation_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/components/xor_component.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/components/xor_component.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/compound_xor_differential_cipher.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/compound_xor_differential_cipher.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/editor.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/editor.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/input.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/input.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/references.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/references.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/round.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/round.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/rounds.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/rounds.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/utils/integer.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/utils/integer.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/utils/integer_functions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/utils/integer_functions.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/utils/sage_scripts.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/utils/sage_scripts.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/utils/sequence_operations.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/utils/sequence_operations.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/utils/templates.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/utils/templates.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_sources/utils/utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_sources/utils/utils.rst.txt -------------------------------------------------------------------------------- /docs/build/html/_static/_sphinx_javascript_frameworks_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js -------------------------------------------------------------------------------- /docs/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/build/html/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/classic.css -------------------------------------------------------------------------------- /docs/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/build/html/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/favicon.ico -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/build/html/_static/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/build/html/_static/logo_sagemath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/logo_sagemath.svg -------------------------------------------------------------------------------- /docs/build/html/_static/logo_tii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/logo_tii.png -------------------------------------------------------------------------------- /docs/build/html/_static/logo_tii.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/logo_tii.svg -------------------------------------------------------------------------------- /docs/build/html/_static/mathjax_sage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/mathjax_sage.js -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/html/_static/sage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/sage.css -------------------------------------------------------------------------------- /docs/build/html/_static/sageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/sageicon.png -------------------------------------------------------------------------------- /docs/build/html/_static/sagelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/sagelogo.png -------------------------------------------------------------------------------- /docs/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/html/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/sidebar.js -------------------------------------------------------------------------------- /docs/build/html/_static/thebe-sage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/thebe-sage.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/build/html/cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/algebraic_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/algebraic_tests.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/avalanche_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/avalanche_tests.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/code_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/code_generator.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/component_analysis_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/component_analysis_tests.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/continuous_diffusion_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/continuous_diffusion_analysis.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/division_trail_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/division_trail_search.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/evaluator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/evaluator.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/generic_bit_based_c_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/generic_bit_based_c_functions.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/generic_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/generic_functions.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/generic_functions_vectorized_bit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/generic_functions_vectorized_bit.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/generic_functions_vectorized_byte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/generic_functions_vectorized_byte.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/generic_word_based_c_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/generic_word_based_c_functions.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/graph_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/graph_generator.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/inverse_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/inverse_cipher.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/algebraic/algebraic_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/algebraic/algebraic_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/algebraic/constraints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/algebraic/constraints.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/cp/minizinc_utils/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/cp/minizinc_utils/utils.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/cp/mzn_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/cp/mzn_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/cp/mzn_models/mzn_cipher_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/cp/mzn_models/mzn_cipher_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/cp/solvers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/cp/solvers.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/milp/milp_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/milp/milp_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/milp/solvers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/milp/solvers.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/milp/utils/milp_name_mappings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/milp/utils/milp_name_mappings.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/milp/utils/milp_truncated_utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/milp/utils/milp_truncated_utils.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/milp/utils/mzn_predicates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/milp/utils/mzn_predicates.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/milp/utils/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/milp/utils/utils.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/sat/cms_models/cms_cipher_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/sat/cms_models/cms_cipher_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/sat/sat_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/sat/sat_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/sat/sat_models/sat_cipher_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/sat/sat_models/sat_cipher_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/sat/solvers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/sat/solvers.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/sat/utils/mzn_predicates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/sat/utils/mzn_predicates.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/sat/utils/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/sat/utils/utils.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/smt/smt_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/smt/smt_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/smt/smt_models/smt_cipher_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/smt/smt_models/smt_cipher_model.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/smt/solvers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/smt/solvers.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/smt/utils/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/smt/utils/utils.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/models/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/models/utils.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/neural_network_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/neural_network_tests.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/report.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/statistical_tests/dataset_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/statistical_tests/dataset_generator.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/statistical_tests/input_data_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/statistical_tests/input_data_example.html -------------------------------------------------------------------------------- /docs/build/html/cipher_modules/tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/cipher_modules/tester.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/aes_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/aes_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/aradi_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/aradi_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/aradi_block_cipher_sbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/aradi_block_cipher_sbox.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/baksheesh_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/baksheesh_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/ballet_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/ballet_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/bea1_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/bea1_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/des_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/des_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/hight_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/hight_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/kasumi_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/kasumi_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/lblock_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/lblock_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/lea_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/lea_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/lowmc_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/lowmc_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/lowmc_generate_matrices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/lowmc_generate_matrices.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/midori_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/midori_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/present_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/present_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/prince_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/prince_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/prince_v2_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/prince_v2_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/qarmav2_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/qarmav2_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/raiden_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/raiden_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/rc5_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/rc5_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/scarf_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/scarf_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/simeck_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/simeck_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/simeck_sbox_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/simeck_sbox_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/simon_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/simon_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/simon_sbox_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/simon_sbox_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/skinny_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/skinny_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/sparx_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/sparx_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/speck_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/speck_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/speedy_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/speedy_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/tea_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/tea_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/threefish_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/threefish_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/twine_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/twine_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/twofish_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/twofish_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/ublock_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/ublock_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/block_ciphers/xtea_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/block_ciphers/xtea_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/hash_functions/blake2_hash_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/hash_functions/blake2_hash_function.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/hash_functions/blake_hash_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/hash_functions/blake_hash_function.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/hash_functions/md5_hash_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/hash_functions/md5_hash_function.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/hash_functions/sha1_hash_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/hash_functions/sha1_hash_function.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/hash_functions/sha2_hash_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/hash_functions/sha2_hash_function.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/hash_functions/whirlpool_hash_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/hash_functions/whirlpool_hash_function.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/ascon_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/ascon_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/ascon_sbox_sigma_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/ascon_sbox_sigma_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/chacha_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/chacha_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/gaston_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/gaston_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/gaston_sbox_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/gaston_sbox_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/gaston_sbox_theta_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/gaston_sbox_theta_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/gift_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/gift_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/gift_sbox_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/gift_sbox_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/gimli_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/gimli_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/gimli_sbox_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/gimli_sbox_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/grain_core_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/grain_core_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/keccak_invertible_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/keccak_invertible_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/keccak_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/keccak_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/keccak_sbox_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/keccak_sbox_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/photon_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/photon_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/salsa_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/salsa_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/sparkle_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/sparkle_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/spongent_pi_fsr_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/spongent_pi_fsr_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/spongent_pi_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/spongent_pi_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/tinyjambu_32bits_word_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/tinyjambu_32bits_word_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/tinyjambu_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/tinyjambu_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/util.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/xoodoo_invertible_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/xoodoo_invertible_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/xoodoo_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/xoodoo_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/permutations/xoodoo_sbox_permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/permutations/xoodoo_sbox_permutation.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/a5_1_stream_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/a5_1_stream_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/a5_2_stream_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/a5_2_stream_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/bivium_stream_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/bivium_stream_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/bluetooth_stream_cipher_e0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/bluetooth_stream_cipher_e0.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/chacha_stream_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/chacha_stream_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/snow3g_stream_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/snow3g_stream_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/trivium_stream_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/trivium_stream_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/stream_ciphers/zuc_stream_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/stream_ciphers/zuc_stream_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/toys/constant_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/toys/constant_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/toys/fancy_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/toys/fancy_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/toys/identity_block_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/toys/identity_block_cipher.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/toys/toy_cipherfour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/toys/toy_cipherfour.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/toys/toyfeistel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/toys/toyfeistel.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/toys/toyspn1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/toys/toyspn1.html -------------------------------------------------------------------------------- /docs/build/html/ciphers/toys/toyspn2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/ciphers/toys/toyspn2.html -------------------------------------------------------------------------------- /docs/build/html/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/component.html -------------------------------------------------------------------------------- /docs/build/html/components/and_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/and_component.html -------------------------------------------------------------------------------- /docs/build/html/components/cipher_output_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/cipher_output_component.html -------------------------------------------------------------------------------- /docs/build/html/components/concatenate_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/concatenate_component.html -------------------------------------------------------------------------------- /docs/build/html/components/constant_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/constant_component.html -------------------------------------------------------------------------------- /docs/build/html/components/fsr_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/fsr_component.html -------------------------------------------------------------------------------- /docs/build/html/components/intermediate_output_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/intermediate_output_component.html -------------------------------------------------------------------------------- /docs/build/html/components/linear_layer_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/linear_layer_component.html -------------------------------------------------------------------------------- /docs/build/html/components/mix_column_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/mix_column_component.html -------------------------------------------------------------------------------- /docs/build/html/components/modadd_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/modadd_component.html -------------------------------------------------------------------------------- /docs/build/html/components/modsub_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/modsub_component.html -------------------------------------------------------------------------------- /docs/build/html/components/modular_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/modular_component.html -------------------------------------------------------------------------------- /docs/build/html/components/not_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/not_component.html -------------------------------------------------------------------------------- /docs/build/html/components/or_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/or_component.html -------------------------------------------------------------------------------- /docs/build/html/components/permutation_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/permutation_component.html -------------------------------------------------------------------------------- /docs/build/html/components/reverse_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/reverse_component.html -------------------------------------------------------------------------------- /docs/build/html/components/rotate_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/rotate_component.html -------------------------------------------------------------------------------- /docs/build/html/components/sbox_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/sbox_component.html -------------------------------------------------------------------------------- /docs/build/html/components/shift_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/shift_component.html -------------------------------------------------------------------------------- /docs/build/html/components/shift_rows_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/shift_rows_component.html -------------------------------------------------------------------------------- /docs/build/html/components/sigma_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/sigma_component.html -------------------------------------------------------------------------------- /docs/build/html/components/theta_gaston_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/theta_gaston_component.html -------------------------------------------------------------------------------- /docs/build/html/components/theta_keccak_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/theta_keccak_component.html -------------------------------------------------------------------------------- /docs/build/html/components/theta_xoodoo_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/theta_xoodoo_component.html -------------------------------------------------------------------------------- /docs/build/html/components/variable_rotate_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/variable_rotate_component.html -------------------------------------------------------------------------------- /docs/build/html/components/variable_shift_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/variable_shift_component.html -------------------------------------------------------------------------------- /docs/build/html/components/word_permutation_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/word_permutation_component.html -------------------------------------------------------------------------------- /docs/build/html/components/xor_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/components/xor_component.html -------------------------------------------------------------------------------- /docs/build/html/compound_xor_differential_cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/compound_xor_differential_cipher.html -------------------------------------------------------------------------------- /docs/build/html/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/editor.html -------------------------------------------------------------------------------- /docs/build/html/genindex-A.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-A.html -------------------------------------------------------------------------------- /docs/build/html/genindex-B.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-B.html -------------------------------------------------------------------------------- /docs/build/html/genindex-C.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-C.html -------------------------------------------------------------------------------- /docs/build/html/genindex-D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-D.html -------------------------------------------------------------------------------- /docs/build/html/genindex-E.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-E.html -------------------------------------------------------------------------------- /docs/build/html/genindex-F.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-F.html -------------------------------------------------------------------------------- /docs/build/html/genindex-G.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-G.html -------------------------------------------------------------------------------- /docs/build/html/genindex-H.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-H.html -------------------------------------------------------------------------------- /docs/build/html/genindex-I.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-I.html -------------------------------------------------------------------------------- /docs/build/html/genindex-K.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-K.html -------------------------------------------------------------------------------- /docs/build/html/genindex-L.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-L.html -------------------------------------------------------------------------------- /docs/build/html/genindex-M.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-M.html -------------------------------------------------------------------------------- /docs/build/html/genindex-N.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-N.html -------------------------------------------------------------------------------- /docs/build/html/genindex-O.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-O.html -------------------------------------------------------------------------------- /docs/build/html/genindex-P.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-P.html -------------------------------------------------------------------------------- /docs/build/html/genindex-Q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-Q.html -------------------------------------------------------------------------------- /docs/build/html/genindex-R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-R.html -------------------------------------------------------------------------------- /docs/build/html/genindex-S.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-S.html -------------------------------------------------------------------------------- /docs/build/html/genindex-T.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-T.html -------------------------------------------------------------------------------- /docs/build/html/genindex-U.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-U.html -------------------------------------------------------------------------------- /docs/build/html/genindex-V.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-V.html -------------------------------------------------------------------------------- /docs/build/html/genindex-W.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-W.html -------------------------------------------------------------------------------- /docs/build/html/genindex-X.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-X.html -------------------------------------------------------------------------------- /docs/build/html/genindex-Y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-Y.html -------------------------------------------------------------------------------- /docs/build/html/genindex-Z.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-Z.html -------------------------------------------------------------------------------- /docs/build/html/genindex-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex-all.html -------------------------------------------------------------------------------- /docs/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/genindex.html -------------------------------------------------------------------------------- /docs/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/index.html -------------------------------------------------------------------------------- /docs/build/html/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/input.html -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/py-modindex.html -------------------------------------------------------------------------------- /docs/build/html/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/references.html -------------------------------------------------------------------------------- /docs/build/html/round.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/round.html -------------------------------------------------------------------------------- /docs/build/html/rounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/rounds.html -------------------------------------------------------------------------------- /docs/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/search.html -------------------------------------------------------------------------------- /docs/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/build/html/utils/integer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/utils/integer.html -------------------------------------------------------------------------------- /docs/build/html/utils/integer_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/utils/integer_functions.html -------------------------------------------------------------------------------- /docs/build/html/utils/sage_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/utils/sage_scripts.html -------------------------------------------------------------------------------- /docs/build/html/utils/sequence_operations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/utils/sequence_operations.html -------------------------------------------------------------------------------- /docs/build/html/utils/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/utils/templates.html -------------------------------------------------------------------------------- /docs/build/html/utils/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/build/html/utils/utils.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/create_rst_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/create_rst_structure.py -------------------------------------------------------------------------------- /docs/images/activate-on-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/activate-on-save.png -------------------------------------------------------------------------------- /docs/images/add-external-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/add-external-tool.png -------------------------------------------------------------------------------- /docs/images/add-watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/add-watcher.png -------------------------------------------------------------------------------- /docs/images/autopep-watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/autopep-watcher.png -------------------------------------------------------------------------------- /docs/images/autopep8-set-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/autopep8-set-up.png -------------------------------------------------------------------------------- /docs/images/edit-watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/edit-watcher.png -------------------------------------------------------------------------------- /docs/images/external-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/external-tools.png -------------------------------------------------------------------------------- /docs/images/pycodestyle-set-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/pycodestyle-set-up.png -------------------------------------------------------------------------------- /docs/images/tool-set-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/images/tool-set-up.png -------------------------------------------------------------------------------- /docs/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/references.rst -------------------------------------------------------------------------------- /docs/theme/tii/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/layout.html -------------------------------------------------------------------------------- /docs/theme/tii/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/search.html -------------------------------------------------------------------------------- /docs/theme/tii/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/favicon.ico -------------------------------------------------------------------------------- /docs/theme/tii/static/logo_sagemath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/logo_sagemath.svg -------------------------------------------------------------------------------- /docs/theme/tii/static/logo_tii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/logo_tii.png -------------------------------------------------------------------------------- /docs/theme/tii/static/logo_tii.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/logo_tii.svg -------------------------------------------------------------------------------- /docs/theme/tii/static/mathjax_sage.js_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/mathjax_sage.js_t -------------------------------------------------------------------------------- /docs/theme/tii/static/sage.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/sage.css_t -------------------------------------------------------------------------------- /docs/theme/tii/static/sageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/sageicon.png -------------------------------------------------------------------------------- /docs/theme/tii/static/sagelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/sagelogo.png -------------------------------------------------------------------------------- /docs/theme/tii/static/thebe-sage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/static/thebe-sage.js -------------------------------------------------------------------------------- /docs/theme/tii/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/docs/theme/tii/theme.conf -------------------------------------------------------------------------------- /extract_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/extract_release_notes.py -------------------------------------------------------------------------------- /publish_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/publish_documentation.py -------------------------------------------------------------------------------- /required_dependencies/assess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/required_dependencies/assess.c -------------------------------------------------------------------------------- /required_dependencies/sage_numerical_backends_gurobi-9.3.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/required_dependencies/sage_numerical_backends_gurobi-9.3.1.tar.gz -------------------------------------------------------------------------------- /required_dependencies/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/required_dependencies/utilities.c -------------------------------------------------------------------------------- /required_dependencies/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/required_dependencies/utilities.h -------------------------------------------------------------------------------- /run_update_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/run_update_changelog.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/benchmark/cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/benchmark/cipher_test.py -------------------------------------------------------------------------------- /tests/benchmark/sat_xor_differential_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/benchmark/sat_xor_differential_model_test.py -------------------------------------------------------------------------------- /tests/benchmark/statistical_tests_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/benchmark/statistical_tests_test.py -------------------------------------------------------------------------------- /tests/compound_xor_differential_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/compound_xor_differential_cipher_test.py -------------------------------------------------------------------------------- /tests/precomputed_results.sobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/precomputed_results.sobj -------------------------------------------------------------------------------- /tests/unit/cipher_modules/avalanche_tests_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/avalanche_tests_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/code_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/code_generator_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/component_analysis_tests_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/component_analysis_tests_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/continuous_diffusion_analysis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/continuous_diffusion_analysis_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/division_trail_search_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/division_trail_search_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/generic_functions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/generic_functions_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/generic_functions_vectorized_byte_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/generic_functions_vectorized_byte_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/graph_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/graph_generator_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/algebraic/algebraic_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/algebraic/algebraic_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/algebraic/constraints_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/algebraic/constraints_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/cp/mzn_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/cp/mzn_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/cp/mzn_models/mzn_cipher_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/cp/mzn_models/mzn_cipher_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/cp/mzn_models/mzn_xor_linear_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/cp/mzn_models/mzn_xor_linear_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/milp/milp_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/milp/milp_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/milp/milp_models/milp_cipher_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/milp/milp_models/milp_cipher_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/models_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/models_utils_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/sat/cms_models/cms_cipher_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/sat/cms_models/cms_cipher_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/sat/sat_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/sat/sat_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/sat/sat_models/chacha_inverse_4_rounds.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/sat/sat_models/chacha_inverse_4_rounds.pkl -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/sat/sat_models/sat_cipher_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/sat/sat_models/sat_cipher_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/sat/utils/sat_model_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/sat/utils/sat_model_utils_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/smt/smt_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/smt/smt_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/models/smt/smt_models/smt_cipher_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/models/smt/smt_models/smt_cipher_model_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/neural_network_tests_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/neural_network_tests_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/pre_computed_cda_obj.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/pre_computed_cda_obj.pkl -------------------------------------------------------------------------------- /tests/unit/cipher_modules/report_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/report_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/statistical_tests/dataset_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/statistical_tests/dataset_generator_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_modules/statistical_tests/nist_statistical_tests_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_modules/statistical_tests/nist_statistical_tests_test.py -------------------------------------------------------------------------------- /tests/unit/cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/aes_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/aes_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/aradi_block_cipher_sbox_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/aradi_block_cipher_sbox_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/aradi_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/aradi_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/baksheesh_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/baksheesh_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/ballet_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/ballet_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/bea1_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/bea1_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/constant_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/constant_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/des_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/des_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/fancy_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/fancy_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/hight_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/hight_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/identity_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/identity_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/kasumi_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/kasumi_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/lblock_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/lblock_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/lea_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/lea_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/lowmc_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/lowmc_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/midori_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/midori_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/present_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/present_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/prince_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/prince_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/prince_v2_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/prince_v2_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/qarmav2_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/qarmav2_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/raiden_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/raiden_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/rc5_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/rc5_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/scarf_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/scarf_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/simeck_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/simeck_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/simeck_sbox_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/simeck_sbox_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/simon_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/simon_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/simon_sbox_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/simon_sbox_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/skinny_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/skinny_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/sparx_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/sparx_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/speck_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/speck_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/speedy_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/speedy_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/tea_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/tea_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/threefish_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/threefish_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/twine_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/twine_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/twofish_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/twofish_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/ublock_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/ublock_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/block_ciphers/xtea_block_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/block_ciphers/xtea_block_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/hash_functions/blake2_hash_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/hash_functions/blake2_hash_function_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/hash_functions/blake_hash_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/hash_functions/blake_hash_function_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/hash_functions/md5_hash_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/hash_functions/md5_hash_function_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/hash_functions/sha1_hash_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/hash_functions/sha1_hash_function_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/hash_functions/sha2_hash_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/hash_functions/sha2_hash_function_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/hash_functions/whirlpool_hash_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/hash_functions/whirlpool_hash_function_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/ascon_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/ascon_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/ascon_sbox_sigma_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/ascon_sbox_sigma_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/chacha_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/chacha_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/gaston_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/gaston_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/gaston_sbox_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/gaston_sbox_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/gaston_sbox_theta_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/gaston_sbox_theta_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/gift_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/gift_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/gift_sbox_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/gift_sbox_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/gimli_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/gimli_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/gimli_sbox_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/gimli_sbox_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/grain_core_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/grain_core_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/keccak_invertible_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/keccak_invertible_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/keccak_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/keccak_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/keccak_sbox_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/keccak_sbox_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/photon_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/photon_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/salsa_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/salsa_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/sparkle_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/sparkle_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/spongent_pi_fsr_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/spongent_pi_fsr_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/spongent_pi_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/spongent_pi_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/tinyjambu_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/tinyjambu_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/xoodoo_invertible_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/xoodoo_invertible_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/xoodoo_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/xoodoo_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/permutations/xoodoo_sbox_permutation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/permutations/xoodoo_sbox_permutation_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/a5_1_stream_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/a5_1_stream_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/a5_2_stream_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/a5_2_stream_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/bivium_stream_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/bivium_stream_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/bluetooth_stream_cipher_e0_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/bluetooth_stream_cipher_e0_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/chacha_stream_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/chacha_stream_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/snow3g_stream_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/snow3g_stream_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/trivium_stream_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/trivium_stream_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/stream_ciphers/zuc_stream_cipher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/stream_ciphers/zuc_stream_cipher_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/toys/toy_cipherFOUR_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/toys/toy_cipherFOUR_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/toys/toyfeistel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/toys/toyfeistel_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/toys/toyspn1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/toys/toyspn1_test.py -------------------------------------------------------------------------------- /tests/unit/ciphers/toys/toyspn2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/ciphers/toys/toyspn2_test.py -------------------------------------------------------------------------------- /tests/unit/components/and_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/and_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/cipher_output_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/cipher_output_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/constant_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/constant_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/fsr_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/fsr_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/linear_layer_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/linear_layer_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/mix_column_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/mix_column_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/modadd_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/modadd_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/modsub_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/modsub_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/not_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/not_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/or_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/or_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/rotate_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/rotate_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/sbox_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/sbox_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/shift_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/shift_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/variable_shift_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/variable_shift_component_test.py -------------------------------------------------------------------------------- /tests/unit/components/xor_component_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/components/xor_component_test.py -------------------------------------------------------------------------------- /tests/unit/editor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/editor_test.py -------------------------------------------------------------------------------- /tests/unit/utils/integer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/utils/integer_test.py -------------------------------------------------------------------------------- /tests/unit/utils/sequence_operations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/utils/sequence_operations_test.py -------------------------------------------------------------------------------- /tests/unit/utils/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/tests/unit/utils/utils_test.py -------------------------------------------------------------------------------- /update_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto-TII/claasp/HEAD/update_changelog.py --------------------------------------------------------------------------------