Blame SOURCES/Use-SHA-256-instead-of-MD5-for-audit-ticket-IDs.patch

749169
From c931cdfaa3539e42cfc57caca6b67fe9a03227e2 Mon Sep 17 00:00:00 2001
665228
From: Greg Hudson <ghudson@mit.edu>
665228
Date: Tue, 10 Jul 2018 16:17:15 -0400
665228
Subject: [PATCH] Use SHA-256 instead of MD5 for audit ticket IDs
665228
665228
ticket: 8711 (new)
665228
(cherry picked from commit c1e1bfa26bd2f045e88e6013c500fca9428c98f3)
665228
---
665228
 src/kdc/kdc_audit.c | 21 ++++++++++-----------
665228
 1 file changed, 10 insertions(+), 11 deletions(-)
665228
665228
diff --git a/src/kdc/kdc_audit.c b/src/kdc/kdc_audit.c
665228
index c9a7f9f9d..f40913dc8 100644
665228
--- a/src/kdc/kdc_audit.c
665228
+++ b/src/kdc/kdc_audit.c
665228
@@ -146,7 +146,7 @@ kau_make_tkt_id(krb5_context context,
665228
 {
665228
     krb5_error_code ret = 0;
665228
     char *hash = NULL, *ptr;
665228
-    krb5_checksum cksum;
665228
+    uint8_t hashbytes[K5_SHA256_HASHLEN];
665228
     unsigned int i;
665228
 
665228
     *out = NULL;
665228
@@ -154,19 +154,18 @@ kau_make_tkt_id(krb5_context context,
665228
     if (ticket == NULL)
665228
         return EINVAL;
665228
 
665228
-    ret = krb5_c_make_checksum(context, CKSUMTYPE_RSA_MD5, NULL, 0,
665228
-                               &ticket->enc_part.ciphertext, &cksum);
665228
+    ret = k5_sha256(&ticket->enc_part.ciphertext, 1, hashbytes);
665228
     if (ret)
665228
         return ret;
665228
 
665228
-    hash = k5alloc(cksum.length * 2 + 1, &ret;;
665228
-    if (hash != NULL) {
665228
-        for (i = 0, ptr = hash; i < cksum.length; i++, ptr += 2)
665228
-            snprintf(ptr, 3, "%02X", cksum.contents[i]);
665228
-        *ptr = '\0';
665228
-        *out = hash;
665228
-    }
665228
-    krb5_free_checksum_contents(context, &cksum);
665228
+    hash = k5alloc(sizeof(hashbytes) * 2 + 1, &ret;;
665228
+    if (hash == NULL)
665228
+        return ret;
665228
+
665228
+    for (i = 0, ptr = hash; i < sizeof(hashbytes); i++, ptr += 2)
665228
+        snprintf(ptr, 3, "%02X", hashbytes[i]);
665228
+    *ptr = '\0';
665228
+    *out = hash;
665228
 
665228
     return 0;
665228
 }