diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-08-18 12:08:37 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-08-21 17:50:49 +1000 |
commit | 29ef1b2325ac5b80a52abfbd30346636695f4247 (patch) | |
tree | 879068a26b8eff3429d69f04844c56b3f4306938 /source4/auth/kerberos | |
parent | 9b261a1211de2bfef22af64d4717b44c5ed2bfb8 (diff) | |
download | samba-29ef1b2325ac5b80a52abfbd30346636695f4247.tar.gz samba-29ef1b2325ac5b80a52abfbd30346636695f4247.tar.bz2 samba-29ef1b2325ac5b80a52abfbd30346636695f4247.zip |
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
Diffstat (limited to 'source4/auth/kerberos')
-rw-r--r-- | source4/auth/kerberos/kerberos_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/kerberos/kerberos_util.c b/source4/auth/kerberos/kerberos_util.c index 0567565d33..3f8b593e75 100644 --- a/source4/auth/kerberos/kerberos_util.c +++ b/source4/auth/kerberos/kerberos_util.c @@ -184,7 +184,7 @@ static krb5_error_code salt_principal_from_credentials(TALLOC_CTX *parent_ctx, return EINVAL; } ret = krb5_keyblock_init(smb_krb5_context->krb5_context, - ETYPE_ARCFOUR_HMAC_MD5, + ENCTYPE_ARCFOUR_HMAC, mach_pwd->hash, sizeof(mach_pwd->hash), &keyblock); |