2 * Copyright (c) 2006 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 KTH nor the names of its contributors may be
18 * used to endorse or promote products derived from this software without
19 * specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY
22 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include "gsskrb5_locl.h"
41 struct range tests
[] = {
50 test_range(const struct range
*r
, int integ
,
51 krb5_context context
, krb5_crypto crypto
)
55 struct gsskrb5_ctx ctx
;
57 for (size
= r
->lower
; size
< r
->upper
; size
++) {
61 OM_uint32 max_wrap_size
;
65 ret
= _gssapi_wrap_size_cfx(&minor
,
73 krb5_errx(context
, 1, "_gsskrb5cfx_max_wrap_length_cfx: %d", ret
);
74 if (max_wrap_size
== 0)
77 ret
= _gsskrb5cfx_wrap_length_cfx(context
,
82 &rsize
, &cksumsize
, &padsize
);
84 krb5_errx(context
, 1, "_gsskrb5cfx_wrap_length_cfx: %d", ret
);
88 "size (%d) < rsize (%d) for max_wrap_size %d",
89 (int)size
, (int)rsize
, (int)max_wrap_size
);
94 test_special(krb5_context context
, krb5_crypto crypto
,
95 int integ
, size_t testsize
)
99 OM_uint32 max_wrap_size
;
102 struct gsskrb5_ctx ctx
;
107 ret
= _gssapi_wrap_size_cfx(&minor
,
115 krb5_errx(context
, 1, "_gsskrb5cfx_max_wrap_length_cfx: %d", ret
);
117 krb5_errx(context
, 1, "_gsskrb5cfx_max_wrap_length_cfx: %d", ret
);
119 ret
= _gsskrb5cfx_wrap_length_cfx(context
,
124 &rsize
, &cksumsize
, &padsize
);
126 krb5_errx(context
, 1, "_gsskrb5cfx_wrap_length_cfx: %d", ret
);
128 if (testsize
< rsize
)
129 krb5_errx(context
, 1,
130 "testsize (%d) < rsize (%d) for max_wrap_size %d",
131 (int)testsize
, (int)rsize
, (int)max_wrap_size
);
138 main(int argc
, char **argv
)
140 krb5_keyblock keyblock
;
142 krb5_context context
;
146 ret
= krb5_init_context(&context
);
148 errx(1, "krb5_context_init: %d", ret
);
150 ret
= krb5_generate_random_keyblock(context
,
151 ENCTYPE_AES256_CTS_HMAC_SHA1_96
,
154 krb5_err(context
, 1, ret
, "krb5_generate_random_keyblock");
156 ret
= krb5_crypto_init(context
, &keyblock
, 0, &crypto
);
158 krb5_err(context
, 1, ret
, "krb5_crypto_init");
160 test_special(context
, crypto
, 1, 60);
161 test_special(context
, crypto
, 0, 60);
163 for (i
= 0; i
< sizeof(tests
)/sizeof(tests
[0]); i
++) {
164 test_range(&tests
[i
], 1, context
, crypto
);
165 test_range(&tests
[i
], 0, context
, crypto
);
168 krb5_free_keyblock_contents(context
, &keyblock
);
169 krb5_crypto_destroy(context
, crypto
);
170 krb5_free_context(context
);