Change the integer bit length for non-linear functions.
(self, bit_length)
| 681 | return self.input_files[key] |
| 682 | |
| 683 | def set_bit_length(self, bit_length): |
| 684 | """Change the integer bit length for non-linear functions.""" |
| 685 | self.bit_length = bit_length |
| 686 | print("Changed bit length for comparisons etc. to", bit_length) |
| 687 | |
| 688 | def set_security(self, security): |
| 689 | changed = self._security != security |
no test coverage detected