2 * Copyright (c) 1997 - 2007 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 "krb5_locl.h"
37 * Reset the (potentially uninitalized) krb5_data structure.
39 * @param p krb5_data to reset.
44 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
45 krb5_data_zero(krb5_data
*p
)
52 * Free the content of krb5_data structure, its ok to free a zeroed
53 * structure (with memset() or krb5_data_zero()). When done, the
54 * structure will be zeroed. The same function is called
55 * krb5_free_data_contents() in MIT Kerberos.
57 * @param p krb5_data to free.
62 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
63 krb5_data_free(krb5_data
*p
)
70 * Free krb5_data (and its content).
72 * @param context Kerberos 5 context.
73 * @param p krb5_data to free.
78 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
79 krb5_free_data(krb5_context context
,
87 * Allocate data of and krb5_data.
89 * @param p krb5_data to allocate.
90 * @param len size to allocate.
92 * @return Returns 0 to indicate success. Otherwise an kerberos et
93 * error code is returned.
98 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
99 krb5_data_alloc(krb5_data
*p
, int len
)
101 p
->data
= malloc(len
);
102 if(len
&& p
->data
== NULL
)
109 * Grow (or shrink) the content of krb5_data to a new size.
111 * @param p krb5_data to free.
112 * @param len new size.
114 * @return Returns 0 to indicate success. Otherwise an kerberos et
115 * error code is returned.
120 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
121 krb5_data_realloc(krb5_data
*p
, int len
)
124 tmp
= realloc(p
->data
, len
);
133 * Copy the data of len into the krb5_data.
135 * @param p krb5_data to copy into.
136 * @param data data to copy..
137 * @param len new size.
139 * @return Returns 0 to indicate success. Otherwise an kerberos et
140 * error code is returned.
145 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
146 krb5_data_copy(krb5_data
*p
, const void *data
, size_t len
)
149 if(krb5_data_alloc(p
, len
))
151 memmove(p
->data
, data
, len
);
159 * Copy the data into a newly allocated krb5_data.
161 * @param context Kerberos 5 context.
162 * @param indata the krb5_data data to copy
163 * @param outdata new krb5_date to copy too. Free with krb5_free_data().
165 * @return Returns 0 to indicate success. Otherwise an kerberos et
166 * error code is returned.
171 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
172 krb5_copy_data(krb5_context context
,
173 const krb5_data
*indata
,
179 return krb5_enomem(context
);
180 ret
= der_copy_octet_string(indata
, *outdata
);
182 krb5_clear_error_message (context
);
192 * @param data1 krb5_data to compare
193 * @param data2 krb5_data to compare
195 * @return return the same way as memcmp(), useful when sorting.
200 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
201 krb5_data_cmp(const krb5_data
*data1
, const krb5_data
*data2
)
203 if (data1
->length
!= data2
->length
)
204 return data1
->length
- data2
->length
;
205 return memcmp(data1
->data
, data2
->data
, data1
->length
);
209 * Compare to data not exposing timing information from the checksum data
211 * @param data1 krb5_data to compare
212 * @param data2 krb5_data to compare
214 * @return returns zero for same data, otherwise non zero.
219 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
220 krb5_data_ct_cmp(const krb5_data
*data1
, const krb5_data
*data2
)
222 if (data1
->length
!= data2
->length
)
223 return data1
->length
- data2
->length
;
224 return ct_memcmp(data1
->data
, data2
->data
, data1
->length
);