blob: ad38000ba3539ff5cbcbe6f1ac784fbf81ee11a7 [file] [log] [blame]
Alex Gaynor5951f462014-11-16 09:08:42 -08001# This file is dual licensed under the terms of the Apache License, Version
2# 2.0, and the BSD License. See the LICENSE file in the root of this repository
3# for complete details.
Alex Gaynorf312a5c2013-08-10 15:23:38 -04004
Alex Gaynorc37feed2014-03-08 08:32:56 -08005from __future__ import absolute_import, division, print_function
6
Alex Stapletonc387cf72014-04-13 13:58:02 +01007import binascii
Alex Gaynor36e651c2014-01-27 10:08:35 -08008import collections
Alex Stapletonc387cf72014-04-13 13:58:02 +01009import re
Alex Stapleton707b0082014-04-20 22:24:41 +010010from contextlib import contextmanager
Paul Kehrer90450f32014-03-19 12:37:17 -040011
Paul Kehrera409ae12014-04-30 13:28:28 -050012from pyasn1.codec.der import encoder
Paul Kehrerd3e3df92014-04-30 11:13:17 -050013from pyasn1.type import namedtype, univ
14
Alex Stapletona39a3192014-03-14 20:03:12 +000015import pytest
16
Paul Kehrerafc1ccd2014-03-19 11:49:32 -040017import six
Alex Gaynor2b3f9422013-12-24 21:55:24 -080018
Alex Gaynor7a489db2014-03-22 15:09:34 -070019from cryptography.exceptions import UnsupportedAlgorithm
Alex Gaynor07c4dcc2014-04-05 11:22:07 -070020
Alex Stapletona39a3192014-03-14 20:03:12 +000021import cryptography_vectors
Matthew Iversen68e77c72014-03-13 08:54:43 +110022
Alex Gaynor2b3f9422013-12-24 21:55:24 -080023
Alex Gaynor36e651c2014-01-27 10:08:35 -080024HashVector = collections.namedtuple("HashVector", ["message", "digest"])
25KeyedHashVector = collections.namedtuple(
26 "KeyedHashVector", ["message", "digest", "key"]
27)
28
29
Paul Kehrerc421e632014-01-18 09:22:21 -060030def select_backends(names, backend_list):
31 if names is None:
32 return backend_list
33 split_names = [x.strip() for x in names.split(',')]
Paul Kehreraed9e172014-01-19 12:09:27 -060034 selected_backends = []
35 for backend in backend_list:
36 if backend.name in split_names:
37 selected_backends.append(backend)
Paul Kehrerc421e632014-01-18 09:22:21 -060038
Paul Kehreraed9e172014-01-19 12:09:27 -060039 if len(selected_backends) > 0:
40 return selected_backends
Paul Kehrerc421e632014-01-18 09:22:21 -060041 else:
42 raise ValueError(
43 "No backend selected. Tried to select: {0}".format(split_names)
44 )
Paul Kehrer34c075e2014-01-13 21:52:08 -050045
46
Paul Kehrer902d8cf2014-10-25 12:22:10 -070047def skip_if_empty(backend_list, required_interfaces):
48 if not backend_list:
49 pytest.skip(
50 "No backends provided supply the interface: {0}".format(
51 ", ".join(iface.__name__ for iface in required_interfaces)
52 )
53 )
54
55
Paul Kehrer60fc8da2013-12-26 20:19:34 -060056def check_backend_support(item):
Paul Kehrer5a8fdf82013-12-26 20:13:45 -060057 supported = item.keywords.get("supported")
58 if supported and "backend" in item.funcargs:
59 if not supported.kwargs["only_if"](item.funcargs["backend"]):
Paul Kehrerf03334e2014-01-02 23:16:14 -060060 pytest.skip("{0} ({1})".format(
61 supported.kwargs["skip_message"], item.funcargs["backend"]
62 ))
Paul Kehrer5a8fdf82013-12-26 20:13:45 -060063 elif supported:
Paul Kehrerec495502013-12-27 15:51:40 -060064 raise ValueError("This mark is only available on methods that take a "
65 "backend")
Paul Kehrer5a8fdf82013-12-26 20:13:45 -060066
67
Alex Gaynor7a489db2014-03-22 15:09:34 -070068@contextmanager
Alex Stapleton5e4c8c32014-03-27 16:38:00 +000069def raises_unsupported_algorithm(reason):
Alex Gaynor7a489db2014-03-22 15:09:34 -070070 with pytest.raises(UnsupportedAlgorithm) as exc_info:
Alex Stapleton112963e2014-03-26 17:39:29 +000071 yield exc_info
Alex Stapleton5e4c8c32014-03-27 16:38:00 +000072
Alex Stapleton85a791f2014-03-27 16:55:41 +000073 assert exc_info.value._reason is reason
Alex Gaynor7a489db2014-03-22 15:09:34 -070074
75
Paul Kehrerd0dc6a32014-04-30 12:12:50 -050076class _DSSSigValue(univ.Sequence):
Paul Kehrerd3e3df92014-04-30 11:13:17 -050077 componentType = namedtype.NamedTypes(
78 namedtype.NamedType('r', univ.Integer()),
79 namedtype.NamedType('s', univ.Integer())
80 )
Paul Kehrer3fc686e2014-04-30 09:07:27 -050081
82
Paul Kehrer14951f42014-04-30 12:14:48 -050083def der_encode_dsa_signature(r, s):
Paul Kehrerd0dc6a32014-04-30 12:12:50 -050084 sig = _DSSSigValue()
Paul Kehrerd3e3df92014-04-30 11:13:17 -050085 sig.setComponentByName('r', r)
86 sig.setComponentByName('s', s)
87 return encoder.encode(sig)
Paul Kehrer3fc686e2014-04-30 09:07:27 -050088
89
Paul Kehrerf7f6a9f2013-11-11 20:43:52 -060090def load_vectors_from_file(filename, loader):
Alex Stapletona39a3192014-03-14 20:03:12 +000091 with cryptography_vectors.open_vector_file(filename) as vector_file:
92 return loader(vector_file)
Paul Kehrerf7f6a9f2013-11-11 20:43:52 -060093
94
Alex Gaynord3ce7032013-11-11 14:46:20 -080095def load_nist_vectors(vector_data):
Paul Kehrer749ac5b2013-11-18 18:12:41 -060096 test_data = None
97 data = []
Donald Stufft9e1a48b2013-08-09 00:32:30 -040098
99 for line in vector_data:
100 line = line.strip()
101
Paul Kehrer749ac5b2013-11-18 18:12:41 -0600102 # Blank lines, comments, and section headers are ignored
103 if not line or line.startswith("#") or (line.startswith("[")
104 and line.endswith("]")):
Alex Gaynor521c42d2013-11-11 14:25:59 -0800105 continue
106
Paul Kehrera43b6692013-11-12 15:35:49 -0600107 if line.strip() == "FAIL":
Paul Kehrer749ac5b2013-11-18 18:12:41 -0600108 test_data["fail"] = True
Paul Kehrera43b6692013-11-12 15:35:49 -0600109 continue
110
Donald Stufft9e1a48b2013-08-09 00:32:30 -0400111 # Build our data using a simple Key = Value format
Paul Kehrera43b6692013-11-12 15:35:49 -0600112 name, value = [c.strip() for c in line.split("=")]
Donald Stufft9e1a48b2013-08-09 00:32:30 -0400113
Paul Kehrer1050ddf2014-01-27 21:04:03 -0600114 # Some tests (PBKDF2) contain \0, which should be interpreted as a
115 # null character rather than literal.
116 value = value.replace("\\0", "\0")
117
Donald Stufft9e1a48b2013-08-09 00:32:30 -0400118 # COUNT is a special token that indicates a new block of data
119 if name.upper() == "COUNT":
Paul Kehrer749ac5b2013-11-18 18:12:41 -0600120 test_data = {}
121 data.append(test_data)
122 continue
Donald Stufft9e1a48b2013-08-09 00:32:30 -0400123 # For all other tokens we simply want the name, value stored in
124 # the dictionary
125 else:
Paul Kehrer749ac5b2013-11-18 18:12:41 -0600126 test_data[name.lower()] = value.encode("ascii")
Donald Stufft9e1a48b2013-08-09 00:32:30 -0400127
Paul Kehrer749ac5b2013-11-18 18:12:41 -0600128 return data
Donald Stufft9e1a48b2013-08-09 00:32:30 -0400129
130
Paul Kehrer1951bf62013-09-15 12:05:43 -0500131def load_cryptrec_vectors(vector_data):
Paul Kehrere5805982013-09-27 11:26:01 -0500132 cryptrec_list = []
Paul Kehrer1951bf62013-09-15 12:05:43 -0500133
134 for line in vector_data:
135 line = line.strip()
136
137 # Blank lines and comments are ignored
138 if not line or line.startswith("#"):
139 continue
140
141 if line.startswith("K"):
Paul Kehrere5805982013-09-27 11:26:01 -0500142 key = line.split(" : ")[1].replace(" ", "").encode("ascii")
Paul Kehrer1951bf62013-09-15 12:05:43 -0500143 elif line.startswith("P"):
Paul Kehrere5805982013-09-27 11:26:01 -0500144 pt = line.split(" : ")[1].replace(" ", "").encode("ascii")
Paul Kehrer1951bf62013-09-15 12:05:43 -0500145 elif line.startswith("C"):
Paul Kehrere5805982013-09-27 11:26:01 -0500146 ct = line.split(" : ")[1].replace(" ", "").encode("ascii")
147 # after a C is found the K+P+C tuple is complete
148 # there are many P+C pairs for each K
Alex Gaynor1fe70b12013-10-16 11:59:17 -0700149 cryptrec_list.append({
150 "key": key,
151 "plaintext": pt,
152 "ciphertext": ct
153 })
Donald Stufft3359d7e2013-10-19 19:33:06 -0400154 else:
155 raise ValueError("Invalid line in file '{}'".format(line))
Paul Kehrer1951bf62013-09-15 12:05:43 -0500156 return cryptrec_list
157
158
Paul Kehrer69e06522013-10-18 17:28:39 -0500159def load_hash_vectors(vector_data):
160 vectors = []
Paul Kehrer1bb8b712013-10-27 17:00:14 -0500161 key = None
162 msg = None
163 md = None
Paul Kehrer69e06522013-10-18 17:28:39 -0500164
165 for line in vector_data:
166 line = line.strip()
167
Paul Kehrer87cd0db2013-10-18 18:01:26 -0500168 if not line or line.startswith("#") or line.startswith("["):
Paul Kehrer69e06522013-10-18 17:28:39 -0500169 continue
170
171 if line.startswith("Len"):
172 length = int(line.split(" = ")[1])
Paul Kehrer0317b042013-10-28 17:34:27 -0500173 elif line.startswith("Key"):
Alex Gaynor36e651c2014-01-27 10:08:35 -0800174 # HMAC vectors contain a key attribute. Hash vectors do not.
Paul Kehrer0317b042013-10-28 17:34:27 -0500175 key = line.split(" = ")[1].encode("ascii")
Paul Kehrer69e06522013-10-18 17:28:39 -0500176 elif line.startswith("Msg"):
Alex Gaynor36e651c2014-01-27 10:08:35 -0800177 # In the NIST vectors they have chosen to represent an empty
178 # string as hex 00, which is of course not actually an empty
179 # string. So we parse the provided length and catch this edge case.
Paul Kehrer69e06522013-10-18 17:28:39 -0500180 msg = line.split(" = ")[1].encode("ascii") if length > 0 else b""
181 elif line.startswith("MD"):
182 md = line.split(" = ")[1]
Paul Kehrer0317b042013-10-28 17:34:27 -0500183 # after MD is found the Msg+MD (+ potential key) tuple is complete
Paul Kehrer00dd5092013-10-23 09:41:49 -0500184 if key is not None:
Alex Gaynor36e651c2014-01-27 10:08:35 -0800185 vectors.append(KeyedHashVector(msg, md, key))
Paul Kehrer1bb8b712013-10-27 17:00:14 -0500186 key = None
187 msg = None
188 md = None
Paul Kehrer00dd5092013-10-23 09:41:49 -0500189 else:
Alex Gaynor36e651c2014-01-27 10:08:35 -0800190 vectors.append(HashVector(msg, md))
Paul Kehrer1bb8b712013-10-27 17:00:14 -0500191 msg = None
192 md = None
Paul Kehrer69e06522013-10-18 17:28:39 -0500193 else:
194 raise ValueError("Unknown line in hash vector")
195 return vectors
Alex Stapleton58f27ac2014-02-02 19:30:03 +0000196
197
198def load_pkcs1_vectors(vector_data):
199 """
200 Loads data out of RSA PKCS #1 vector files.
Alex Stapleton58f27ac2014-02-02 19:30:03 +0000201 """
202 private_key_vector = None
203 public_key_vector = None
204 attr = None
205 key = None
Paul Kehrerefca2802014-02-17 20:55:13 -0600206 example_vector = None
207 examples = []
Alex Stapleton58f27ac2014-02-02 19:30:03 +0000208 vectors = []
209 for line in vector_data:
Paul Kehrer7774a032014-02-17 22:56:55 -0600210 if (
211 line.startswith("# PSS Example") or
Paul Kehrer3fe91502014-03-29 12:08:39 -0500212 line.startswith("# OAEP Example") or
213 line.startswith("# PKCS#1 v1.5")
Paul Kehrer7774a032014-02-17 22:56:55 -0600214 ):
Paul Kehrerefca2802014-02-17 20:55:13 -0600215 if example_vector:
216 for key, value in six.iteritems(example_vector):
Paul Kehrer26811802014-02-19 16:32:11 -0600217 hex_str = "".join(value).replace(" ", "").encode("ascii")
Paul Kehrerefca2802014-02-17 20:55:13 -0600218 example_vector[key] = hex_str
219 examples.append(example_vector)
220
221 attr = None
222 example_vector = collections.defaultdict(list)
223
Paul Kehrer3fe91502014-03-29 12:08:39 -0500224 if line.startswith("# Message"):
Paul Kehrer7d9c3062014-02-18 08:27:39 -0600225 attr = "message"
Paul Kehrerefca2802014-02-17 20:55:13 -0600226 continue
227 elif line.startswith("# Salt"):
228 attr = "salt"
229 continue
Paul Kehrer3fe91502014-03-29 12:08:39 -0500230 elif line.startswith("# Seed"):
231 attr = "seed"
232 continue
Paul Kehrerefca2802014-02-17 20:55:13 -0600233 elif line.startswith("# Signature"):
234 attr = "signature"
235 continue
Paul Kehrer3fe91502014-03-29 12:08:39 -0500236 elif line.startswith("# Encryption"):
237 attr = "encryption"
238 continue
Paul Kehrerefca2802014-02-17 20:55:13 -0600239 elif (
240 example_vector and
241 line.startswith("# =============================================")
242 ):
243 for key, value in six.iteritems(example_vector):
Paul Kehrer26811802014-02-19 16:32:11 -0600244 hex_str = "".join(value).replace(" ", "").encode("ascii")
Paul Kehrerefca2802014-02-17 20:55:13 -0600245 example_vector[key] = hex_str
246 examples.append(example_vector)
247 example_vector = None
248 attr = None
249 elif example_vector and line.startswith("#"):
250 continue
251 else:
252 if attr is not None and example_vector is not None:
253 example_vector[attr].append(line.strip())
254 continue
255
Alex Stapleton58f27ac2014-02-02 19:30:03 +0000256 if (
257 line.startswith("# Example") or
258 line.startswith("# =============================================")
259 ):
260 if key:
261 assert private_key_vector
262 assert public_key_vector
263
264 for key, value in six.iteritems(public_key_vector):
265 hex_str = "".join(value).replace(" ", "")
266 public_key_vector[key] = int(hex_str, 16)
267
268 for key, value in six.iteritems(private_key_vector):
269 hex_str = "".join(value).replace(" ", "")
270 private_key_vector[key] = int(hex_str, 16)
271
Paul Kehrerefca2802014-02-17 20:55:13 -0600272 private_key_vector["examples"] = examples
273 examples = []
274
Alex Stapleton58f27ac2014-02-02 19:30:03 +0000275 assert (
276 private_key_vector['public_exponent'] ==
277 public_key_vector['public_exponent']
278 )
279
280 assert (
281 private_key_vector['modulus'] ==
282 public_key_vector['modulus']
283 )
284
285 vectors.append(
286 (private_key_vector, public_key_vector)
287 )
288
289 public_key_vector = collections.defaultdict(list)
290 private_key_vector = collections.defaultdict(list)
291 key = None
292 attr = None
293
294 if private_key_vector is None or public_key_vector is None:
295 continue
296
297 if line.startswith("# Private key"):
298 key = private_key_vector
299 elif line.startswith("# Public key"):
300 key = public_key_vector
301 elif line.startswith("# Modulus:"):
302 attr = "modulus"
303 elif line.startswith("# Public exponent:"):
304 attr = "public_exponent"
305 elif line.startswith("# Exponent:"):
306 if key is public_key_vector:
307 attr = "public_exponent"
308 else:
309 assert key is private_key_vector
310 attr = "private_exponent"
311 elif line.startswith("# Prime 1:"):
312 attr = "p"
313 elif line.startswith("# Prime 2:"):
314 attr = "q"
Paul Kehrer09328bb2014-02-12 23:57:27 -0600315 elif line.startswith("# Prime exponent 1:"):
316 attr = "dmp1"
317 elif line.startswith("# Prime exponent 2:"):
318 attr = "dmq1"
319 elif line.startswith("# Coefficient:"):
320 attr = "iqmp"
Alex Stapleton58f27ac2014-02-02 19:30:03 +0000321 elif line.startswith("#"):
322 attr = None
323 else:
324 if key is not None and attr is not None:
325 key[attr].append(line.strip())
326 return vectors
Paul Kehrer2f2a2062014-03-10 23:30:28 -0400327
328
329def load_rsa_nist_vectors(vector_data):
330 test_data = None
Paul Kehrer62707f12014-03-18 07:19:14 -0400331 p = None
Paul Kehrerafc25182014-03-18 07:51:56 -0400332 salt_length = None
Paul Kehrer2f2a2062014-03-10 23:30:28 -0400333 data = []
334
335 for line in vector_data:
336 line = line.strip()
337
338 # Blank lines and section headers are ignored
339 if not line or line.startswith("["):
340 continue
341
342 if line.startswith("# Salt len:"):
343 salt_length = int(line.split(":")[1].strip())
344 continue
345 elif line.startswith("#"):
346 continue
347
348 # Build our data using a simple Key = Value format
349 name, value = [c.strip() for c in line.split("=")]
350
351 if name == "n":
352 n = int(value, 16)
Paul Kehrer62707f12014-03-18 07:19:14 -0400353 elif name == "e" and p is None:
Paul Kehrer2f2a2062014-03-10 23:30:28 -0400354 e = int(value, 16)
Paul Kehrer62707f12014-03-18 07:19:14 -0400355 elif name == "p":
356 p = int(value, 16)
357 elif name == "q":
358 q = int(value, 16)
Paul Kehrer2f2a2062014-03-10 23:30:28 -0400359 elif name == "SHAAlg":
Paul Kehrer62707f12014-03-18 07:19:14 -0400360 if p is None:
361 test_data = {
362 "modulus": n,
363 "public_exponent": e,
364 "salt_length": salt_length,
Paul Kehrere66f69a2014-03-18 07:57:26 -0400365 "algorithm": value,
Paul Kehrer62707f12014-03-18 07:19:14 -0400366 "fail": False
367 }
368 else:
369 test_data = {
370 "modulus": n,
371 "p": p,
372 "q": q,
Paul Kehrere66f69a2014-03-18 07:57:26 -0400373 "algorithm": value
Paul Kehrer62707f12014-03-18 07:19:14 -0400374 }
Paul Kehrerafc25182014-03-18 07:51:56 -0400375 if salt_length is not None:
376 test_data["salt_length"] = salt_length
Paul Kehrer2f2a2062014-03-10 23:30:28 -0400377 data.append(test_data)
Paul Kehrer62707f12014-03-18 07:19:14 -0400378 elif name == "e" and p is not None:
379 test_data["public_exponent"] = int(value, 16)
380 elif name == "d":
381 test_data["private_exponent"] = int(value, 16)
382 elif name == "Result":
383 test_data["fail"] = value.startswith("F")
Paul Kehrer2f2a2062014-03-10 23:30:28 -0400384 # For all other tokens we simply want the name, value stored in
385 # the dictionary
386 else:
387 test_data[name.lower()] = value.encode("ascii")
388
389 return data
Mohammed Attia987cc702014-03-12 16:07:21 +0200390
391
392def load_fips_dsa_key_pair_vectors(vector_data):
393 """
394 Loads data out of the FIPS DSA KeyPair vector files.
395 """
396 vectors = []
Mohammed Attia49b92592014-03-12 20:07:05 +0200397 # When reading_key_data is set to True it tells the loader to continue
398 # constructing dictionaries. We set reading_key_data to False during the
399 # blocks of the vectors of N=224 because we don't support it.
400 reading_key_data = True
Mohammed Attia987cc702014-03-12 16:07:21 +0200401 for line in vector_data:
402 line = line.strip()
403
404 if not line or line.startswith("#"):
405 continue
Mohammed Attia49b92592014-03-12 20:07:05 +0200406 elif line.startswith("[mod = L=1024"):
Mohammed Attia987cc702014-03-12 16:07:21 +0200407 continue
Mohammed Attia49b92592014-03-12 20:07:05 +0200408 elif line.startswith("[mod = L=2048, N=224"):
409 reading_key_data = False
Mohammed Attia987cc702014-03-12 16:07:21 +0200410 continue
Mohammed Attia49b92592014-03-12 20:07:05 +0200411 elif line.startswith("[mod = L=2048, N=256"):
412 reading_key_data = True
Mohammed Attia987cc702014-03-12 16:07:21 +0200413 continue
Mohammed Attia49b92592014-03-12 20:07:05 +0200414 elif line.startswith("[mod = L=3072"):
Mohammed Attia987cc702014-03-12 16:07:21 +0200415 continue
416
Mohammed Attia49b92592014-03-12 20:07:05 +0200417 if not reading_key_data:
Mohammed Attia987cc702014-03-12 16:07:21 +0200418 continue
419
Mohammed Attia49b92592014-03-12 20:07:05 +0200420 elif reading_key_data:
Mohammed Attia987cc702014-03-12 16:07:21 +0200421 if line.startswith("P"):
422 vectors.append({'p': int(line.split("=")[1], 16)})
Mohammed Attia22ccb872014-03-12 18:27:59 +0200423 elif line.startswith("Q"):
Mohammed Attia987cc702014-03-12 16:07:21 +0200424 vectors[-1]['q'] = int(line.split("=")[1], 16)
Mohammed Attia22ccb872014-03-12 18:27:59 +0200425 elif line.startswith("G"):
Mohammed Attia987cc702014-03-12 16:07:21 +0200426 vectors[-1]['g'] = int(line.split("=")[1], 16)
Mohammed Attia22ccb872014-03-12 18:27:59 +0200427 elif line.startswith("X") and 'x' not in vectors[-1]:
Mohammed Attia987cc702014-03-12 16:07:21 +0200428 vectors[-1]['x'] = int(line.split("=")[1], 16)
Mohammed Attia22ccb872014-03-12 18:27:59 +0200429 elif line.startswith("X") and 'x' in vectors[-1]:
Mohammed Attia987cc702014-03-12 16:07:21 +0200430 vectors.append({'p': vectors[-1]['p'],
431 'q': vectors[-1]['q'],
432 'g': vectors[-1]['g'],
433 'x': int(line.split("=")[1], 16)
434 })
Mohammed Attia22ccb872014-03-12 18:27:59 +0200435 elif line.startswith("Y"):
Mohammed Attia987cc702014-03-12 16:07:21 +0200436 vectors[-1]['y'] = int(line.split("=")[1], 16)
Mohammed Attia987cc702014-03-12 16:07:21 +0200437
438 return vectors
Alex Stapletoncf048602014-04-12 12:48:59 +0100439
440
Mohammed Attia3c9e1582014-04-22 14:24:44 +0200441def load_fips_dsa_sig_vectors(vector_data):
Mohammed Attia0fb5d852014-04-21 10:31:15 +0200442 """
443 Loads data out of the FIPS DSA SigVer vector files.
444 """
445 vectors = []
446 sha_regex = re.compile(
447 r"\[mod = L=...., N=..., SHA-(?P<sha>1|224|256|384|512)\]"
448 )
449 # When reading_key_data is set to True it tells the loader to continue
450 # constructing dictionaries. We set reading_key_data to False during the
451 # blocks of the vectors of N=224 because we don't support it.
452 reading_key_data = True
Mohammed Attia3c9e1582014-04-22 14:24:44 +0200453
Mohammed Attia0fb5d852014-04-21 10:31:15 +0200454 for line in vector_data:
455 line = line.strip()
456
457 if not line or line.startswith("#"):
458 continue
459
460 sha_match = sha_regex.match(line)
461 if sha_match:
462 digest_algorithm = "SHA-{0}".format(sha_match.group("sha"))
463
Paul Kehrer7ef2f8f2014-04-22 08:37:58 -0500464 if line.startswith("[mod = L=2048, N=224"):
Mohammed Attia0fb5d852014-04-21 10:31:15 +0200465 reading_key_data = False
466 continue
Paul Kehrer7ef2f8f2014-04-22 08:37:58 -0500467 elif line.startswith("[mod = L=2048, N=256"):
Mohammed Attia0fb5d852014-04-21 10:31:15 +0200468 reading_key_data = True
469 continue
470
471 if not reading_key_data or line.startswith("[mod"):
472 continue
473
474 name, value = [c.strip() for c in line.split("=")]
475
476 if name == "P":
477 vectors.append({'p': int(value, 16),
478 'digest_algorithm': digest_algorithm})
479 elif name == "Q":
480 vectors[-1]['q'] = int(value, 16)
481 elif name == "G":
482 vectors[-1]['g'] = int(value, 16)
483 elif name == "Msg" and 'msg' not in vectors[-1]:
484 hexmsg = value.strip().encode("ascii")
485 vectors[-1]['msg'] = binascii.unhexlify(hexmsg)
486 elif name == "Msg" and 'msg' in vectors[-1]:
487 hexmsg = value.strip().encode("ascii")
488 vectors.append({'p': vectors[-1]['p'],
489 'q': vectors[-1]['q'],
490 'g': vectors[-1]['g'],
491 'digest_algorithm':
492 vectors[-1]['digest_algorithm'],
493 'msg': binascii.unhexlify(hexmsg)})
494 elif name == "X":
495 vectors[-1]['x'] = int(value, 16)
496 elif name == "Y":
497 vectors[-1]['y'] = int(value, 16)
498 elif name == "R":
499 vectors[-1]['r'] = int(value, 16)
500 elif name == "S":
501 vectors[-1]['s'] = int(value, 16)
502 elif name == "Result":
503 vectors[-1]['result'] = value.split("(")[0].strip()
504
505 return vectors
506
507
Alex Stapleton44fe82d2014-04-19 09:44:26 +0100508# http://tools.ietf.org/html/rfc4492#appendix-A
Alex Stapletonc387cf72014-04-13 13:58:02 +0100509_ECDSA_CURVE_NAMES = {
510 "P-192": "secp192r1",
511 "P-224": "secp224r1",
Alex Stapleton39e300f2014-04-18 22:44:02 +0100512 "P-256": "secp256r1",
Alex Stapletonc387cf72014-04-13 13:58:02 +0100513 "P-384": "secp384r1",
514 "P-521": "secp521r1",
Alex Stapleton39e300f2014-04-18 22:44:02 +0100515
Alex Stapletonc387cf72014-04-13 13:58:02 +0100516 "K-163": "sect163k1",
517 "K-233": "sect233k1",
Alex Stapleton39e300f2014-04-18 22:44:02 +0100518 "K-283": "sect283k1",
Alex Stapletonc387cf72014-04-13 13:58:02 +0100519 "K-409": "sect409k1",
520 "K-571": "sect571k1",
Alex Stapleton39e300f2014-04-18 22:44:02 +0100521
Alex Stapleton44fe82d2014-04-19 09:44:26 +0100522 "B-163": "sect163r2",
Alex Stapletonc387cf72014-04-13 13:58:02 +0100523 "B-233": "sect233r1",
524 "B-283": "sect283r1",
525 "B-409": "sect409r1",
526 "B-571": "sect571r1",
527}
528
529
Alex Stapletoncf048602014-04-12 12:48:59 +0100530def load_fips_ecdsa_key_pair_vectors(vector_data):
531 """
532 Loads data out of the FIPS ECDSA KeyPair vector files.
533 """
534 vectors = []
535 key_data = None
Alex Stapletoncf048602014-04-12 12:48:59 +0100536 for line in vector_data:
537 line = line.strip()
538
539 if not line or line.startswith("#"):
540 continue
541
Alex Stapletonc387cf72014-04-13 13:58:02 +0100542 if line[1:-1] in _ECDSA_CURVE_NAMES:
543 curve_name = _ECDSA_CURVE_NAMES[line[1:-1]]
Alex Stapletoncf048602014-04-12 12:48:59 +0100544
545 elif line.startswith("d = "):
546 if key_data is not None:
547 vectors.append(key_data)
548
549 key_data = {
550 "curve": curve_name,
551 "d": int(line.split("=")[1], 16)
552 }
553
554 elif key_data is not None:
555 if line.startswith("Qx = "):
556 key_data["x"] = int(line.split("=")[1], 16)
557 elif line.startswith("Qy = "):
558 key_data["y"] = int(line.split("=")[1], 16)
559
560 if key_data is not None:
561 vectors.append(key_data)
562
563 return vectors
Alex Stapletonc387cf72014-04-13 13:58:02 +0100564
565
566def load_fips_ecdsa_signing_vectors(vector_data):
567 """
568 Loads data out of the FIPS ECDSA SigGen vector files.
569 """
570 vectors = []
571
572 curve_rx = re.compile(
573 r"\[(?P<curve>[PKB]-[0-9]{3}),SHA-(?P<sha>1|224|256|384|512)\]"
574 )
575
576 data = None
577 for line in vector_data:
578 line = line.strip()
579
580 if not line or line.startswith("#"):
581 continue
582
583 curve_match = curve_rx.match(line)
584 if curve_match:
585 curve_name = _ECDSA_CURVE_NAMES[curve_match.group("curve")]
586 digest_name = "SHA-{0}".format(curve_match.group("sha"))
587
588 elif line.startswith("Msg = "):
589 if data is not None:
590 vectors.append(data)
591
592 hexmsg = line.split("=")[1].strip().encode("ascii")
593
594 data = {
595 "curve": curve_name,
596 "digest_algorithm": digest_name,
597 "message": binascii.unhexlify(hexmsg)
598 }
599
600 elif data is not None:
601 if line.startswith("Qx = "):
602 data["x"] = int(line.split("=")[1], 16)
603 elif line.startswith("Qy = "):
604 data["y"] = int(line.split("=")[1], 16)
605 elif line.startswith("R = "):
606 data["r"] = int(line.split("=")[1], 16)
607 elif line.startswith("S = "):
608 data["s"] = int(line.split("=")[1], 16)
609 elif line.startswith("d = "):
610 data["d"] = int(line.split("=")[1], 16)
Alex Stapleton6f729492014-04-19 09:01:25 +0100611 elif line.startswith("Result = "):
612 data["fail"] = line.split("=")[1].strip()[0] == "F"
Alex Stapletonc387cf72014-04-13 13:58:02 +0100613
614 if data is not None:
615 vectors.append(data)
Alex Stapletonc387cf72014-04-13 13:58:02 +0100616 return vectors
Alex Stapleton839c09d2014-08-10 12:18:02 +0100617
618
619def load_kasvs_dh_vectors(vector_data):
620 """
621 Loads data out of the KASVS key exchange vector data
622 """
623
624 result_rx = re.compile(r"([FP]) \(([0-9]+) -")
625
626 vectors = []
627 data = {
628 "fail_z": False,
629 "fail_agree": False
630 }
631
632 for line in vector_data:
633 line = line.strip()
634
635 if not line or line.startswith("#"):
636 continue
637
638 if line.startswith("P = "):
639 data["p"] = int(line.split("=")[1], 16)
640 elif line.startswith("Q = "):
641 data["q"] = int(line.split("=")[1], 16)
642 elif line.startswith("G = "):
643 data["g"] = int(line.split("=")[1], 16)
644 elif line.startswith("Z = "):
645 z_hex = line.split("=")[1].strip().encode("ascii")
646 data["z"] = binascii.unhexlify(z_hex)
647 elif line.startswith("XstatCAVS = "):
648 data["x1"] = int(line.split("=")[1], 16)
649 elif line.startswith("YstatCAVS = "):
650 data["y1"] = int(line.split("=")[1], 16)
651 elif line.startswith("XstatIUT = "):
652 data["x2"] = int(line.split("=")[1], 16)
653 elif line.startswith("YstatIUT = "):
654 data["y2"] = int(line.split("=")[1], 16)
655 elif line.startswith("Result = "):
656 result_str = line.split("=")[1].strip()
657 match = result_rx.match(result_str)
658
659 if match.group(1) == "F":
660 if int(match.group(2)) in (5, 10):
661 data["fail_z"] = True
662 else:
663 data["fail_agree"] = True
664
665 vectors.append(data)
666
667 data = {
668 "p": data["p"],
669 "q": data["q"],
670 "g": data["g"],
671 "fail_z": False,
672 "fail_agree": False
673 }
674
675 return vectors