Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #211

Merged
merged 55 commits into from
Apr 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
70c5f72
FIX:fixed trail search output format
MFormenti Mar 21, 2024
c46f88c
FIX:fixed trail search output format
MFormenti Mar 21, 2024
0ca8a1e
FIX:fixed trail search output format
MFormenti Mar 21, 2024
5a5d3a4
eliminated connection variables and connection polynomials from the p…
Mar 21, 2024
fa313cb
fixed tests needed due to the removal of connection polynomials from …
Mar 21, 2024
a8678b3
FIX:fixed trail search output format
MFormenti Mar 21, 2024
8aafd3e
polished function connection_variable
Mar 21, 2024
262a5bb
fixed algebraic tests in cipher_test.py due to removal of connection …
Mar 21, 2024
c113a0c
increased time limit for a test in cipher_test.py
Mar 21, 2024
5deb9e6
changed some NIST tests to Dieharder tests in the report_test.py file…
Mar 22, 2024
d157688
FIX:added date time to report folders and statistical tests folders.
MFormenti Mar 22, 2024
37e0ac9
FIX:added date time to report folders and statistical tests folders.
MFormenti Mar 22, 2024
75bf938
Update changelog from past release.
AnaCaceres Mar 22, 2024
7f38eda
improved code maintainability
MFormenti Mar 22, 2024
1e6ab02
improved code maintainability
MFormenti Mar 22, 2024
bef6921
improved code maintainability
MFormenti Mar 22, 2024
a71dae1
fixed typo
MFormenti Mar 22, 2024
f53e724
fixed typo
MFormenti Mar 22, 2024
50e67ab
padded trails output
MFormenti Mar 22, 2024
b5e1c19
Merge pull request #209 from Crypto-TII/fix/fix-trail-output-format
peacker Mar 25, 2024
1d8da6d
made an internal function to obtain input variables and previous inpu…
Mar 25, 2024
2d72e7f
:bug: Fix benchmark and pytest tests from fork repo.
mariags803 Mar 25, 2024
7fe2f4a
polished code to reduce duplication
Mar 26, 2024
a03f7d7
resolved develop merge conflict
Mar 26, 2024
6322381
Update CONTRIBUTING.md.
AnaCaceres Mar 26, 2024
6c58578
Merge pull request #207 from Crypto-TII/fix/remove_connection_polynom…
peacker Mar 27, 2024
d91e581
FIX/sonarqube reliability warning
p-huynh Mar 27, 2024
2ad4870
Merge branch 'develop' into fix/fork-pull-request
AnaCaceres Mar 27, 2024
694a952
Merge branch 'develop' into fix/changelog
AnaCaceres Mar 27, 2024
81d8129
Fix sonarcloud scan workflow.
mariags803 Mar 27, 2024
b2992fb
Merge pull request #210 from Crypto-TII/remove_sonarcloud_bug_warning
peacker Mar 29, 2024
25815d1
Merge pull request #208 from Crypto-TII/fix/changelog
peacker Mar 29, 2024
96e83a8
FEATURE/Add: CoinBC backend for MILP module
p-huynh Mar 31, 2024
dd25db9
FEATURE/Add: CoinBC backend for MILP module
p-huynh Mar 31, 2024
5313d54
Merge branch 'develop' into fix/fork-pull-request
mariags803 Apr 1, 2024
b745423
Fix sonarcloud scan workflow.
mariags803 Apr 1, 2024
d244c11
Fix sonarcloud scan workflow.
mariags803 Apr 1, 2024
41d643a
Update run-pytest workflow to run the sonarcloud analysis as well
AnaCaceres Apr 1, 2024
5dcc9b6
Update node version in run-pytest-and-sonarcloud-scan.yaml workflow.
AnaCaceres Apr 1, 2024
fd6f1a7
Revert "Update node version in run-pytest-and-sonarcloud-scan.yaml wo…
AnaCaceres Apr 1, 2024
077ad5e
eliminated constant component polynomials from the polynomial system …
Apr 2, 2024
2101e7f
modified algebraic tests due to the removal of constant component pol…
Apr 2, 2024
140f01a
Merge branch 'develop' into fix/remove_polynomials_of_constant_component
Apr 2, 2024
f090b7b
plished code
Apr 2, 2024
44c23cd
fixed some algebraic tests output
Apr 2, 2024
26d77d7
fixed constant removal in algebraic_tests object
Apr 3, 2024
dc8b8f6
resolved error of generation of polynomials for the OR component
Apr 4, 2024
c809bcb
FEATURE/Add: added method to get MILP solvers
p-huynh Apr 4, 2024
a671af4
Fixing pytests
p-huynh Apr 4, 2024
e961616
Merge pull request #213 from Crypto-TII/fix/fork-pull-request
peacker Apr 5, 2024
de6b804
Merge pull request #214 from Crypto-TII/fix/remove_polynomials_of_con…
peacker Apr 5, 2024
77e0391
Merge pull request #212 from Crypto-TII/FEATURE/Add_cbc_backend
peacker Apr 5, 2024
cb28bed
Merge pull request #216 from Crypto-TII/add_method_to_get_MILP_solver…
peacker Apr 5, 2024
de667cd
Merge branch 'develop' into fix/polynomial_generation_of_or_component
Apr 5, 2024
03ebbc5
Merge pull request #215 from Crypto-TII/fix/polynomial_generation_of_…
peacker Apr 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
polished code to reduce duplication
Sharwan Tiwari authored and Sharwan Tiwari committed Mar 26, 2024
commit 7fe2f4aefc0cad24c344afd2dad93766ea3a99cb
1 change: 0 additions & 1 deletion claasp/cipher_modules/models/algebraic/algebraic_model.py
Original file line number Diff line number Diff line change
@@ -228,7 +228,6 @@ def _apply_connection_variable_mapping(self, polys, r):
if not polys:
return polys

R = self.ring()
variable_substitution_dict = {}

for component in self._cipher.get_components_in_round(r):