1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
# Copyright 2013-2018 Donald Stufft and individual contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from typing import Callable, Dict, List, Optional, Tuple
import pytest
def assert_equal(x: object, y: object) -> None:
assert x == y
assert not (x != y)
def assert_not_equal(x: object, y: object) -> None:
assert x != y
assert not (x == y)
def read_crypto_test_vectors(
fname: str, maxels: int = 0, delimiter: Optional[bytes] = None
) -> List[Tuple[bytes, ...]]:
assert delimiter is not None and isinstance(delimiter, bytes)
vectors = []
path = os.path.join(os.path.dirname(__file__), "data", fname)
with open(path, "rb") as fp:
for line in fp:
line = line.rstrip()
if line and line[0] != b"#"[0]:
splt = [x for x in line.split(delimiter)]
if maxels:
splt = splt[:maxels]
vectors.append(tuple(splt))
return vectors
def read_kv_test_vectors(
fname: str,
delimiter: Optional[bytes] = None,
newrecord: Optional[bytes] = None,
) -> List[Dict[str, bytes]]:
assert delimiter is not None and isinstance(delimiter, bytes)
assert newrecord is not None and isinstance(newrecord, bytes)
vectors = []
path = os.path.join(os.path.dirname(__file__), "data", fname)
vector: Dict[str, bytes] = {}
with open(path, "rb") as fp:
for line in fp:
line = line.rstrip()
if line and line[0] != b"#"[0]:
[k, v] = line.split(delimiter, 1)
k, v = k.strip(), v.strip()
if k == newrecord and k.decode("utf-8") in vector:
vectors.append(vector)
vector = {}
vector[k.decode("utf-8")] = v
vectors.append(vector)
return vectors
def flip_byte(original: bytes, byte_offset: int) -> bytes:
return (
original[:byte_offset]
+ bytes([0x01 ^ original[byte_offset]])
+ original[byte_offset + 1 :]
)
# Type safety: it's fine to use `...` here, but mypy config doesn't like it because it's
# an explict `Any`.
def check_type_error( # type: ignore[misc]
expected: str, f: Callable[..., object], *args: object
) -> None:
with pytest.raises(TypeError) as e:
f(*args)
assert expected in str(e.value)
|