diff options
Diffstat (limited to 'ChangeLog.gssapi')
-rw-r--r-- | ChangeLog.gssapi | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/ChangeLog.gssapi b/ChangeLog.gssapi new file mode 100644 index 000000000..5c110d0d8 --- /dev/null +++ b/ChangeLog.gssapi | |||
@@ -0,0 +1,75 @@ | |||
1 | 20080404 | ||
2 | - [ gss-serv.c ] | ||
3 | Add code to actually implement GSSAPIStrictAcceptCheck, which had somehow | ||
4 | been omitted from a previous version of this patch. Reported by Borislav | ||
5 | Stoichkov | ||
6 | |||
7 | 20070317 | ||
8 | - [ gss-serv-krb5.c ] | ||
9 | Remove C99ism, where new_ccname was being declared in the middle of a | ||
10 | function | ||
11 | |||
12 | 20061220 | ||
13 | - [ servconf.c ] | ||
14 | Make default for GSSAPIStrictAcceptorCheck be Yes, to match previous, and | ||
15 | documented, behaviour. Reported by Dan Watson. | ||
16 | |||
17 | 20060910 | ||
18 | - [ gss-genr.c kexgssc.c kexgsss.c kex.h monitor.c sshconnect2.c sshd.c | ||
19 | ssh-gss.h ] | ||
20 | add support for gss-group14-sha1 key exchange mechanisms | ||
21 | - [ gss-serv.c servconf.c servconf.h sshd_config sshd_config.5 ] | ||
22 | Add GSSAPIStrictAcceptorCheck option to allow the disabling of | ||
23 | acceptor principal checking on multi-homed machines. | ||
24 | <Bugzilla #928> | ||
25 | - [ sshd_config ssh_config ] | ||
26 | Add settings for GSSAPIKeyExchange and GSSAPITrustDNS to the sample | ||
27 | configuration files | ||
28 | - [ kexgss.c kegsss.c sshconnect2.c sshd.c ] | ||
29 | Code cleanup. Replace strlen/xmalloc/snprintf sequences with xasprintf() | ||
30 | Limit length of error messages displayed by client | ||
31 | |||
32 | 20060909 | ||
33 | - [ gss-genr.c gss-serv.c ] | ||
34 | move ssh_gssapi_acquire_cred() and ssh_gssapi_server_ctx to be server | ||
35 | only, where they belong | ||
36 | <Bugzilla #1225> | ||
37 | |||
38 | 20060829 | ||
39 | - [ gss-serv-krb5.c ] | ||
40 | Fix CCAPI credentials cache name when creating KRB5CCNAME environment | ||
41 | variable | ||
42 | |||
43 | 20060828 | ||
44 | - [ gss-genr.c ] | ||
45 | Avoid Heimdal context freeing problem | ||
46 | <Fixed upstream 20060829> | ||
47 | |||
48 | 20060818 | ||
49 | - [ gss-genr.c ssh-gss.h sshconnect2.c ] | ||
50 | Make sure that SPENGO is disabled | ||
51 | <Bugzilla #1218 - Fixed upstream 20060818> | ||
52 | |||
53 | 20060421 | ||
54 | - [ gssgenr.c, sshconnect2.c ] | ||
55 | a few type changes (signed versus unsigned, int versus size_t) to | ||
56 | fix compiler errors/warnings | ||
57 | (from jbasney AT ncsa.uiuc.edu) | ||
58 | - [ kexgssc.c, sshconnect2.c ] | ||
59 | fix uninitialized variable warnings | ||
60 | (from jbasney AT ncsa.uiuc.edu) | ||
61 | - [ gssgenr.c ] | ||
62 | pass oid to gss_display_status (helpful when using GSSAPI mechglue) | ||
63 | (from jbasney AT ncsa.uiuc.edu) | ||
64 | <Bugzilla #1220 > | ||
65 | - [ gss-serv-krb5.c ] | ||
66 | #ifdef HAVE_GSSAPI_KRB5 should be #ifdef HAVE_GSSAPI_KRB5_H | ||
67 | (from jbasney AT ncsa.uiuc.edu) | ||
68 | <Fixed upstream 20060304> | ||
69 | - [ readconf.c, readconf.h, ssh_config.5, sshconnect2.c | ||
70 | add client-side GssapiKeyExchange option | ||
71 | (from jbasney AT ncsa.uiuc.edu) | ||
72 | - [ sshconnect2.c ] | ||
73 | add support for GssapiTrustDns option for gssapi-with-mic | ||
74 | (from jbasney AT ncsa.uiuc.edu) | ||
75 | <gssapi-with-mic support is Bugzilla #1008> | ||