diff --git a/lib/gssapi/ChangeLog b/lib/gssapi/ChangeLog index 7c95cc0e8..bb2829957 100644 --- a/lib/gssapi/ChangeLog +++ b/lib/gssapi/ChangeLog @@ -1,5 +1,14 @@ 2006-12-19 Love Hörnquist Åstrand + * Makefile.am: Move get and verify mic to the same file (crypto.c) + since they share code. + + * ntlm/crypto.c: Move get and verify mic to the same file since + they share code, implement NTLM v1 and dummy signatures. + + * ntlm/init_sec_context.c: pass on GSS_C_CONF_FLAG and + GSS_C_INTEG_FLAG, save the session master key + * spnego/accept_sec_context.c: try using gss_accept_sec_context() on the opportunistic token instead of guessing the acceptor name and do gss_acquire_cred, this make SPNEGO work like before. diff --git a/lib/ntlm/ChangeLog b/lib/ntlm/ChangeLog index 7ee1ada14..25c3211da 100644 --- a/lib/ntlm/ChangeLog +++ b/lib/ntlm/ChangeLog @@ -1,5 +1,10 @@ -2006-12-18 Love Hörnquist Åstrand +2006-12-19 Love Hörnquist Åstrand + * ntlm.c (heim_ntlm_build_ntlm1_master): return session master + key. + +2006-12-18 Love Hörnquist Åstrand + * ntlm.c (heim_ntlm_build_ntlm1_master): calculate the ntlm version 1 "master" key.