Update to use new decode/encode syntax.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1952 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-07-01 23:54:55 +00:00
parent 372881f5ef
commit 405d2be7c4
14 changed files with 195 additions and 186 deletions

View File

@@ -32,15 +32,13 @@ krb5_mk_rep(krb5_context context,
ap.enc_part.etype = (*auth_context)->key.keytype;
ap.enc_part.kvno = NULL;
len = encode_EncAPRepPart (buf + sizeof(buf) - 1,
sizeof(buf), &body);
encode_EncAPRepPart (buf + sizeof(buf) - 1, sizeof(buf), &body, &len);
ret = krb5_encrypt (context, buf + sizeof(buf) - len, len,
&(*auth_context)->key, &ap.enc_part.cipher);
if (ret)
return ret;
len = encode_AP_REP (buf + sizeof(buf) - 1,
sizeof(buf), &ap);
encode_AP_REP (buf + sizeof(buf) - 1, sizeof(buf), &ap, &len);
free (ap.enc_part.cipher.data);
outbuf->length = len;
outbuf->data = malloc(len);