Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 1 | """Framework classes for generation of ecp test cases.""" |
| 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 | |
| 17 | from typing import List |
| 18 | |
Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 19 | from . import test_data_generation |
Gabor Mezei | bd23f3b | 2023-01-25 18:09:49 +0100 | [diff] [blame] | 20 | from . import bignum_common |
Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 21 | |
| 22 | class EcpTarget(test_data_generation.BaseTarget): |
| 23 | #pylint: disable=abstract-method, too-few-public-methods |
| 24 | """Target for ecp test case generation.""" |
| 25 | target_basename = 'test_suite_ecp.generated' |
Gabor Mezei | bd23f3b | 2023-01-25 18:09:49 +0100 | [diff] [blame] | 26 | |
| 27 | class EcpP192R1Raw(bignum_common.ModOperationCommon, |
| 28 | EcpTarget): |
| 29 | """Test cases for ecp quasi_reduction().""" |
| 30 | symbol = "-" |
| 31 | test_function = "ecp_mod_p192_raw" |
| 32 | test_name = "ecp_mod_p192_raw" |
| 33 | input_style = "fixed" |
| 34 | arity = 1 |
| 35 | |
Gabor Mezei | b687508 | 2023-01-31 14:35:17 +0100 | [diff] [blame] | 36 | moduli = ["fffffffffffffffffffffffffffffffeffffffffffffffff"] # type: List[str] |
Gabor Mezei | bd23f3b | 2023-01-25 18:09:49 +0100 | [diff] [blame] | 37 | |
| 38 | input_values = [ |
| 39 | "0", "1", |
| 40 | |
Gabor Mezei | 5c9f401 | 2023-02-13 14:15:08 +0100 | [diff] [blame] | 41 | # Modulus - 1 |
| 42 | "fffffffffffffffffffffffffffffffefffffffffffffffe", |
| 43 | |
Gabor Mezei | bd23f3b | 2023-01-25 18:09:49 +0100 | [diff] [blame] | 44 | # First 8 number generated by random.getrandbits(384) - seed(2,2) |
| 45 | ("cf1822ffbc6887782b491044d5e341245c6e433715ba2bdd" |
| 46 | "177219d30e7a269fd95bafc8f2a4d27bdcf4bb99f4bea973"), |
| 47 | ("ffed9235288bc781ae66267594c9c9500925e4749b575bd1" |
| 48 | "3653f8dd9b1f282e4067c3584ee207f8da94e3e8ab73738f"), |
| 49 | ("ef8acd128b4f2fc15f3f57ebf30b94fa82523e86feac7eb7" |
| 50 | "dc38f519b91751dacdbd47d364be8049a372db8f6e405d93"), |
| 51 | ("e8624fab5186ee32ee8d7ee9770348a05d300cb90706a045" |
| 52 | "defc044a09325626e6b58de744ab6cce80877b6f71e1f6d2"), |
| 53 | ("2d3d854e061b90303b08c6e33c7295782d6c797f8f7d9b78" |
| 54 | "2a1be9cd8697bbd0e2520e33e44c50556c71c4a66148a86f"), |
| 55 | ("fec3f6b32e8d4b8a8f54f8ceacaab39e83844b40ffa9b9f1" |
| 56 | "5c14bc4a829e07b0829a48d422fe99a22c70501e533c9135"), |
| 57 | ("97eeab64ca2ce6bc5d3fd983c34c769fe89204e2e8168561" |
| 58 | "867e5e15bc01bfce6a27e0dfcbf8754472154e76e4c11ab2"), |
| 59 | ("bd143fa9b714210c665d7435c1066932f4767f26294365b2" |
| 60 | "721dea3bf63f23d0dbe53fcafb2147df5ca495fa5a91c89b"), |
| 61 | |
| 62 | # Next 2 number generated by random.getrandbits(192) |
| 63 | "47733e847d718d733ff98ff387c56473a7a83ee0761ebfd2", |
| 64 | "cbd4d3e2d4dec9ef83f0be4e80371eb97f81375eecc1cb63" |
| 65 | ] |
| 66 | |
| 67 | @property |
| 68 | def arg_a(self) -> str: |
| 69 | return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits) |
| 70 | |
| 71 | def result(self) -> List[str]: |
| 72 | result = self.int_a % self.int_n |
| 73 | return [self.format_result(result)] |
| 74 | |
| 75 | @property |
| 76 | def is_valid(self) -> bool: |
| 77 | return True |
Gabor Mezei | d8f67b9 | 2023-02-06 15:49:42 +0100 | [diff] [blame^] | 78 | |
| 79 | class EcpP521R1Raw(bignum_common.ModOperationCommon, |
| 80 | EcpTarget): |
| 81 | """Test cases for ecp quasi_reduction().""" |
| 82 | test_function = "ecp_mod_p521_raw" |
| 83 | test_name = "ecp_mod_p521_raw" |
| 84 | input_style = "fixed" |
| 85 | arity = 1 |
| 86 | |
| 87 | moduli = [("01ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
| 88 | "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff") |
| 89 | ] # type: List[str] |
| 90 | |
| 91 | input_values = [ |
| 92 | "0", "1", |
| 93 | |
| 94 | # Test case for overflow during addition |
| 95 | ("0001efffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
| 96 | "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
| 97 | "000001ef" |
| 98 | "0000000000000000000000000000000000000000000000000000000000000000" |
| 99 | "000000000000000000000000000000000000000000000000000000000f000000"), |
| 100 | |
| 101 | # First 8 number generated by random.getrandbits(1042) - seed(2,2) |
| 102 | ("0003cc2e82523e86feac7eb7dc38f519b91751dacdbd47d364be8049a372db8f" |
| 103 | "6e405d93ffed9235288bc781ae66267594c9c9500925e4749b575bd13653f8dd" |
| 104 | "9b1f282e" |
| 105 | "4067c3584ee207f8da94e3e8ab73738fcf1822ffbc6887782b491044d5e34124" |
| 106 | "5c6e433715ba2bdd177219d30e7a269fd95bafc8f2a4d27bdcf4bb99f4bea973"), |
| 107 | ("00017052829e07b0829a48d422fe99a22c70501e533c91352d3d854e061b9030" |
| 108 | "3b08c6e33c7295782d6c797f8f7d9b782a1be9cd8697bbd0e2520e33e44c5055" |
| 109 | "6c71c4a6" |
| 110 | "6148a86fe8624fab5186ee32ee8d7ee9770348a05d300cb90706a045defc044a" |
| 111 | "09325626e6b58de744ab6cce80877b6f71e1f6d2ef8acd128b4f2fc15f3f57eb"), |
| 112 | ("00021f15a7a83ee0761ebfd2bd143fa9b714210c665d7435c1066932f4767f26" |
| 113 | "294365b2721dea3bf63f23d0dbe53fcafb2147df5ca495fa5a91c89b97eeab64" |
| 114 | "ca2ce6bc" |
| 115 | "5d3fd983c34c769fe89204e2e8168561867e5e15bc01bfce6a27e0dfcbf87544" |
| 116 | "72154e76e4c11ab2fec3f6b32e8d4b8a8f54f8ceacaab39e83844b40ffa9b9f1"), |
| 117 | ("000381bc2a838af8d5c44a4eb3172062d08f1bb2531d6460f0caeef038c89b38" |
| 118 | "a8acb5137c9260dc74e088a9b9492f258ebdbfe3eb9ac688b9d39cca91551e82" |
| 119 | "59cc60b1" |
| 120 | "7604e4b4e73695c3e652c71a74667bffe202849da9643a295a9ac6decbd4d3e2" |
| 121 | "d4dec9ef83f0be4e80371eb97f81375eecc1cb6347733e847d718d733ff98ff3"), |
| 122 | ("00034816c8c69069134bccd3e1cf4f589f8e4ce0af29d115ef24bd625dd961e6" |
| 123 | "830b54fa7d28f93435339774bb1e386c4fd5079e681b8f5896838b769da59b74" |
| 124 | "a6c3181c" |
| 125 | "81e220df848b1df78feb994a81167346d4c0dca8b4c9e755cc9c3adcf515a823" |
| 126 | "4da4daeb4f3f87777ad1f45ae9500ec9c5e2486c44a4a8f69dc8db48e86ec9c6"), |
| 127 | ("000397846c4454b90f756132e16dce72f18e859835e1f291d322a7353ead4efe" |
| 128 | "440e2b4fda9c025a22f1a83185b98f5fc11e60de1b343f52ea748db9e020307a" |
| 129 | "aeb6db2c" |
| 130 | "3a038a709779ac1f45e9dd320c855fdfa7251af0930cdbd30f0ad2a81b2d19a2" |
| 131 | "beaa14a7ff3fe32a30ffc4eed0a7bd04e85bfcdd0227eeb7b9d7d01f5769da05"), |
| 132 | ("00002c3296e6bc4d62b47204007ee4fab105d83e85e951862f0981aebc1b00d9" |
| 133 | "2838e766ef9b6bf2d037fe2e20b6a8464174e75a5f834da70569c018eb2b5693" |
| 134 | "babb7fbb" |
| 135 | "0a76c196067cfdcb11457d9cf45e2fa01d7f4275153924800600571fac3a5b26" |
| 136 | "3fdf57cd2c0064975c3747465cc36c270e8a35b10828d569c268a20eb78ac332"), |
| 137 | ("00009d23b4917fc09f20dbb0dcc93f0e66dfe717c17313394391b6e2e6eacb0f" |
| 138 | "0bb7be72bd6d25009aeb7fa0c4169b148d2f527e72daf0a54ef25c0707e33868" |
| 139 | "7d1f7157" |
| 140 | "5653a45c49390aa51cf5192bbf67da14be11d56ba0b4a2969d8055a9f03f2d71" |
| 141 | "581d8e830112ff0f0948eccaf8877acf26c377c13f719726fd70bddacb4deeec"), |
| 142 | |
| 143 | # Next 2 number generated by random.getrandbits(521) |
| 144 | ("12b84ae65e920a63ac1f2b64df6dff07870c9d531ae72a47403063238da1a1fe" |
| 145 | "3f9d6a179fa50f96cd4aff9261aa92c0e6f17ec940639bc2ccdf572df00790813e3"), |
| 146 | ("166049dd332a73fa0b26b75196cf87eb8a09b27ec714307c68c425424a1574f1" |
| 147 | "eedf5b0f16cdfdb839424d201e653f53d6883ca1c107ca6e706649889c0c7f38608") |
| 148 | ] |
| 149 | |
| 150 | @property |
| 151 | def arg_a(self) -> str: |
| 152 | return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits - 2 * self.bits_in_limb // 8) |
| 153 | |
| 154 | def result(self) -> List[str]: |
| 155 | result = self.int_a % self.int_n |
| 156 | return [self.format_result(result)] |
| 157 | |
| 158 | @property |
| 159 | def is_valid(self) -> bool: |
| 160 | return True |