+Thu Nov 10 23:56:43 1994 Theodore Y. Ts'o (tytso@dcl)
+
+ * rd_rep.c (krb5_rd_rep): Set the encryption type in
+ the subkey keyblock to be the encryption type used to
+ encrypt the rd_rep message.
+
+ * decrypt_tk.c (krb5_decrypt_tkt_part): Set the encryption type in
+ the session keyblock to be the encryption type used to
+ encrypt the ticket.
+
+ * rd_req_dec.c (decrypt_authenticator): Set the encryption type in
+ the subkey keyblock to be the encryption type used to
+ encrypt the authenticator.
+
Tue Nov 8 17:09:48 1994 Theodore Y. Ts'o (tytso@dcl)
* in_tkt_pwd.c (pwd_keyproc): Use the documented interface for
/* now decode the decrypted stuff */
retval = decode_krb5_ap_rep_enc_part(&scratch, repl);
clean_scratch();
+ (*repl)->subkey->etype = reply->enc_part.etype;
return retval;
}
/* now decode the decrypted stuff */
if (!(retval = decode_krb5_authenticator(&scratch, &local_auth))) {
*authpp = local_auth;
+ local_auth->subkey->etype = request->authenticator.etype;
}
clean_scratch();
return retval;