Fix encoding of "unsigned" integers. If MSB is set, we need to pad

with a zero byte.


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12337 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2003-05-27 21:59:52 +00:00
parent ca77d81243
commit 5ce268bf83
3 changed files with 100 additions and 45 deletions

View File

@@ -90,6 +90,43 @@ test_integer (void)
cmp_integer);
}
static int
cmp_unsigned (void *a, void *b)
{
return *(unsigned int*)b - *(unsigned int*)a;
}
static int
test_unsigned (void)
{
struct test_case tests[] = {
{NULL, 3, "\x02\x01\x00"},
{NULL, 3, "\x02\x01\x7f"},
{NULL, 4, "\x02\x02\x00\x80"},
{NULL, 4, "\x02\x02\x01\x00"},
{NULL, 4, "\x02\x02\x02\x00"},
{NULL, 5, "\x02\x03\x00\x80\x00"},
{NULL, 7, "\x02\x05\x00\x80\x00\x00\x00"},
{NULL, 6, "\x02\x04\x7f\xff\xff\xff"}
};
unsigned int values[] = {0, 127, 128, 256, 512, 32768,
0x80000000, 0x7fffffff};
int i;
int ntests = sizeof(tests) / sizeof(*tests);
for (i = 0; i < ntests; ++i) {
tests[i].val = &values[i];
asprintf (&tests[i].name, "unsigned %u", values[i]);
}
return generic_test (tests, ntests, sizeof(int),
(generic_encode)encode_unsigned,
(generic_length) length_unsigned,
(generic_decode)decode_unsigned,
cmp_unsigned);
}
static int
cmp_octet_string (void *a, void *b)
{
@@ -189,6 +226,7 @@ main(int argc, char **argv)
int ret = 0;
ret += test_integer ();
ret += test_unsigned ();
ret += test_octet_string ();
ret += test_general_string ();
ret += test_generalized_time ();