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