removed old code

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1276 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-03-08 04:03:27 +00:00
parent aecc37fca7
commit 89c747e774
3 changed files with 0 additions and 75 deletions

View File

@@ -31,21 +31,6 @@ krb5_mk_rep(krb5_context context,
if (ret)
return ret;
#if 0
len += 12; /* XXX */
ap.enc_part.cipher.length = len;
ap.enc_part.cipher.data = malloc(len);
memcpy(ap.enc_part.cipher.data, buf +sizeof(buf) - len, len);
memcpy(&key, (*auth_context)->key.contents.data, sizeof(key));
des_set_key (&key, schedule);
des_cbc_encrypt (ap.enc_part.cipher.data,
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);
free (ap.enc_part.cipher.data);