]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
pull up r23629 from trunk
authorTom Yu <tlyu@mit.edu>
Tue, 12 Jan 2010 05:03:44 +0000 (05:03 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 12 Jan 2010 05:03:44 +0000 (05:03 +0000)
 ------------------------------------------------------------------------
 r23629 | ghudson | 2010-01-11 20:07:48 -0500 (Mon, 11 Jan 2010) | 9 lines

 ticket: 6633
 subject: Use keyed checksum type for DES FAST
 target_version: 1.7
 tags: pullup

 DES enctypes have unkeyed mandatory-to-implement checksums.  Since
 FAST requires a keyed checksum, we must pick something else in that
 case.

ticket: 6633
version_fixed: 1.8
status: resolved

git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-8@23648 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/krb/fast.c

index 279165124f8218651fb4937fc720cdefcb56832a..2ebbdcfcbb8c5d2b1c36127fc81071abc237fb45 100644 (file)
@@ -238,6 +238,9 @@ krb5int_fast_prep_req(krb5_context context,
     if (retval == 0)
         retval = krb5int_c_mandatory_cksumtype(context, state->armor_key->enctype,
                                                &cksumtype);
+    /* DES enctypes have unkeyed mandatory checksums; need a keyed one. */
+    if (retval == 0 && !krb5_c_is_keyed_cksum(cksumtype))
+        cksumtype = CKSUMTYPE_RSA_MD5_DES;
     if (retval ==0)
         retval = krb5_c_make_checksum(context, cksumtype, state->armor_key,
                                       KRB5_KEYUSAGE_FAST_REQ_CHKSUM, to_be_checksummed,