Codebase list globus-gssapi-gsi / fbf5d7a
backward compatible mic Mattias Ellert 7 years ago
3 changed file(s) with 42 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 globus-gssapi-gsi (12.5-2) unstable; urgency=medium
1
2 * Use backward compatible mic by default for now
3
4 -- Mattias Ellert <mattias.ellert@physics.uu.se> Fri, 16 Sep 2016 18:23:45 +0200
5
06 globus-gssapi-gsi (12.5-1) unstable; urgency=medium
17
28 * GT6 update
0 diff -ur globus_gssapi_gsi-12.5.orig/library/gsi.conf globus_gssapi_gsi-12.5/library/gsi.conf
1 --- globus_gssapi_gsi-12.5.orig/library/gsi.conf 2016-09-06 20:38:37.023175136 +0200
2 +++ globus_gssapi_gsi-12.5/library/gsi.conf 2016-09-16 18:05:13.779758760 +0200
3 @@ -38,4 +38,4 @@
4 # impliementation, which inspects internal OpenSSL structures. Otherwise,
5 # use keying material and sequence counters in the GSSAPI structures only.
6 # The true setting is only available for OpenSSL < 1.1.0
7 -BACKWARD_COMPATIBLE_MIC=false
8 +BACKWARD_COMPATIBLE_MIC=true
9 diff -ur globus_gssapi_gsi-12.5.orig/library/module.c globus_gssapi_gsi-12.5/library/module.c
10 --- globus_gssapi_gsi-12.5.orig/library/module.c 2016-09-06 20:38:37.025175136 +0200
11 +++ globus_gssapi_gsi-12.5/library/module.c 2016-09-16 18:04:00.643576559 +0200
12 @@ -434,15 +434,15 @@
13 }
14 else if (OPENSSL_VERSION_NUMBER < 0x10100000L)
15 {
16 - globus_i_backward_compatible_mic = GLOBUS_FALSE;
17 + globus_i_backward_compatible_mic = GLOBUS_TRUE;
18 tmp_string = globus_module_getenv(
19 "GLOBUS_GSSAPI_BACKWARD_COMPATIBLE_MIC");
20 if (tmp_string != NULL
21 - && (strcasecmp(tmp_string, "true") == 0 ||
22 - strcasecmp(tmp_string, "yes") == 0 ||
23 - strcmp(tmp_string, "1") == 0))
24 + && (strcasecmp(tmp_string, "false") == 0 ||
25 + strcasecmp(tmp_string, "no") == 0 ||
26 + strcmp(tmp_string, "0") == 0))
27 {
28 - globus_i_backward_compatible_mic = GLOBUS_TRUE;
29 + globus_i_backward_compatible_mic = GLOBUS_FALSE;
30 }
31 }
32
0 # Use backward compatible mic by default for now
1 # See; https://github.com/globus/gsi-openssh/issues/13
2 globus-gssapi-gsi-compat-mic.patch