comment on what to add

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24942 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-03-25 15:36:58 +00:00
parent 033c14110f
commit f4f623e7d8

View File

@@ -1284,13 +1284,16 @@ _kdc_pk_mk_pa_reply(krb5_context context,
if (rep.u.encKeyPack.length != size) if (rep.u.encKeyPack.length != size)
krb5_abortx(context, "Internal ASN.1 encoder error"); krb5_abortx(context, "Internal ASN.1 encoder error");
/* XXX */ /* XXX KRB-FX-CF2 */
ret = krb5_generate_random_keyblock(context, sessionetype, ret = krb5_generate_random_keyblock(context, sessionetype,
sessionkey); sessionkey);
if (ret) { if (ret) {
free_PA_PK_AS_REP(&rep); free_PA_PK_AS_REP(&rep);
goto out; goto out;
} }
/* XXX Add PA-PKINIT-KX */
} }
ASN1_MALLOC_ENCODE(PA_PK_AS_REP, buf, len, &rep, &size, ret); ASN1_MALLOC_ENCODE(PA_PK_AS_REP, buf, len, &rep, &size, ret);