add tests vectors from "Liqiang(Larry) Zhu" <lzhu@windows.microsoft.com>
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15866 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -37,16 +37,17 @@
|
|||||||
RCSID("$Id$");
|
RCSID("$Id$");
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_dh2key(krb5_context context,
|
test_dh2key(int i,
|
||||||
|
krb5_context context,
|
||||||
const heim_octet_string *dh,
|
const heim_octet_string *dh,
|
||||||
const heim_octet_string *c_n,
|
const heim_octet_string *c_n,
|
||||||
const heim_octet_string *k_n,
|
const heim_octet_string *k_n,
|
||||||
krb5_enctype etype)
|
krb5_enctype etype,
|
||||||
|
const heim_octet_string *result)
|
||||||
{
|
{
|
||||||
krb5_error_code ret;
|
krb5_error_code ret;
|
||||||
krb5_keyblock key;
|
krb5_keyblock key;
|
||||||
|
|
||||||
|
|
||||||
ret = _krb5_pk_octetstring2key(context,
|
ret = _krb5_pk_octetstring2key(context,
|
||||||
etype,
|
etype,
|
||||||
dh->data, dh->length,
|
dh->data, dh->length,
|
||||||
@@ -54,11 +55,107 @@ test_dh2key(krb5_context context,
|
|||||||
k_n,
|
k_n,
|
||||||
&key);
|
&key);
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
krb5_err(context, 1, ret, "_krb5_pk_octetstring2key");
|
krb5_err(context, 1, ret, "_krb5_pk_octetstring2key: %d", i);
|
||||||
|
|
||||||
|
if (key.keyvalue.length != result->length ||
|
||||||
|
memcmp(key.keyvalue.data, result->data, result->length) != 0)
|
||||||
|
krb5_errx(context, 1, "resulting key wrong: %d", i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct {
|
||||||
|
krb5_enctype type;
|
||||||
|
krb5_data X;
|
||||||
|
krb5_data key;
|
||||||
|
} tests[] = {
|
||||||
|
/* 0 */
|
||||||
|
{
|
||||||
|
ETYPE_AES256_CTS_HMAC_SHA1_96,
|
||||||
|
{
|
||||||
|
256,
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
32,
|
||||||
|
"\x5e\xe5\x0d\x67\x5c\x80\x9f\xe5\x9e\x4a\x77\x62\xc5\x4b\x65\x83"
|
||||||
|
"\x75\x47\xea\xfb\x15\x9b\xd8\xcd\xc7\x5f\xfc\xa5\x91\x1e\x4c\x41"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/* 1 */
|
||||||
|
{
|
||||||
|
ETYPE_AES256_CTS_HMAC_SHA1_96,
|
||||||
|
{
|
||||||
|
128,
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
32,
|
||||||
|
"\xac\xf7\x70\x7c\x08\x97\x3d\xdf\xdb\x27\xcd\x36\x14\x42\xcc\xfb"
|
||||||
|
"\xa3\x55\xc8\x88\x4c\xb4\x72\xf3\x7d\xa6\x36\xd0\x7d\x56\x78\x7e"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/* 2 */
|
||||||
|
{
|
||||||
|
ETYPE_AES256_CTS_HMAC_SHA1_96,
|
||||||
|
{
|
||||||
|
128,
|
||||||
|
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
|
||||||
|
"\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e"
|
||||||
|
"\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d"
|
||||||
|
"\x0e\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c"
|
||||||
|
"\x0d\x0e\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b"
|
||||||
|
"\x0c\x0d\x0e\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a"
|
||||||
|
"\x0b\x0c\x0d\x0e\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09"
|
||||||
|
"\x0a\x0b\x0c\x0d\x0e\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
32,
|
||||||
|
"\xc4\x42\xda\x58\x5f\xcb\x80\xe4\x3b\x47\x94\x6f\x25\x40\x93\xe3"
|
||||||
|
"\x73\x29\xd9\x90\x01\x38\x0d\xb7\x83\x71\xdb\x3a\xcf\x5c\x79\x7e"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/* 3 */
|
||||||
|
{
|
||||||
|
ETYPE_AES256_CTS_HMAC_SHA1_96,
|
||||||
|
{
|
||||||
|
77,
|
||||||
|
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
|
||||||
|
"\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e"
|
||||||
|
"\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d"
|
||||||
|
"\x0e\x0f\x10\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c"
|
||||||
|
"\x0d\x0e\x0f\x10\x00\x01\x02\x03"
|
||||||
|
"\x04\x05\x06\x07\x08"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
32,
|
||||||
|
"\x00\x53\x95\x3b\x84\xc8\x96\xf4\xeb\x38\x5c\x3f\x2e\x75\x1c\x4a"
|
||||||
|
"\x59\x0e\xd6\xff\xad\xca\x6f\xf6\x4f\x47\xeb\xeb\x8d\x78\x0f\xfc"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
static int version_flag = 0;
|
static int version_flag = 0;
|
||||||
static int help_flag = 0;
|
static int help_flag = 0;
|
||||||
@@ -80,6 +177,7 @@ usage (int ret)
|
|||||||
exit (ret);
|
exit (ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
@@ -87,11 +185,6 @@ main(int argc, char **argv)
|
|||||||
krb5_error_code ret;
|
krb5_error_code ret;
|
||||||
int i, optidx = 0;
|
int i, optidx = 0;
|
||||||
|
|
||||||
krb5_enctype enctypes[] = {
|
|
||||||
ETYPE_AES128_CTS_HMAC_SHA1_96,
|
|
||||||
ETYPE_AES256_CTS_HMAC_SHA1_96
|
|
||||||
};
|
|
||||||
|
|
||||||
setprogname(argv[0]);
|
setprogname(argv[0]);
|
||||||
|
|
||||||
if(getarg(args, sizeof(args) / sizeof(args[0]), argc, argv, &optidx))
|
if(getarg(args, sizeof(args) / sizeof(args[0]), argc, argv, &optidx))
|
||||||
@@ -112,9 +205,9 @@ main(int argc, char **argv)
|
|||||||
if (ret)
|
if (ret)
|
||||||
errx (1, "krb5_init_context failed: %d", ret);
|
errx (1, "krb5_init_context failed: %d", ret);
|
||||||
|
|
||||||
for (i = 0; i < sizeof(enctypes)/sizeof(enctypes[0]); i++) {
|
for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
|
||||||
krb5_data d = { 0, NULL };
|
test_dh2key(i, context, &tests[i].X, NULL, NULL,
|
||||||
test_dh2key(context, &d, NULL, NULL, enctypes[i]);
|
tests[i].type, &tests[i].key);
|
||||||
}
|
}
|
||||||
|
|
||||||
krb5_free_context(context);
|
krb5_free_context(context);
|
||||||
|
Reference in New Issue
Block a user