From 29ef1b2325ac5b80a52abfbd30346636695f4247 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 18 Aug 2009 12:08:37 +1000 Subject: s4:kerberos Use MIT compatible names for these enc types This is a small start on (ie, the only trivial part of) the work shown in: http://k5wiki.kerberos.org/wiki/Projects/Samba4_Port#Samba.27s_use_of_Heimdal_symbols.2C_with_MIT_differences (a table of all Kerberos symbols used in Samba4, and notes on where they differ from those provided with MIT Kerberos) Andrew Bartlett --- source4/kdc/hdb-samba4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/kdc/hdb-samba4.c') diff --git a/source4/kdc/hdb-samba4.c b/source4/kdc/hdb-samba4.c index e39366c407..d7822540cf 100644 --- a/source4/kdc/hdb-samba4.c +++ b/source4/kdc/hdb-samba4.c @@ -333,7 +333,7 @@ static krb5_error_code hdb_samba4_message2entry_keys(krb5_context context, key.salt = NULL; /* No salt for this enc type */ ret = krb5_keyblock_init(context, - ENCTYPE_ARCFOUR_HMAC_MD5, + ENCTYPE_ARCFOUR_HMAC, hash->hash, sizeof(hash->hash), &key.key); if (ret) { @@ -839,7 +839,7 @@ static krb5_error_code hdb_samba4_trust_message2entry(krb5_context context, HDB } ret = krb5_keyblock_init(context, - ENCTYPE_ARCFOUR_HMAC_MD5, + ENCTYPE_ARCFOUR_HMAC, password_hash.hash, sizeof(password_hash.hash), &key.key); -- cgit