use krb5_encrypt

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1271 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-03-08 04:00:37 +00:00
parent 970c998f48
commit 2c974bc55b
2 changed files with 42 additions and 13 deletions

View File

@@ -22,10 +22,16 @@ krb5_mk_rep(krb5_context context,
body.subkey = NULL;
body.seq_number = NULL;
ap.enc_part.etype = 1; /* XXX */
ap.enc_part.etype = (*auth_context)->key.keytype;
ap.enc_part.kvno = NULL;
len = encode_EncAPRepPart (buf + sizeof(buf) - 1,
sizeof(buf), &body);
ret = krb5_encrypt (context, buf + sizeof(buf) - len, len,
&(*auth_context)->key, &ap.enc_part.cipher);
if (ret)
return ret;
#if 0
len += 12; /* XXX */
ap.enc_part.cipher.length = len;
ap.enc_part.cipher.data = malloc(len);
@@ -38,6 +44,7 @@ krb5_mk_rep(krb5_context context,
ap.enc_part.cipher.data,
ap.enc_part.cipher.length,
schedule, &key, DES_ENCRYPT);
#endif
len = encode_AP_REP (buf + sizeof(buf) - 1,
sizeof(buf), &ap);