blob: 8b11bc283c24ea253e3601356d8439c2836b814b [file] [log] [blame]
Werner Lewis99e81782022-09-30 16:28:43 +01001"""Common features for bignum in test generation framework."""
2# Copyright The Mbed TLS Contributors
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the "License"); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Werner Lewis99e81782022-09-30 16:28:43 +010017from abc import abstractmethod
18from typing import Iterator, List, Tuple, TypeVar
19
20T = TypeVar('T') #pylint: disable=invalid-name
21
Werner Lewisa8503122022-10-04 10:10:40 +010022def invmod(a: int, n: int) -> int:
23 """Return inverse of a to modulo n.
24
25 Equivalent to pow(a, -1, n) in Python 3.8+. Implementation is equivalent
26 to long_invmod() in CPython.
27 """
28 b, c = 1, 0
29 while n:
30 q, r = divmod(a, n)
31 a, b, c, n = n, c, b - q*c, r
32 # at this point a is the gcd of the original inputs
33 if a == 1:
34 return b
35 raise ValueError("Not invertible")
36
Werner Lewis99e81782022-09-30 16:28:43 +010037def hex_to_int(val: str) -> int:
Gilles Peskine35af0212022-11-15 20:43:33 +010038 """Implement the syntax accepted by mbedtls_test_read_mpi().
39
40 This is a superset of what is accepted by mbedtls_test_read_mpi_core().
41 """
Gilles Peskineb9b90262022-11-10 09:15:21 +010042 if val in ['', '-']:
Gilles Peskine35af0212022-11-15 20:43:33 +010043 return 0
44 return int(val, 16)
Werner Lewis99e81782022-09-30 16:28:43 +010045
46def quote_str(val) -> str:
47 return "\"{}\"".format(val)
48
Werner Lewisf86c82e2022-10-19 13:50:10 +010049def bound_mpi(val: int, bits_in_limb: int) -> int:
50 """First number exceeding number of limbs needed for given input value."""
51 return bound_mpi_limbs(limbs_mpi(val, bits_in_limb), bits_in_limb)
Werner Lewis99e81782022-09-30 16:28:43 +010052
Werner Lewisf86c82e2022-10-19 13:50:10 +010053def bound_mpi_limbs(limbs: int, bits_in_limb: int) -> int:
54 """First number exceeding maximum of given number of limbs."""
55 bits = bits_in_limb * limbs
Werner Lewis99e81782022-09-30 16:28:43 +010056 return 1 << bits
57
Werner Lewisf86c82e2022-10-19 13:50:10 +010058def limbs_mpi(val: int, bits_in_limb: int) -> int:
59 """Return the number of limbs required to store value."""
60 return (val.bit_length() + bits_in_limb - 1) // bits_in_limb
Werner Lewis99e81782022-09-30 16:28:43 +010061
62def combination_pairs(values: List[T]) -> List[Tuple[T, T]]:
Gilles Peskine4cbbfd82022-11-09 21:57:52 +010063 """Return all pair combinations from input values."""
64 return [(x, y) for x in values for y in values]
Werner Lewis99e81782022-09-30 16:28:43 +010065
66
67class OperationCommon:
68 """Common features for bignum binary operations.
69
70 This adds functionality common in binary operation tests.
71
72 Attributes:
73 symbol: Symbol to use for the operation in case description.
74 input_values: List of values to use as test case inputs. These are
75 combined to produce pairs of values.
76 input_cases: List of tuples containing pairs of test case inputs. This
77 can be used to implement specific pairs of inputs.
Werner Lewisbbf0a322022-10-04 10:07:13 +010078 unique_combinations_only: Boolean to select if test case combinations
79 must be unique. If True, only A,B or B,A would be included as a test
80 case. If False, both A,B and B,A would be included.
Werner Lewis99e81782022-09-30 16:28:43 +010081 """
82 symbol = ""
83 input_values = [] # type: List[str]
84 input_cases = [] # type: List[Tuple[str, str]]
Werner Lewisbbf0a322022-10-04 10:07:13 +010085 unique_combinations_only = True
Werner Lewis99e81782022-09-30 16:28:43 +010086
87 def __init__(self, val_a: str, val_b: str) -> None:
88 self.arg_a = val_a
89 self.arg_b = val_b
90 self.int_a = hex_to_int(val_a)
91 self.int_b = hex_to_int(val_b)
92
93 def arguments(self) -> List[str]:
Werner Lewis1b20e7e2022-10-12 14:53:17 +010094 return [
95 quote_str(self.arg_a), quote_str(self.arg_b)
96 ] + self.result()
Werner Lewis99e81782022-09-30 16:28:43 +010097
98 @abstractmethod
Werner Lewis1b20e7e2022-10-12 14:53:17 +010099 def result(self) -> List[str]:
Werner Lewis99e81782022-09-30 16:28:43 +0100100 """Get the result of the operation.
101
102 This could be calculated during initialization and stored as `_result`
103 and then returned, or calculated when the method is called.
104 """
105 raise NotImplementedError
106
107 @classmethod
108 def get_value_pairs(cls) -> Iterator[Tuple[str, str]]:
109 """Generator to yield pairs of inputs.
110
111 Combinations are first generated from all input values, and then
112 specific cases provided.
113 """
Werner Lewisbbf0a322022-10-04 10:07:13 +0100114 if cls.unique_combinations_only:
115 yield from combination_pairs(cls.input_values)
116 else:
117 yield from (
118 (a, b)
119 for a in cls.input_values
120 for b in cls.input_values
121 )
Werner Lewis99e81782022-09-30 16:28:43 +0100122 yield from cls.input_cases
Janos Follathf8b3b722022-11-03 14:46:18 +0000123
124# BEGIN MERGE SLOT 1
125
126# END MERGE SLOT 1
127
128# BEGIN MERGE SLOT 2
129
130# END MERGE SLOT 2
131
132# BEGIN MERGE SLOT 3
133
134# END MERGE SLOT 3
135
136# BEGIN MERGE SLOT 4
137
138# END MERGE SLOT 4
139
140# BEGIN MERGE SLOT 5
141
142# END MERGE SLOT 5
143
144# BEGIN MERGE SLOT 6
145
146# END MERGE SLOT 6
147
148# BEGIN MERGE SLOT 7
149
150# END MERGE SLOT 7
151
152# BEGIN MERGE SLOT 8
153
154# END MERGE SLOT 8
155
156# BEGIN MERGE SLOT 9
157
158# END MERGE SLOT 9
159
160# BEGIN MERGE SLOT 10
161
162# END MERGE SLOT 10