Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for parsing implicit DER tags #356

Merged
merged 2 commits into from
Mar 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions src/ecdsa/der.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,32 @@ def encode_constructed(tag, value):
return int2byte(0xA0 + tag) + encode_length(len(value)) + value


def encode_implicit(tag, value, cls="context-specific"):
"""
Encode and IMPLICIT value using :term:`DER`.

:param int tag: the tag value to encode, must be between 0 an 31 inclusive
:param bytes value: the data to encode
:param str cls: the class of the tag to encode: "application",
"context-specific", or "private"
:rtype: bytes
"""
if cls not in ("application", "context-specific", "private"):
raise ValueError("invalid tag class")
if tag > 31:
raise ValueError("Long tags not supported")

if cls == "application":
tag_class = 0b01000000
elif cls == "context-specific":
tag_class = 0b10000000
else:
assert cls == "private"
tag_class = 0b11000000

return int2byte(tag_class + tag) + encode_length(len(value)) + value


def encode_integer(r):
assert r >= 0 # can't support negative numbers yet
h = ("%x" % r).encode()
Expand Down Expand Up @@ -142,6 +168,49 @@ def remove_constructed(string):
return tag, body, rest


def remove_implicit(string, exp_class="context-specific"):
"""
Removes an IMPLICIT tagged value from ``string`` following :term:`DER`.

:param bytes string: a byte string that can have one or more
DER elements.
:param str exp_class: the expected tag class of the implicitly
encoded value. Possible values are: "context-specific", "application",
and "private".
:return: a tuple with first value being the tag without indicator bits,
second being the raw bytes of the value and the third one being
remaining bytes (or an empty string if there are none)
:rtype: tuple(int,bytes,bytes)
"""
if exp_class not in ("context-specific", "application", "private"):
raise ValueError("invalid `exp_class` value")
if exp_class == "application":
tag_class = 0b01000000
elif exp_class == "context-specific":
tag_class = 0b10000000
else:
assert exp_class == "private"
tag_class = 0b11000000
tag_mask = 0b11000000

s0 = str_idx_as_int(string, 0)

if (s0 & tag_mask) != tag_class:
raise UnexpectedDER(
"wanted class {0}, got 0x{1:02x} tag".format(exp_class, s0)
)
if s0 & 0b00100000 != 0:
raise UnexpectedDER(
"wanted type primitive, got 0x{0:02x} tag".format(s0)
)

tag = s0 & 0x1F
length, llen = read_length(string[1:])
body = string[1 + llen : 1 + llen + length]
rest = string[1 + llen + length :]
return tag, body, rest


def remove_sequence(string):
if not string:
raise UnexpectedDER("Empty string does not encode a sequence")
Expand Down
124 changes: 124 additions & 0 deletions src/ecdsa/test_der.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
remove_object,
encode_oid,
remove_constructed,
remove_implicit,
remove_octet_string,
remove_sequence,
encode_implicit,
)


Expand Down Expand Up @@ -396,6 +398,128 @@ def test_with_malformed_tag(self):
self.assertIn("constructed tag", str(e.exception))


