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 Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 16 | import binascii |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 17 | import collections |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 18 | import re |
Alex Stapleton | 707b008 | 2014-04-20 22:24:41 +0100 | [diff] [blame] | 19 | from contextlib import contextmanager |
Paul Kehrer | 90450f3 | 2014-03-19 12:37:17 -0400 | [diff] [blame] | 20 | |
Paul Kehrer | a409ae1 | 2014-04-30 13:28:28 -0500 | [diff] [blame] | 21 | from pyasn1.codec.der import encoder |
Paul Kehrer | d3e3df9 | 2014-04-30 11:13:17 -0500 | [diff] [blame] | 22 | from pyasn1.type import namedtype, univ |
| 23 | |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 24 | import pytest |
| 25 | |
Paul Kehrer | afc1ccd | 2014-03-19 11:49:32 -0400 | [diff] [blame] | 26 | import six |
Alex Gaynor | 2b3f942 | 2013-12-24 21:55:24 -0800 | [diff] [blame] | 27 | |
Alex Gaynor | 7a489db | 2014-03-22 15:09:34 -0700 | [diff] [blame] | 28 | from cryptography.exceptions import UnsupportedAlgorithm |
Alex Gaynor | 07c4dcc | 2014-04-05 11:22:07 -0700 | [diff] [blame] | 29 | |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 30 | import cryptography_vectors |
Matthew Iversen | 68e77c7 | 2014-03-13 08:54:43 +1100 | [diff] [blame] | 31 | |
Alex Gaynor | 2b3f942 | 2013-12-24 21:55:24 -0800 | [diff] [blame] | 32 | |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 33 | HashVector = collections.namedtuple("HashVector", ["message", "digest"]) |
| 34 | KeyedHashVector = collections.namedtuple( |
| 35 | "KeyedHashVector", ["message", "digest", "key"] |
| 36 | ) |
| 37 | |
| 38 | |
Paul Kehrer | c421e63 | 2014-01-18 09:22:21 -0600 | [diff] [blame] | 39 | def select_backends(names, backend_list): |
| 40 | if names is None: |
| 41 | return backend_list |
| 42 | split_names = [x.strip() for x in names.split(',')] |
| 43 | # this must be duplicated and then removed to preserve the metadata |
| 44 | # 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] | 45 | selected_backends = [] |
| 46 | for backend in backend_list: |
| 47 | if backend.name in split_names: |
| 48 | selected_backends.append(backend) |
Paul Kehrer | c421e63 | 2014-01-18 09:22:21 -0600 | [diff] [blame] | 49 | |
Paul Kehrer | aed9e17 | 2014-01-19 12:09:27 -0600 | [diff] [blame] | 50 | if len(selected_backends) > 0: |
| 51 | return selected_backends |
Paul Kehrer | c421e63 | 2014-01-18 09:22:21 -0600 | [diff] [blame] | 52 | else: |
| 53 | raise ValueError( |
| 54 | "No backend selected. Tried to select: {0}".format(split_names) |
| 55 | ) |
Paul Kehrer | 34c075e | 2014-01-13 21:52:08 -0500 | [diff] [blame] | 56 | |
| 57 | |
Paul Kehrer | 60fc8da | 2013-12-26 20:19:34 -0600 | [diff] [blame] | 58 | def check_backend_support(item): |
Paul Kehrer | 5a8fdf8 | 2013-12-26 20:13:45 -0600 | [diff] [blame] | 59 | supported = item.keywords.get("supported") |
| 60 | if supported and "backend" in item.funcargs: |
| 61 | if not supported.kwargs["only_if"](item.funcargs["backend"]): |
Paul Kehrer | f03334e | 2014-01-02 23:16:14 -0600 | [diff] [blame] | 62 | pytest.skip("{0} ({1})".format( |
| 63 | supported.kwargs["skip_message"], item.funcargs["backend"] |
| 64 | )) |
Paul Kehrer | 5a8fdf8 | 2013-12-26 20:13:45 -0600 | [diff] [blame] | 65 | elif supported: |
Paul Kehrer | ec49550 | 2013-12-27 15:51:40 -0600 | [diff] [blame] | 66 | raise ValueError("This mark is only available on methods that take a " |
| 67 | "backend") |
Paul Kehrer | 5a8fdf8 | 2013-12-26 20:13:45 -0600 | [diff] [blame] | 68 | |
| 69 | |
Alex Gaynor | 7a489db | 2014-03-22 15:09:34 -0700 | [diff] [blame] | 70 | @contextmanager |
Alex Stapleton | 5e4c8c3 | 2014-03-27 16:38:00 +0000 | [diff] [blame] | 71 | def raises_unsupported_algorithm(reason): |
Alex Gaynor | 7a489db | 2014-03-22 15:09:34 -0700 | [diff] [blame] | 72 | with pytest.raises(UnsupportedAlgorithm) as exc_info: |
Alex Stapleton | 112963e | 2014-03-26 17:39:29 +0000 | [diff] [blame] | 73 | yield exc_info |
Alex Stapleton | 5e4c8c3 | 2014-03-27 16:38:00 +0000 | [diff] [blame] | 74 | |
Alex Stapleton | 85a791f | 2014-03-27 16:55:41 +0000 | [diff] [blame] | 75 | assert exc_info.value._reason is reason |
Alex Gaynor | 7a489db | 2014-03-22 15:09:34 -0700 | [diff] [blame] | 76 | |
| 77 | |
Paul Kehrer | d0dc6a3 | 2014-04-30 12:12:50 -0500 | [diff] [blame] | 78 | class _DSSSigValue(univ.Sequence): |
Paul Kehrer | d3e3df9 | 2014-04-30 11:13:17 -0500 | [diff] [blame] | 79 | componentType = namedtype.NamedTypes( |
| 80 | namedtype.NamedType('r', univ.Integer()), |
| 81 | namedtype.NamedType('s', univ.Integer()) |
| 82 | ) |
Paul Kehrer | 3fc686e | 2014-04-30 09:07:27 -0500 | [diff] [blame] | 83 | |
| 84 | |
Paul Kehrer | 14951f4 | 2014-04-30 12:14:48 -0500 | [diff] [blame] | 85 | def der_encode_dsa_signature(r, s): |
Paul Kehrer | d0dc6a3 | 2014-04-30 12:12:50 -0500 | [diff] [blame] | 86 | sig = _DSSSigValue() |
Paul Kehrer | d3e3df9 | 2014-04-30 11:13:17 -0500 | [diff] [blame] | 87 | sig.setComponentByName('r', r) |
| 88 | sig.setComponentByName('s', s) |
| 89 | return encoder.encode(sig) |
Paul Kehrer | 3fc686e | 2014-04-30 09:07:27 -0500 | [diff] [blame] | 90 | |
| 91 | |
Paul Kehrer | f7f6a9f | 2013-11-11 20:43:52 -0600 | [diff] [blame] | 92 | def load_vectors_from_file(filename, loader): |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 93 | with cryptography_vectors.open_vector_file(filename) as vector_file: |
| 94 | return loader(vector_file) |
Paul Kehrer | f7f6a9f | 2013-11-11 20:43:52 -0600 | [diff] [blame] | 95 | |
| 96 | |
Alex Gaynor | d3ce703 | 2013-11-11 14:46:20 -0800 | [diff] [blame] | 97 | def load_nist_vectors(vector_data): |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 98 | test_data = None |
| 99 | data = [] |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 100 | |
| 101 | for line in vector_data: |
| 102 | line = line.strip() |
| 103 | |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 104 | # Blank lines, comments, and section headers are ignored |
| 105 | if not line or line.startswith("#") or (line.startswith("[") |
| 106 | and line.endswith("]")): |
Alex Gaynor | 521c42d | 2013-11-11 14:25:59 -0800 | [diff] [blame] | 107 | continue |
| 108 | |
Paul Kehrer | a43b669 | 2013-11-12 15:35:49 -0600 | [diff] [blame] | 109 | if line.strip() == "FAIL": |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 110 | test_data["fail"] = True |
Paul Kehrer | a43b669 | 2013-11-12 15:35:49 -0600 | [diff] [blame] | 111 | continue |
| 112 | |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 113 | # Build our data using a simple Key = Value format |
Paul Kehrer | a43b669 | 2013-11-12 15:35:49 -0600 | [diff] [blame] | 114 | name, value = [c.strip() for c in line.split("=")] |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 115 | |
Paul Kehrer | 1050ddf | 2014-01-27 21:04:03 -0600 | [diff] [blame] | 116 | # Some tests (PBKDF2) contain \0, which should be interpreted as a |
| 117 | # null character rather than literal. |
| 118 | value = value.replace("\\0", "\0") |
| 119 | |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 120 | # COUNT is a special token that indicates a new block of data |
| 121 | if name.upper() == "COUNT": |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 122 | test_data = {} |
| 123 | data.append(test_data) |
| 124 | continue |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 125 | # For all other tokens we simply want the name, value stored in |
| 126 | # the dictionary |
| 127 | else: |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 128 | test_data[name.lower()] = value.encode("ascii") |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 129 | |
Paul Kehrer | 749ac5b | 2013-11-18 18:12:41 -0600 | [diff] [blame] | 130 | return data |
Donald Stufft | 9e1a48b | 2013-08-09 00:32:30 -0400 | [diff] [blame] | 131 | |
| 132 | |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 133 | def load_cryptrec_vectors(vector_data): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 134 | cryptrec_list = [] |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 135 | |
| 136 | for line in vector_data: |
| 137 | line = line.strip() |
| 138 | |
| 139 | # Blank lines and comments are ignored |
| 140 | if not line or line.startswith("#"): |
| 141 | continue |
| 142 | |
| 143 | if line.startswith("K"): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 144 | key = line.split(" : ")[1].replace(" ", "").encode("ascii") |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 145 | elif line.startswith("P"): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 146 | pt = line.split(" : ")[1].replace(" ", "").encode("ascii") |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 147 | elif line.startswith("C"): |
Paul Kehrer | e580598 | 2013-09-27 11:26:01 -0500 | [diff] [blame] | 148 | ct = line.split(" : ")[1].replace(" ", "").encode("ascii") |
| 149 | # after a C is found the K+P+C tuple is complete |
| 150 | # there are many P+C pairs for each K |
Alex Gaynor | 1fe70b1 | 2013-10-16 11:59:17 -0700 | [diff] [blame] | 151 | cryptrec_list.append({ |
| 152 | "key": key, |
| 153 | "plaintext": pt, |
| 154 | "ciphertext": ct |
| 155 | }) |
Donald Stufft | 3359d7e | 2013-10-19 19:33:06 -0400 | [diff] [blame] | 156 | else: |
| 157 | raise ValueError("Invalid line in file '{}'".format(line)) |
Paul Kehrer | 1951bf6 | 2013-09-15 12:05:43 -0500 | [diff] [blame] | 158 | return cryptrec_list |
| 159 | |
| 160 | |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 161 | def load_hash_vectors(vector_data): |
| 162 | vectors = [] |
Paul Kehrer | 1bb8b71 | 2013-10-27 17:00:14 -0500 | [diff] [blame] | 163 | key = None |
| 164 | msg = None |
| 165 | md = None |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 166 | |
| 167 | for line in vector_data: |
| 168 | line = line.strip() |
| 169 | |
Paul Kehrer | 87cd0db | 2013-10-18 18:01:26 -0500 | [diff] [blame] | 170 | if not line or line.startswith("#") or line.startswith("["): |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 171 | continue |
| 172 | |
| 173 | if line.startswith("Len"): |
| 174 | length = int(line.split(" = ")[1]) |
Paul Kehrer | 0317b04 | 2013-10-28 17:34:27 -0500 | [diff] [blame] | 175 | elif line.startswith("Key"): |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 176 | # HMAC vectors contain a key attribute. Hash vectors do not. |
Paul Kehrer | 0317b04 | 2013-10-28 17:34:27 -0500 | [diff] [blame] | 177 | key = line.split(" = ")[1].encode("ascii") |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 178 | elif line.startswith("Msg"): |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 179 | # In the NIST vectors they have chosen to represent an empty |
| 180 | # string as hex 00, which is of course not actually an empty |
| 181 | # string. So we parse the provided length and catch this edge case. |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 182 | msg = line.split(" = ")[1].encode("ascii") if length > 0 else b"" |
| 183 | elif line.startswith("MD"): |
| 184 | md = line.split(" = ")[1] |
Paul Kehrer | 0317b04 | 2013-10-28 17:34:27 -0500 | [diff] [blame] | 185 | # after MD is found the Msg+MD (+ potential key) tuple is complete |
Paul Kehrer | 00dd509 | 2013-10-23 09:41:49 -0500 | [diff] [blame] | 186 | if key is not None: |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 187 | vectors.append(KeyedHashVector(msg, md, key)) |
Paul Kehrer | 1bb8b71 | 2013-10-27 17:00:14 -0500 | [diff] [blame] | 188 | key = None |
| 189 | msg = None |
| 190 | md = None |
Paul Kehrer | 00dd509 | 2013-10-23 09:41:49 -0500 | [diff] [blame] | 191 | else: |
Alex Gaynor | 36e651c | 2014-01-27 10:08:35 -0800 | [diff] [blame] | 192 | vectors.append(HashVector(msg, md)) |
Paul Kehrer | 1bb8b71 | 2013-10-27 17:00:14 -0500 | [diff] [blame] | 193 | msg = None |
| 194 | md = None |
Paul Kehrer | 69e0652 | 2013-10-18 17:28:39 -0500 | [diff] [blame] | 195 | else: |
| 196 | raise ValueError("Unknown line in hash vector") |
| 197 | return vectors |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 198 | |
| 199 | |
| 200 | def load_pkcs1_vectors(vector_data): |
| 201 | """ |
| 202 | Loads data out of RSA PKCS #1 vector files. |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 203 | """ |
| 204 | private_key_vector = None |
| 205 | public_key_vector = None |
| 206 | attr = None |
| 207 | key = None |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 208 | example_vector = None |
| 209 | examples = [] |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 210 | vectors = [] |
| 211 | for line in vector_data: |
Paul Kehrer | 7774a03 | 2014-02-17 22:56:55 -0600 | [diff] [blame] | 212 | if ( |
| 213 | line.startswith("# PSS Example") or |
Paul Kehrer | 3fe9150 | 2014-03-29 12:08:39 -0500 | [diff] [blame] | 214 | line.startswith("# OAEP Example") or |
| 215 | line.startswith("# PKCS#1 v1.5") |
Paul Kehrer | 7774a03 | 2014-02-17 22:56:55 -0600 | [diff] [blame] | 216 | ): |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 217 | if example_vector: |
| 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 | |
| 223 | attr = None |
| 224 | example_vector = collections.defaultdict(list) |
| 225 | |
Paul Kehrer | 3fe9150 | 2014-03-29 12:08:39 -0500 | [diff] [blame] | 226 | if line.startswith("# Message"): |
Paul Kehrer | 7d9c306 | 2014-02-18 08:27:39 -0600 | [diff] [blame] | 227 | attr = "message" |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 228 | continue |
| 229 | elif line.startswith("# Salt"): |
| 230 | attr = "salt" |
| 231 | continue |
Paul Kehrer | 3fe9150 | 2014-03-29 12:08:39 -0500 | [diff] [blame] | 232 | elif line.startswith("# Seed"): |
| 233 | attr = "seed" |
| 234 | continue |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 235 | elif line.startswith("# Signature"): |
| 236 | attr = "signature" |
| 237 | continue |
Paul Kehrer | 3fe9150 | 2014-03-29 12:08:39 -0500 | [diff] [blame] | 238 | elif line.startswith("# Encryption"): |
| 239 | attr = "encryption" |
| 240 | continue |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 241 | elif ( |
| 242 | example_vector and |
| 243 | line.startswith("# =============================================") |
| 244 | ): |
| 245 | for key, value in six.iteritems(example_vector): |
Paul Kehrer | 2681180 | 2014-02-19 16:32:11 -0600 | [diff] [blame] | 246 | hex_str = "".join(value).replace(" ", "").encode("ascii") |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 247 | example_vector[key] = hex_str |
| 248 | examples.append(example_vector) |
| 249 | example_vector = None |
| 250 | attr = None |
| 251 | elif example_vector and line.startswith("#"): |
| 252 | continue |
| 253 | else: |
| 254 | if attr is not None and example_vector is not None: |
| 255 | example_vector[attr].append(line.strip()) |
| 256 | continue |
| 257 | |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 258 | if ( |
| 259 | line.startswith("# Example") or |
| 260 | line.startswith("# =============================================") |
| 261 | ): |
| 262 | if key: |
| 263 | assert private_key_vector |
| 264 | assert public_key_vector |
| 265 | |
| 266 | for key, value in six.iteritems(public_key_vector): |
| 267 | hex_str = "".join(value).replace(" ", "") |
| 268 | public_key_vector[key] = int(hex_str, 16) |
| 269 | |
| 270 | for key, value in six.iteritems(private_key_vector): |
| 271 | hex_str = "".join(value).replace(" ", "") |
| 272 | private_key_vector[key] = int(hex_str, 16) |
| 273 | |
Paul Kehrer | efca280 | 2014-02-17 20:55:13 -0600 | [diff] [blame] | 274 | private_key_vector["examples"] = examples |
| 275 | examples = [] |
| 276 | |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 277 | assert ( |
| 278 | private_key_vector['public_exponent'] == |
| 279 | public_key_vector['public_exponent'] |
| 280 | ) |
| 281 | |
| 282 | assert ( |
| 283 | private_key_vector['modulus'] == |
| 284 | public_key_vector['modulus'] |
| 285 | ) |
| 286 | |
| 287 | vectors.append( |
| 288 | (private_key_vector, public_key_vector) |
| 289 | ) |
| 290 | |
| 291 | public_key_vector = collections.defaultdict(list) |
| 292 | private_key_vector = collections.defaultdict(list) |
| 293 | key = None |
| 294 | attr = None |
| 295 | |
| 296 | if private_key_vector is None or public_key_vector is None: |
| 297 | continue |
| 298 | |
| 299 | if line.startswith("# Private key"): |
| 300 | key = private_key_vector |
| 301 | elif line.startswith("# Public key"): |
| 302 | key = public_key_vector |
| 303 | elif line.startswith("# Modulus:"): |
| 304 | attr = "modulus" |
| 305 | elif line.startswith("# Public exponent:"): |
| 306 | attr = "public_exponent" |
| 307 | elif line.startswith("# Exponent:"): |
| 308 | if key is public_key_vector: |
| 309 | attr = "public_exponent" |
| 310 | else: |
| 311 | assert key is private_key_vector |
| 312 | attr = "private_exponent" |
| 313 | elif line.startswith("# Prime 1:"): |
| 314 | attr = "p" |
| 315 | elif line.startswith("# Prime 2:"): |
| 316 | attr = "q" |
Paul Kehrer | 09328bb | 2014-02-12 23:57:27 -0600 | [diff] [blame] | 317 | elif line.startswith("# Prime exponent 1:"): |
| 318 | attr = "dmp1" |
| 319 | elif line.startswith("# Prime exponent 2:"): |
| 320 | attr = "dmq1" |
| 321 | elif line.startswith("# Coefficient:"): |
| 322 | attr = "iqmp" |
Alex Stapleton | 58f27ac | 2014-02-02 19:30:03 +0000 | [diff] [blame] | 323 | elif line.startswith("#"): |
| 324 | attr = None |
| 325 | else: |
| 326 | if key is not None and attr is not None: |
| 327 | key[attr].append(line.strip()) |
| 328 | return vectors |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 329 | |
| 330 | |
| 331 | def load_rsa_nist_vectors(vector_data): |
| 332 | test_data = None |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 333 | p = None |
Paul Kehrer | afc2518 | 2014-03-18 07:51:56 -0400 | [diff] [blame] | 334 | salt_length = None |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 335 | data = [] |
| 336 | |
| 337 | for line in vector_data: |
| 338 | line = line.strip() |
| 339 | |
| 340 | # Blank lines and section headers are ignored |
| 341 | if not line or line.startswith("["): |
| 342 | continue |
| 343 | |
| 344 | if line.startswith("# Salt len:"): |
| 345 | salt_length = int(line.split(":")[1].strip()) |
| 346 | continue |
| 347 | elif line.startswith("#"): |
| 348 | continue |
| 349 | |
| 350 | # Build our data using a simple Key = Value format |
| 351 | name, value = [c.strip() for c in line.split("=")] |
| 352 | |
| 353 | if name == "n": |
| 354 | n = int(value, 16) |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 355 | elif name == "e" and p is None: |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 356 | e = int(value, 16) |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 357 | elif name == "p": |
| 358 | p = int(value, 16) |
| 359 | elif name == "q": |
| 360 | q = int(value, 16) |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 361 | elif name == "SHAAlg": |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 362 | if p is None: |
| 363 | test_data = { |
| 364 | "modulus": n, |
| 365 | "public_exponent": e, |
| 366 | "salt_length": salt_length, |
Paul Kehrer | e66f69a | 2014-03-18 07:57:26 -0400 | [diff] [blame] | 367 | "algorithm": value, |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 368 | "fail": False |
| 369 | } |
| 370 | else: |
| 371 | test_data = { |
| 372 | "modulus": n, |
| 373 | "p": p, |
| 374 | "q": q, |
Paul Kehrer | e66f69a | 2014-03-18 07:57:26 -0400 | [diff] [blame] | 375 | "algorithm": value |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 376 | } |
Paul Kehrer | afc2518 | 2014-03-18 07:51:56 -0400 | [diff] [blame] | 377 | if salt_length is not None: |
| 378 | test_data["salt_length"] = salt_length |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 379 | data.append(test_data) |
Paul Kehrer | 62707f1 | 2014-03-18 07:19:14 -0400 | [diff] [blame] | 380 | elif name == "e" and p is not None: |
| 381 | test_data["public_exponent"] = int(value, 16) |
| 382 | elif name == "d": |
| 383 | test_data["private_exponent"] = int(value, 16) |
| 384 | elif name == "Result": |
| 385 | test_data["fail"] = value.startswith("F") |
Paul Kehrer | 2f2a206 | 2014-03-10 23:30:28 -0400 | [diff] [blame] | 386 | # For all other tokens we simply want the name, value stored in |
| 387 | # the dictionary |
| 388 | else: |
| 389 | test_data[name.lower()] = value.encode("ascii") |
| 390 | |
| 391 | return data |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 392 | |
| 393 | |
| 394 | def load_fips_dsa_key_pair_vectors(vector_data): |
| 395 | """ |
| 396 | Loads data out of the FIPS DSA KeyPair vector files. |
| 397 | """ |
| 398 | vectors = [] |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 399 | # When reading_key_data is set to True it tells the loader to continue |
| 400 | # constructing dictionaries. We set reading_key_data to False during the |
| 401 | # blocks of the vectors of N=224 because we don't support it. |
| 402 | reading_key_data = True |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 403 | for line in vector_data: |
| 404 | line = line.strip() |
| 405 | |
| 406 | if not line or line.startswith("#"): |
| 407 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 408 | elif line.startswith("[mod = L=1024"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 409 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 410 | elif line.startswith("[mod = L=2048, N=224"): |
| 411 | reading_key_data = False |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 412 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 413 | elif line.startswith("[mod = L=2048, N=256"): |
| 414 | reading_key_data = True |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 415 | continue |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 416 | elif line.startswith("[mod = L=3072"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 417 | continue |
| 418 | |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 419 | if not reading_key_data: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 420 | continue |
| 421 | |
Mohammed Attia | 49b9259 | 2014-03-12 20:07:05 +0200 | [diff] [blame] | 422 | elif reading_key_data: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 423 | if line.startswith("P"): |
| 424 | vectors.append({'p': int(line.split("=")[1], 16)}) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 425 | elif line.startswith("Q"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 426 | vectors[-1]['q'] = int(line.split("=")[1], 16) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 427 | elif line.startswith("G"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 428 | vectors[-1]['g'] = int(line.split("=")[1], 16) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 429 | elif line.startswith("X") and 'x' not in vectors[-1]: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 430 | vectors[-1]['x'] = int(line.split("=")[1], 16) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 431 | elif line.startswith("X") and 'x' in vectors[-1]: |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 432 | vectors.append({'p': vectors[-1]['p'], |
| 433 | 'q': vectors[-1]['q'], |
| 434 | 'g': vectors[-1]['g'], |
| 435 | 'x': int(line.split("=")[1], 16) |
| 436 | }) |
Mohammed Attia | 22ccb87 | 2014-03-12 18:27:59 +0200 | [diff] [blame] | 437 | elif line.startswith("Y"): |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 438 | vectors[-1]['y'] = int(line.split("=")[1], 16) |
Mohammed Attia | 987cc70 | 2014-03-12 16:07:21 +0200 | [diff] [blame] | 439 | |
| 440 | return vectors |
Alex Stapleton | cf04860 | 2014-04-12 12:48:59 +0100 | [diff] [blame] | 441 | |
| 442 | |
Mohammed Attia | 3c9e158 | 2014-04-22 14:24:44 +0200 | [diff] [blame] | 443 | def load_fips_dsa_sig_vectors(vector_data): |
Mohammed Attia | 0fb5d85 | 2014-04-21 10:31:15 +0200 | [diff] [blame] | 444 | """ |
| 445 | Loads data out of the FIPS DSA SigVer vector files. |
| 446 | """ |
| 447 | vectors = [] |
| 448 | sha_regex = re.compile( |
| 449 | r"\[mod = L=...., N=..., SHA-(?P<sha>1|224|256|384|512)\]" |
| 450 | ) |
| 451 | # When reading_key_data is set to True it tells the loader to continue |
| 452 | # constructing dictionaries. We set reading_key_data to False during the |
| 453 | # blocks of the vectors of N=224 because we don't support it. |
| 454 | reading_key_data = True |
Mohammed Attia | 3c9e158 | 2014-04-22 14:24:44 +0200 | [diff] [blame] | 455 | |
Mohammed Attia | 0fb5d85 | 2014-04-21 10:31:15 +0200 | [diff] [blame] | 456 | for line in vector_data: |
| 457 | line = line.strip() |
| 458 | |
| 459 | if not line or line.startswith("#"): |
| 460 | continue |
| 461 | |
| 462 | sha_match = sha_regex.match(line) |
| 463 | if sha_match: |
| 464 | digest_algorithm = "SHA-{0}".format(sha_match.group("sha")) |
| 465 | |
Paul Kehrer | 7ef2f8f | 2014-04-22 08:37:58 -0500 | [diff] [blame] | 466 | if line.startswith("[mod = L=2048, N=224"): |
Mohammed Attia | 0fb5d85 | 2014-04-21 10:31:15 +0200 | [diff] [blame] | 467 | reading_key_data = False |
| 468 | continue |
Paul Kehrer | 7ef2f8f | 2014-04-22 08:37:58 -0500 | [diff] [blame] | 469 | elif line.startswith("[mod = L=2048, N=256"): |
Mohammed Attia | 0fb5d85 | 2014-04-21 10:31:15 +0200 | [diff] [blame] | 470 | reading_key_data = True |
| 471 | continue |
| 472 | |
| 473 | if not reading_key_data or line.startswith("[mod"): |
| 474 | continue |
| 475 | |
| 476 | name, value = [c.strip() for c in line.split("=")] |
| 477 | |
| 478 | if name == "P": |
| 479 | vectors.append({'p': int(value, 16), |
| 480 | 'digest_algorithm': digest_algorithm}) |
| 481 | elif name == "Q": |
| 482 | vectors[-1]['q'] = int(value, 16) |
| 483 | elif name == "G": |
| 484 | vectors[-1]['g'] = int(value, 16) |
| 485 | elif name == "Msg" and 'msg' not in vectors[-1]: |
| 486 | hexmsg = value.strip().encode("ascii") |
| 487 | vectors[-1]['msg'] = binascii.unhexlify(hexmsg) |
| 488 | elif name == "Msg" and 'msg' in vectors[-1]: |
| 489 | hexmsg = value.strip().encode("ascii") |
| 490 | vectors.append({'p': vectors[-1]['p'], |
| 491 | 'q': vectors[-1]['q'], |
| 492 | 'g': vectors[-1]['g'], |
| 493 | 'digest_algorithm': |
| 494 | vectors[-1]['digest_algorithm'], |
| 495 | 'msg': binascii.unhexlify(hexmsg)}) |
| 496 | elif name == "X": |
| 497 | vectors[-1]['x'] = int(value, 16) |
| 498 | elif name == "Y": |
| 499 | vectors[-1]['y'] = int(value, 16) |
| 500 | elif name == "R": |
| 501 | vectors[-1]['r'] = int(value, 16) |
| 502 | elif name == "S": |
| 503 | vectors[-1]['s'] = int(value, 16) |
| 504 | elif name == "Result": |
| 505 | vectors[-1]['result'] = value.split("(")[0].strip() |
| 506 | |
| 507 | return vectors |
| 508 | |
| 509 | |
Alex Stapleton | 44fe82d | 2014-04-19 09:44:26 +0100 | [diff] [blame] | 510 | # http://tools.ietf.org/html/rfc4492#appendix-A |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 511 | _ECDSA_CURVE_NAMES = { |
| 512 | "P-192": "secp192r1", |
| 513 | "P-224": "secp224r1", |
Alex Stapleton | 39e300f | 2014-04-18 22:44:02 +0100 | [diff] [blame] | 514 | "P-256": "secp256r1", |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 515 | "P-384": "secp384r1", |
| 516 | "P-521": "secp521r1", |
Alex Stapleton | 39e300f | 2014-04-18 22:44:02 +0100 | [diff] [blame] | 517 | |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 518 | "K-163": "sect163k1", |
| 519 | "K-233": "sect233k1", |
Alex Stapleton | 39e300f | 2014-04-18 22:44:02 +0100 | [diff] [blame] | 520 | "K-283": "sect283k1", |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 521 | "K-409": "sect409k1", |
| 522 | "K-571": "sect571k1", |
Alex Stapleton | 39e300f | 2014-04-18 22:44:02 +0100 | [diff] [blame] | 523 | |
Alex Stapleton | 44fe82d | 2014-04-19 09:44:26 +0100 | [diff] [blame] | 524 | "B-163": "sect163r2", |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 525 | "B-233": "sect233r1", |
| 526 | "B-283": "sect283r1", |
| 527 | "B-409": "sect409r1", |
| 528 | "B-571": "sect571r1", |
| 529 | } |
| 530 | |
| 531 | |
Alex Stapleton | cf04860 | 2014-04-12 12:48:59 +0100 | [diff] [blame] | 532 | def load_fips_ecdsa_key_pair_vectors(vector_data): |
| 533 | """ |
| 534 | Loads data out of the FIPS ECDSA KeyPair vector files. |
| 535 | """ |
| 536 | vectors = [] |
| 537 | key_data = None |
Alex Stapleton | cf04860 | 2014-04-12 12:48:59 +0100 | [diff] [blame] | 538 | for line in vector_data: |
| 539 | line = line.strip() |
| 540 | |
| 541 | if not line or line.startswith("#"): |
| 542 | continue |
| 543 | |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 544 | if line[1:-1] in _ECDSA_CURVE_NAMES: |
| 545 | curve_name = _ECDSA_CURVE_NAMES[line[1:-1]] |
Alex Stapleton | cf04860 | 2014-04-12 12:48:59 +0100 | [diff] [blame] | 546 | |
| 547 | elif line.startswith("d = "): |
| 548 | if key_data is not None: |
| 549 | vectors.append(key_data) |
| 550 | |
| 551 | key_data = { |
| 552 | "curve": curve_name, |
| 553 | "d": int(line.split("=")[1], 16) |
| 554 | } |
| 555 | |
| 556 | elif key_data is not None: |
| 557 | if line.startswith("Qx = "): |
| 558 | key_data["x"] = int(line.split("=")[1], 16) |
| 559 | elif line.startswith("Qy = "): |
| 560 | key_data["y"] = int(line.split("=")[1], 16) |
| 561 | |
| 562 | if key_data is not None: |
| 563 | vectors.append(key_data) |
| 564 | |
| 565 | return vectors |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 566 | |
| 567 | |
| 568 | def load_fips_ecdsa_signing_vectors(vector_data): |
| 569 | """ |
| 570 | Loads data out of the FIPS ECDSA SigGen vector files. |
| 571 | """ |
| 572 | vectors = [] |
| 573 | |
| 574 | curve_rx = re.compile( |
| 575 | r"\[(?P<curve>[PKB]-[0-9]{3}),SHA-(?P<sha>1|224|256|384|512)\]" |
| 576 | ) |
| 577 | |
| 578 | data = None |
| 579 | for line in vector_data: |
| 580 | line = line.strip() |
| 581 | |
| 582 | if not line or line.startswith("#"): |
| 583 | continue |
| 584 | |
| 585 | curve_match = curve_rx.match(line) |
| 586 | if curve_match: |
| 587 | curve_name = _ECDSA_CURVE_NAMES[curve_match.group("curve")] |
| 588 | digest_name = "SHA-{0}".format(curve_match.group("sha")) |
| 589 | |
| 590 | elif line.startswith("Msg = "): |
| 591 | if data is not None: |
| 592 | vectors.append(data) |
| 593 | |
| 594 | hexmsg = line.split("=")[1].strip().encode("ascii") |
| 595 | |
| 596 | data = { |
| 597 | "curve": curve_name, |
| 598 | "digest_algorithm": digest_name, |
| 599 | "message": binascii.unhexlify(hexmsg) |
| 600 | } |
| 601 | |
| 602 | elif data is not None: |
| 603 | if line.startswith("Qx = "): |
| 604 | data["x"] = int(line.split("=")[1], 16) |
| 605 | elif line.startswith("Qy = "): |
| 606 | data["y"] = int(line.split("=")[1], 16) |
| 607 | elif line.startswith("R = "): |
| 608 | data["r"] = int(line.split("=")[1], 16) |
| 609 | elif line.startswith("S = "): |
| 610 | data["s"] = int(line.split("=")[1], 16) |
| 611 | elif line.startswith("d = "): |
| 612 | data["d"] = int(line.split("=")[1], 16) |
Alex Stapleton | 6f72949 | 2014-04-19 09:01:25 +0100 | [diff] [blame] | 613 | elif line.startswith("Result = "): |
| 614 | data["fail"] = line.split("=")[1].strip()[0] == "F" |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 615 | |
| 616 | if data is not None: |
| 617 | vectors.append(data) |
Alex Stapleton | c387cf7 | 2014-04-13 13:58:02 +0100 | [diff] [blame] | 618 | return vectors |
Alex Stapleton | 839c09d | 2014-08-10 12:18:02 +0100 | [diff] [blame] | 619 | |
| 620 | |
| 621 | def load_kasvs_dh_vectors(vector_data): |
| 622 | """ |
| 623 | Loads data out of the KASVS key exchange vector data |
| 624 | """ |
| 625 | |
| 626 | result_rx = re.compile(r"([FP]) \(([0-9]+) -") |
| 627 | |
| 628 | vectors = [] |
| 629 | data = { |
| 630 | "fail_z": False, |
| 631 | "fail_agree": False |
| 632 | } |
| 633 | |
| 634 | for line in vector_data: |
| 635 | line = line.strip() |
| 636 | |
| 637 | if not line or line.startswith("#"): |
| 638 | continue |
| 639 | |
| 640 | if line.startswith("P = "): |
| 641 | data["p"] = int(line.split("=")[1], 16) |
| 642 | elif line.startswith("Q = "): |
| 643 | data["q"] = int(line.split("=")[1], 16) |
| 644 | elif line.startswith("G = "): |
| 645 | data["g"] = int(line.split("=")[1], 16) |
| 646 | elif line.startswith("Z = "): |
| 647 | z_hex = line.split("=")[1].strip().encode("ascii") |
| 648 | data["z"] = binascii.unhexlify(z_hex) |
| 649 | elif line.startswith("XstatCAVS = "): |
| 650 | data["x1"] = int(line.split("=")[1], 16) |
| 651 | elif line.startswith("YstatCAVS = "): |
| 652 | data["y1"] = int(line.split("=")[1], 16) |
| 653 | elif line.startswith("XstatIUT = "): |
| 654 | data["x2"] = int(line.split("=")[1], 16) |
| 655 | elif line.startswith("YstatIUT = "): |
| 656 | data["y2"] = int(line.split("=")[1], 16) |
| 657 | elif line.startswith("Result = "): |
| 658 | result_str = line.split("=")[1].strip() |
| 659 | match = result_rx.match(result_str) |
| 660 | |
| 661 | if match.group(1) == "F": |
| 662 | if int(match.group(2)) in (5, 10): |
| 663 | data["fail_z"] = True |
| 664 | else: |
| 665 | data["fail_agree"] = True |
| 666 | |
| 667 | vectors.append(data) |
| 668 | |
| 669 | data = { |
| 670 | "p": data["p"], |
| 671 | "q": data["q"], |
| 672 | "g": data["g"], |
| 673 | "fail_z": False, |
| 674 | "fail_agree": False |
| 675 | } |
| 676 | |
| 677 | return vectors |