2 * Copyright (c) 1997 - 2000 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "gssapi_locl.h"
38 OM_uint32
gss_wrap_size_limit (
39 OM_uint32
* minor_status
,
40 const gss_ctx_id_t context_handle
,
43 OM_uint32 req_output_size
,
44 OM_uint32
* max_input_size
47 size_t len
, total_len
, padlength
;
48 padlength
= 8 - (req_output_size
% 8);
49 len
= req_output_size
+ 8 + padlength
+ 22;
50 gssapi_krb5_encap_length(len
, &len
, &total_len
);
51 *max_input_size
= (OM_uint32
)total_len
;
52 return GSS_S_COMPLETE
;
56 (OM_uint32
* minor_status
,
57 const gss_ctx_id_t context_handle
,
60 const gss_buffer_t input_message_buffer
,
62 gss_buffer_t output_message_buffer
68 des_key_schedule schedule
;
73 size_t len
, total_len
, padlength
;
75 padlength
= 8 - (input_message_buffer
->length
% 8);
76 len
= input_message_buffer
->length
+ 8 + padlength
+ 22;
77 gssapi_krb5_encap_length (len
, &len
, &total_len
);
79 output_message_buffer
->length
= total_len
;
80 output_message_buffer
->value
= malloc (total_len
);
81 if (output_message_buffer
->value
== NULL
)
84 p
= gssapi_krb5_make_header(output_message_buffer
->value
,
90 memcpy (p
, "\x00\x00", 2);
94 memcpy (p
, "\x00\x00", 2);
96 memcpy (p
, "\xff\xff", 2);
99 memcpy (p
, "\xff\xff", 2);
106 /* confounder + data + pad */
107 des_new_random_key((des_cblock
*)p
);
108 memcpy (p
+ 8, input_message_buffer
->value
,
109 input_message_buffer
->length
);
110 memset (p
+ 8 + input_message_buffer
->length
, padlength
, padlength
);
114 MD5Update (&md5
, p
- 24, 8);
115 MD5Update (&md5
, p
, input_message_buffer
->length
+ padlength
+ 8);
116 MD5Final (hash
, &md5
);
118 memset (&zero
, 0, sizeof(zero
));
119 gss_krb5_getsomekey(context_handle
, &key
);
120 des_set_key (&key
, schedule
);
121 des_cbc_cksum ((const void *)hash
, (void *)hash
, sizeof(hash
),
123 memcpy (p
- 8, hash
, 8);
125 /* sequence number */
126 krb5_auth_getlocalseqnumber (gssapi_krb5_context
,
127 context_handle
->auth_context
,
131 p
[0] = (seq_number
>> 0) & 0xFF;
132 p
[1] = (seq_number
>> 8) & 0xFF;
133 p
[2] = (seq_number
>> 16) & 0xFF;
134 p
[3] = (seq_number
>> 24) & 0xFF;
136 (context_handle
->more_flags
& LOCAL
) ? 0 : 0xFF,
139 des_set_key (&key
, schedule
);
140 des_cbc_encrypt ((const void *)p
, (void *)p
, 8,
141 schedule
, (des_cblock
*)(p
+ 8), DES_ENCRYPT
);
143 krb5_auth_setlocalseqnumber (gssapi_krb5_context
,
144 context_handle
->auth_context
,
147 /* encrypt the data */
151 gss_krb5_getsomekey(context_handle
, &key
);
152 for (i
= 0; i
< sizeof(key
); ++i
)
154 des_set_key (&key
, schedule
);
155 memset (&zero
, 0, sizeof(zero
));
156 des_cbc_encrypt ((const void *)p
,
158 8 + input_message_buffer
->length
+ padlength
,
163 memset (key
, 0, sizeof(key
));
164 memset (schedule
, 0, sizeof(schedule
));
166 if(conf_state
!= NULL
)
167 *conf_state
= conf_req_flag
;
168 return GSS_S_COMPLETE
;