Alex Gaynor | f312a5c | 2013-08-10 15:23:38 -0400 | [diff] [blame] | 1 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 2 | # you may not use this file except in compliance with the License. |
| 3 | # You may obtain a copy of the License at |
| 4 | # |
| 5 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | # |
| 7 | # Unless required by applicable law or agreed to in writing, software |
| 8 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 10 | # implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
Alex Gaynor | c37feed | 2014-03-08 08:32:56 -0800 | [diff] [blame] | 14 | from __future__ import absolute_import, division, print_function |
| 15 | |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 16 | import collections |
Alex Gaynor | 2b3f942 | 2013-12-24 21:55:24 -0800 | [diff] [blame] | 17 | import os |
| 18 | |
| 19 | import pytest |
Paul Kehrer | 90450f3 | 2014-03-19 12:37:17 -0400 | [diff] [blame^] | 20 | |
Paul Kehrer | afc1ccd | 2014-03-19 11:49:32 -0400 | [diff] [blame] | 21 | import six |
Alex Gaynor | 2b3f942 | 2013-12-24 21:55:24 -0800 | [diff] [blame] | 22 | |
| 23 | |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 24 | HashVector = collections.namedtuple("HashVector", ["message", "digest"]) |
| 25 | KeyedHashVector = collections.namedtuple( |
| 26 | "KeyedHashVector", ["message", "digest", "key"] |
| 27 | ) |
| 28 | |
| 29 | |
Paul Kehrer | c421e63 | 2014-01-18 09:22:21 -0600 | [diff] [blame] | 30 | def select_backends(names, backend_list): |
| 31 | if names is None: |
| 32 | return backend_list |
| 33 | split_names = [x.strip() for x in names.split(',')] |
| 34 | # this must be duplicated and then removed to preserve the metadata |
| 35 | # pytest associates. Appending backends to a new list doesn't seem to work |
Paul Kehrer | aed9e17 | 2014-01-19 12:09:27 -0600 | [diff] [blame] | 36 | selected_backends = [] |
| 37 | for backend in backend_list: |
| 38 | if backend.name in split_names: |
| 39 | selected_backends.append(backend) |
Paul Kehrer | c421e63 | 2014-01-18 09:22:21 -0600 | [diff] [blame] | 40 | |
Paul Kehrer | aed9e17 | 2014-01-19 12:09:27 -0600 | [diff] [blame] | 41 | if len(selected_backends) > 0: |
| 42 | return selected_backends |
Paul Kehrer | c421e63 | 2014-01-18 09:22:21 -0600 | [diff] [blame] | 43 | else: |
| 44 | raise ValueError( |
| 45 | "No backend selected. Tried to select: {0}".format(split_names) |
| 46 | ) |
Paul Kehrer | 34c075e | 2014-01-13 21:52:08 -0500 | [diff] [blame] | 47 | |
| 48 | |
Alex Gaynor | 2b3f942 | 2013-12-24 21:55:24 -0800 | [diff] [blame] | 49 | def check_for_iface(name, iface, item): |
| 50 | if name in item.keywords and "backend" in item.funcargs: |
| 51 | if not isinstance(item.funcargs["backend"], iface): |
| 52 | pytest.skip("{0} backend does not support {1}".format( |
| 53 | item.funcargs["backend"], name |
| 54 | )) |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 55 | |
| 56 | |
Paul Kehrer | 60fc8da | 2013-12-26 20:19:34 -0600 | [diff] [blame] | 57 | def check_backend_support(item): |
Paul Kehrer | 5a8fdf8 | 2013-12-26 20:13:45 -0600 | [diff] [blame] | 58 | supported = item.keywords.get("supported") |
| 59 | if supported and "backend" in item.funcargs: |
| 60 | if not supported.kwargs["only_if"](item.funcargs["backend"]): |
Paul Kehrer | f03334e | 2014-01-02 23:16:14 -0600 | [diff] [blame] | 61 | pytest.skip("{0} ({1})".format( |
| 62 | supported.kwargs["skip_message"], item.funcargs["backend"] |
| 63 | )) |
Paul Kehrer | 5a8fdf8 | 2013-12-26 20:13:45 -0600 | [diff] [blame] | 64 | elif supported: |
Paul Kehrer | ec49550 | 2013-12-27 15:51:40 -0600 | [diff] [blame] | 65 | raise ValueError("This mark is only available on methods that take a " |
| 66 | "backend") |
Paul Kehrer | 5a8fdf8 | 2013-12-26 20:13:45 -0600 | [diff] [blame] | 67 | |
| 68 | |
Paul Kehrer | f7f6a9f | 2013-11-11 20:43:52 -0600 | [diff] [blame] | 69 | def load_vectors_from_file(filename, loader): |
| 70 | base = os.path.join( |
| 71 | os.path.dirname(__file__), "hazmat", "primitives", "vectors", |
| 72 | ) |
| 73 | with open(os.path.join(base, filename), "r") as vector_file: |
| 74 | return loader(vector_file) |
| 75 | |
| 76 | |
Alex Gaynor | d3ce703 | 2013-11-11 14:46:20 -0800 | [diff] [blame] | 77 | def load_nist_vectors(vector_data): |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 78 | test_data = None |
| 79 | data = [] |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 80 | |
| 81 | for line in vector_data: |
| 82 | line = line.strip() |
| 83 | |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 84 | # Blank lines, comments, and section headers are ignored |
| 85 | if not line or line.startswith("#") or (line.startswith("[") |
| 86 | and line.endswith("]")): |
Alex Gaynor | 521c42d | 2013-11-11 14:25:59 -0800 | [diff] [blame] | 87 | continue |
| 88 | |
Paul Kehrer | a43b669 | 2013-11-12 15:35:49 -0600 | [diff] [blame] | 89 | if line.strip() == "FAIL": |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 90 | test_data["fail"] = True |
Paul Kehrer | a43b669 | 2013-11-12 15:35:49 -0600 | [diff] [blame] | 91 | continue |
| 92 | |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 93 | # Build our data using a simple Key = Value format |
Paul Kehrer | a43b669 | 2013-11-12 15:35:49 -0600 | [diff] [blame] | 94 | name, value = [c.strip() for c in line.split("=")] |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 95 | |
Paul Kehrer | 1050ddf | 2014-01-27 21:04:03 -0600 | [diff] [blame] | 96 | # Some tests (PBKDF2) contain \0, which should be interpreted as a |
| 97 | # null character rather than literal. |
| 98 | value = value.replace("\\0", "\0") |
| 99 | |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 100 | # COUNT is a special token that indicates a new block of data |
| 101 | if name.upper() == "COUNT": |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 102 | test_data = {} |
| 103 | data.append(test_data) |
| 104 | continue |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 105 | # For all other tokens we simply want the name, value stored in |
| 106 | # the dictionary |
| 107 | else: |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 108 | test_data[name.lower()] = value.encode("ascii") |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 109 | |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 110 | return data |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 111 | |
| 112 | |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 113 | def load_cryptrec_vectors(vector_data): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 114 | cryptrec_list = [] |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 115 | |
| 116 | for line in vector_data: |
| 117 | line = line.strip() |
| 118 | |
| 119 | # Blank lines and comments are ignored |
| 120 | if not line or line.startswith("#"): |
| 121 | continue |
| 122 | |
| 123 | if line.startswith("K"): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 124 | key = line.split(" : ")[1].replace(" ", "").encode("ascii") |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 125 | elif line.startswith("P"): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 126 | pt = line.split(" : ")[1].replace(" ", "").encode("ascii") |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 127 | elif line.startswith("C"): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 128 | ct = line.split(" : ")[1].replace(" ", "").encode("ascii") |
| 129 | # after a C is found the K+P+C tuple is complete |
| 130 | # there are many P+C pairs for each K |
Alex Gaynor | 1fe70b1 | 2013-10-16 11:59:17 -0700 | [diff] [blame] | 131 | cryptrec_list.append({ |
| 132 | "key": key, |
| 133 | "plaintext": pt, |
| 134 | "ciphertext": ct |
| 135 | }) |
Donald Stufft | 3359d7e | 2013-10-19 19:33:06 -0400 | [diff] [blame] | 136 | else: |
| 137 | raise ValueError("Invalid line in file '{}'".format(line)) |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 138 | return cryptrec_list |
| 139 | |
| 140 | |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 141 | def load_hash_vectors(vector_data): |
| 142 | vectors = [] |
Paul Kehrer | 1bb8b71 | 2013-10-27 17:00:14 -0500 | [diff] [blame] | 143 | key = None |
| 144 | msg = None |
| 145 | md = None |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 146 | |
| 147 | for line in vector_data: |
| 148 | line = line.strip() |
| 149 | |
Paul Kehrer | 87cd0db | 2013-10-18 18:01:26 -0500 | [diff] [blame] | 150 | if not line or line.startswith("#") or line.startswith("["): |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 151 | continue |
| 152 | |
| 153 | if line.startswith("Len"): |
| 154 | length = int(line.split(" = ")[1]) |
Paul Kehrer | 0317b04 | 2013-10-28 17:34:27 -0500 | [diff] [blame] | 155 | elif line.startswith("Key"): |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 156 | # HMAC vectors contain a key attribute. Hash vectors do not. |
Paul Kehrer | 0317b04 | 2013-10-28 17:34:27 -0500 | [diff] [blame] | 157 | key = line.split(" = ")[1].encode("ascii") |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 158 | elif line.startswith("Msg"): |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 159 | # In the NIST vectors they have chosen to represent an empty |
| 160 | # string as hex 00, which is of course not actually an empty |
| 161 | # string. So we parse the provided length and catch this edge case. |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 162 | msg = line.split(" = ")[1].encode("ascii") if length > 0 else b"" |
| 163 | elif line.startswith("MD"): |
| 164 | md = line.split(" = ")[1] |
Paul Kehrer | 0317b04 | 2013-10-28 17:34:27 -0500 | [diff] [blame] | 165 | # after MD is found the Msg+MD (+ potential key) tuple is complete |
Paul Kehrer | 00dd509 | 2013-10-23 09:41:49 -0500 | [diff] [blame] | 166 | if key is not None: |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 167 | vectors.append(KeyedHashVector(msg, md, key)) |
Paul Kehrer | 1bb8b71 | 2013-10-27 17:00:14 -0500 | [diff] [blame] | 168 | key = None |
| 169 | msg = None |
| 170 | md = None |
Paul Kehrer | 00dd509 | 2013-10-23 09:41:49 -0500 | [diff] [blame] | 171 | else: |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 172 | vectors.append(HashVector(msg, md)) |
Paul Kehrer | 1bb8b71 | 2013-10-27 17:00:14 -0500 | [diff] [blame] | 173 | msg = None |
| 174 | md = None |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 175 | else: |
| 176 | raise ValueError("Unknown line in hash vector") |
| 177 | return vectors |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 178 | |
| 179 | |
| 180 | def load_pkcs1_vectors(vector_data): |
| 181 | """ |
| 182 | Loads data out of RSA PKCS #1 vector files. |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 183 | """ |
| 184 | private_key_vector = None |
| 185 | public_key_vector = None |
| 186 | attr = None |
| 187 | key = None |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 188 | example_vector = None |
| 189 | examples = [] |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 190 | vectors = [] |
| 191 | for line in vector_data: |
Paul Kehrer | 7774a03 | 2014-02-17 22:56:55 -0600 | [diff] [blame] | 192 | if ( |
| 193 | line.startswith("# PSS Example") or |
| 194 | line.startswith("# PKCS#1 v1.5 Signature") |
| 195 | ): |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 196 | if example_vector: |
| 197 | for key, value in six.iteritems(example_vector): |
Paul Kehrer | 2681180 | 2014-02-19 16:32:11 -0600 | [diff] [blame] | 198 | hex_str = "".join(value).replace(" ", "").encode("ascii") |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 199 | example_vector[key] = hex_str |
| 200 | examples.append(example_vector) |
| 201 | |
| 202 | attr = None |
| 203 | example_vector = collections.defaultdict(list) |
| 204 | |
| 205 | if line.startswith("# Message to be signed"): |
Paul Kehrer | 7d9c306 | 2014-02-18 08:27:39 -0600 | [diff] [blame] | 206 | attr = "message" |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 207 | continue |
| 208 | elif line.startswith("# Salt"): |
| 209 | attr = "salt" |
| 210 | continue |
| 211 | elif line.startswith("# Signature"): |
| 212 | attr = "signature" |
| 213 | continue |
| 214 | elif ( |
| 215 | example_vector and |
| 216 | line.startswith("# =============================================") |
| 217 | ): |
| 218 | for key, value in six.iteritems(example_vector): |
Paul Kehrer | 2681180 | 2014-02-19 16:32:11 -0600 | [diff] [blame] | 219 | hex_str = "".join(value).replace(" ", "").encode("ascii") |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 220 | example_vector[key] = hex_str |
| 221 | examples.append(example_vector) |
| 222 | example_vector = None |
| 223 | attr = None |
| 224 | elif example_vector and line.startswith("#"): |
| 225 | continue |
| 226 | else: |
| 227 | if attr is not None and example_vector is not None: |
| 228 | example_vector[attr].append(line.strip()) |
| 229 | continue |
| 230 | |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 231 | if ( |
| 232 | line.startswith("# Example") or |
| 233 | line.startswith("# =============================================") |
| 234 | ): |
| 235 | if key: |
| 236 | assert private_key_vector |
| 237 | assert public_key_vector |
| 238 | |
| 239 | for key, value in six.iteritems(public_key_vector): |
| 240 | hex_str = "".join(value).replace(" ", "") |
| 241 | public_key_vector[key] = int(hex_str, 16) |
| 242 | |
| 243 | for key, value in six.iteritems(private_key_vector): |
| 244 | hex_str = "".join(value).replace(" ", "") |
| 245 | private_key_vector[key] = int(hex_str, 16) |
| 246 | |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 247 | private_key_vector["examples"] = examples |
| 248 | examples = [] |
| 249 | |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 250 | assert ( |
| 251 | private_key_vector['public_exponent'] == |
| 252 | public_key_vector['public_exponent'] |
| 253 | ) |
| 254 | |
| 255 | assert ( |
| 256 | private_key_vector['modulus'] == |
| 257 | public_key_vector['modulus'] |
| 258 | ) |
| 259 | |
| 260 | vectors.append( |
| 261 | (private_key_vector, public_key_vector) |
| 262 | ) |
| 263 | |
| 264 | public_key_vector = collections.defaultdict(list) |
| 265 | private_key_vector = collections.defaultdict(list) |
| 266 | key = None |
| 267 | attr = None |
| 268 | |
| 269 | if private_key_vector is None or public_key_vector is None: |
| 270 | continue |
| 271 | |
| 272 | if line.startswith("# Private key"): |
| 273 | key = private_key_vector |
| 274 | elif line.startswith("# Public key"): |
| 275 | key = public_key_vector |
| 276 | elif line.startswith("# Modulus:"): |
| 277 | attr = "modulus" |
| 278 | elif line.startswith("# Public exponent:"): |
| 279 | attr = "public_exponent" |
| 280 | elif line.startswith("# Exponent:"): |
| 281 | if key is public_key_vector: |
| 282 | attr = "public_exponent" |
| 283 | else: |
| 284 | assert key is private_key_vector |
| 285 | attr = "private_exponent" |
| 286 | elif line.startswith("# Prime 1:"): |
| 287 | attr = "p" |
| 288 | elif line.startswith("# Prime 2:"): |
| 289 | attr = "q" |
Paul Kehrer | 09328bb | 2014-02-12 23:57:27 -0600 | [diff] [blame] | 290 | elif line.startswith("# Prime exponent 1:"): |
| 291 | attr = "dmp1" |
| 292 | elif line.startswith("# Prime exponent 2:"): |
| 293 | attr = "dmq1" |
| 294 | elif line.startswith("# Coefficient:"): |
| 295 | attr = "iqmp" |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 296 | elif line.startswith("#"): |
| 297 | attr = None |
| 298 | else: |
| 299 | if key is not None and attr is not None: |
| 300 | key[attr].append(line.strip()) |
| 301 | return vectors |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 302 | |
| 303 | |
| 304 | def load_rsa_nist_vectors(vector_data): |
| 305 | test_data = None |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 306 | p = None |
Paul Kehrer | afc2518 | 2014-03-18 07:51:56 -0400 | [diff] [blame] | 307 | salt_length = None |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 308 | data = [] |
| 309 | |
| 310 | for line in vector_data: |
| 311 | line = line.strip() |
| 312 | |
| 313 | # Blank lines and section headers are ignored |
| 314 | if not line or line.startswith("["): |
| 315 | continue |
| 316 | |
| 317 | if line.startswith("# Salt len:"): |
| 318 | salt_length = int(line.split(":")[1].strip()) |
| 319 | continue |
| 320 | elif line.startswith("#"): |
| 321 | continue |
| 322 | |
| 323 | # Build our data using a simple Key = Value format |
| 324 | name, value = [c.strip() for c in line.split("=")] |
| 325 | |
| 326 | if name == "n": |
| 327 | n = int(value, 16) |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 328 | elif name == "e" and p is None: |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 329 | e = int(value, 16) |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 330 | elif name == "p": |
| 331 | p = int(value, 16) |
| 332 | elif name == "q": |
| 333 | q = int(value, 16) |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 334 | elif name == "SHAAlg": |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 335 | if p is None: |
| 336 | test_data = { |
| 337 | "modulus": n, |
| 338 | "public_exponent": e, |
| 339 | "salt_length": salt_length, |
Paul Kehrer | e66f69a | 2014-03-18 07:57:26 -0400 | [diff] [blame] | 340 | "algorithm": value, |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 341 | "fail": False |
| 342 | } |
| 343 | else: |
| 344 | test_data = { |
| 345 | "modulus": n, |
| 346 | "p": p, |
| 347 | "q": q, |
Paul Kehrer | e66f69a | 2014-03-18 07:57:26 -0400 | [diff] [blame] | 348 | "algorithm": value |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 349 | } |
Paul Kehrer | afc2518 | 2014-03-18 07:51:56 -0400 | [diff] [blame] | 350 | if salt_length is not None: |
| 351 | test_data["salt_length"] = salt_length |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 352 | data.append(test_data) |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 353 | elif name == "e" and p is not None: |
| 354 | test_data["public_exponent"] = int(value, 16) |
| 355 | elif name == "d": |
| 356 | test_data["private_exponent"] = int(value, 16) |
| 357 | elif name == "Result": |
| 358 | test_data["fail"] = value.startswith("F") |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 359 | # For all other tokens we simply want the name, value stored in |
| 360 | # the dictionary |
| 361 | else: |
| 362 | test_data[name.lower()] = value.encode("ascii") |
| 363 | |
| 364 | return data |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 365 | |
| 366 | |
| 367 | def load_fips_dsa_key_pair_vectors(vector_data): |
| 368 | """ |
| 369 | Loads data out of the FIPS DSA KeyPair vector files. |
| 370 | """ |
| 371 | vectors = [] |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 372 | # When reading_key_data is set to True it tells the loader to continue |
| 373 | # constructing dictionaries. We set reading_key_data to False during the |
| 374 | # blocks of the vectors of N=224 because we don't support it. |
| 375 | reading_key_data = True |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 376 | for line in vector_data: |
| 377 | line = line.strip() |
| 378 | |
| 379 | if not line or line.startswith("#"): |
| 380 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 381 | elif line.startswith("[mod = L=1024"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 382 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 383 | elif line.startswith("[mod = L=2048, N=224"): |
| 384 | reading_key_data = False |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 385 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 386 | elif line.startswith("[mod = L=2048, N=256"): |
| 387 | reading_key_data = True |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 388 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 389 | elif line.startswith("[mod = L=3072"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 390 | continue |
| 391 | |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 392 | if not reading_key_data: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 393 | continue |
| 394 | |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 395 | elif reading_key_data: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 396 | if line.startswith("P"): |
| 397 | vectors.append({'p': int(line.split("=")[1], 16)}) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 398 | elif line.startswith("Q"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 399 | vectors[-1]['q'] = int(line.split("=")[1], 16) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 400 | elif line.startswith("G"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 401 | vectors[-1]['g'] = int(line.split("=")[1], 16) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 402 | elif line.startswith("X") and 'x' not in vectors[-1]: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 403 | vectors[-1]['x'] = int(line.split("=")[1], 16) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 404 | elif line.startswith("X") and 'x' in vectors[-1]: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 405 | vectors.append({'p': vectors[-1]['p'], |
| 406 | 'q': vectors[-1]['q'], |
| 407 | 'g': vectors[-1]['g'], |
| 408 | 'x': int(line.split("=")[1], 16) |
| 409 | }) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 410 | elif line.startswith("Y"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 411 | vectors[-1]['y'] = int(line.split("=")[1], 16) |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 412 | |
| 413 | return vectors |