class TestRemoveImplicit(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.exp_tag = 6
cls.exp_data = b"\x0a\x0b"
# data with application tag class
cls.data_application = b"\x46\x02\x0a\x0b"
# data with context-specific tag class
cls.data_context_specific = b"\x86\x02\x0a\x0b"
# data with private tag class
cls.data_private = b"\xc6\x02\x0a\x0b"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We probably should have a test for length > 128 to make sure the llen encoding/decoding is happening correctly

Copy link
Member Author

@tomato42 tomato42 Mar 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is reusing common code for encoding and decoding length, so I'm quite sure that it will handle it correctly

we have test coverage for it here:

class TestReadLength(unittest.TestCase):
# DER requires the lengths between 0 and 127 to be encoded using the short
# form and lengths above that encoded with minimal number of bytes
# necessary
def test_zero_length(self):
self.assertEqual((0, 1), read_length(b"\x00"))
def test_two_byte_zero_length(self):
with self.assertRaises(UnexpectedDER):
read_length(b"\x81\x00")
def test_two_byte_small_length(self):
with self.assertRaises(UnexpectedDER):
read_length(b"\x81\x7f")
def test_long_form_with_zero_length(self):
with self.assertRaises(UnexpectedDER):
read_length(b"\x80")
def test_smallest_two_byte_length(self):
self.assertEqual((128, 2), read_length(b"\x81\x80"))
def test_zero_padded_length(self):
with self.assertRaises(UnexpectedDER):
read_length(b"\x82\x00\x80")
def test_two_three_byte_length(self):
self.assertEqual((256, 3), read_length(b"\x82\x01\x00"))
def test_empty_string(self):
with self.assertRaises(UnexpectedDER):
read_length(b"")
def test_length_overflow(self):
with self.assertRaises(UnexpectedDER):
read_length(b"\x83\x01\x00")


def test_simple(self):
tag, body, rest = remove_implicit(self.data_context_specific)

self.assertEqual(tag, self.exp_tag)
self.assertEqual(body, self.exp_data)
self.assertEqual(rest, b"")

def test_wrong_expected_class(self):
with self.assertRaises(ValueError) as e:
remove_implicit(self.data_context_specific, "foobar")

self.assertIn("invalid `exp_class` value", str(e.exception))

def test_with_wrong_class(self):
with self.assertRaises(UnexpectedDER) as e:
remove_implicit(self.data_application)

self.assertIn(
"wanted class context-specific, got 0x46 tag", str(e.exception)
)

def test_with_application_class(self):
tag, body, rest = remove_implicit(self.data_application, "application")

self.assertEqual(tag, self.exp_tag)
self.assertEqual(body, self.exp_data)
self.assertEqual(rest, b"")

def test_with_private_class(self):
tag, body, rest = remove_implicit(self.data_private, "private")

self.assertEqual(tag, self.exp_tag)
self.assertEqual(body, self.exp_data)
self.assertEqual(rest, b"")

def test_with_data_following(self):
extra_data = b"\x00\x01"

tag, body, rest = remove_implicit(
self.data_context_specific + extra_data
)

self.assertEqual(tag, self.exp_tag)
self.assertEqual(body, self.exp_data)
self.assertEqual(rest, extra_data)

def test_with_constructed(self):
data = b"\xa6\x02\x0a\x0b"

with self.assertRaises(UnexpectedDER) as e:
remove_implicit(data)

self.assertIn("wanted type primitive, got 0xa6 tag", str(e.exception))

def test_encode_decode(self):
data = b"some longish string"

tag, body, rest = remove_implicit(
encode_implicit(6, data, "application"), "application"
)

self.assertEqual(tag, 6)
self.assertEqual(body, data)
self.assertEqual(rest, b"")


class TestEncodeImplicit(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.data = b"\x0a\x0b"
# data with application tag class
cls.data_application = b"\x46\x02\x0a\x0b"
# data with context-specific tag class
cls.data_context_specific = b"\x86\x02\x0a\x0b"
# data with private tag class
cls.data_private = b"\xc6\x02\x0a\x0b"

def test_encode_with_default_class(self):
ret = encode_implicit(6, self.data)

self.assertEqual(ret, self.data_context_specific)

def test_encode_with_application_class(self):
ret = encode_implicit(6, self.data, "application")

self.assertEqual(ret, self.data_application)

def test_encode_with_context_specific_class(self):
ret = encode_implicit(6, self.data, "context-specific")

self.assertEqual(ret, self.data_context_specific)

def test_encode_with_private_class(self):
ret = encode_implicit(6, self.data, "private")

self.assertEqual(ret, self.data_private)

def test_encode_with_invalid_class(self):
with self.assertRaises(ValueError) as e:
encode_implicit(6, self.data, "foobar")

self.assertIn("invalid tag class", str(e.exception))

def test_encode_with_too_large_tag(self):
with self.assertRaises(ValueError) as e:
encode_implicit(32, self.data)

self.assertIn("Long tags not supported", str(e.exception))


class TestRemoveOctetString(unittest.TestCase):
def test_simple(self):
data = b"\x04\x03\xaa\xbb\xcc"
Expand Down
Loading