remove unused type
[Samba.git] / lib / gssapi / krb5 / test_cfx.c
blob698f459ebc9b593ae7d3302b8be3625993933027
1 /*
2 * Copyright (c) 2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
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"
36 RCSID("$Id$");
38 struct range {
39 size_t lower;
40 size_t upper;
43 struct range tests[] = {
44 { 0, 1040 },
45 { 2040, 2080 },
46 { 4080, 5000 },
47 { 8180, 8292 },
48 { 9980, 10010 }
51 static void
52 test_range(const struct range *r, int integ,
53 krb5_context context, krb5_crypto crypto)
55 krb5_error_code ret;
56 size_t size, rsize;
57 struct gsskrb5_ctx ctx;
59 for (size = r->lower; size < r->upper; size++) {
60 size_t cksumsize;
61 uint16_t padsize;
62 OM_uint32 minor;
63 OM_uint32 max_wrap_size;
65 ctx.crypto = crypto;
67 ret = _gssapi_wrap_size_cfx(&minor,
68 &ctx,
69 context,
70 integ,
72 size,
73 &max_wrap_size);
74 if (ret)
75 krb5_errx(context, 1, "_gsskrb5cfx_max_wrap_length_cfx: %d", ret);
76 if (max_wrap_size == 0)
77 continue;
79 ret = _gsskrb5cfx_wrap_length_cfx(context,
80 crypto,
81 integ,
82 max_wrap_size,
83 &rsize, &cksumsize, &padsize);
84 if (ret)
85 krb5_errx(context, 1, "_gsskrb5cfx_wrap_length_cfx: %d", ret);
87 if (size < rsize)
88 krb5_errx(context, 1,
89 "size (%d) < rsize (%d) for max_wrap_size %d",
90 (int)size, (int)rsize, (int)max_wrap_size);
94 static void
95 test_special(krb5_context context, krb5_crypto crypto,
96 int integ, size_t testsize)
98 krb5_error_code ret;
99 size_t rsize;
100 OM_uint32 max_wrap_size;
101 size_t cksumsize;
102 uint16_t padsize;
103 struct gsskrb5_ctx ctx;
104 OM_uint32 minor;
106 ctx.crypto = crypto;
108 ret = _gssapi_wrap_size_cfx(&minor,
109 &ctx,
110 context,
111 integ,
113 testsize,
114 &max_wrap_size);
115 if (ret)
116 krb5_errx(context, 1, "_gsskrb5cfx_max_wrap_length_cfx: %d", ret);
117 if (ret)
118 krb5_errx(context, 1, "_gsskrb5cfx_max_wrap_length_cfx: %d", ret);
120 ret = _gsskrb5cfx_wrap_length_cfx(context,
121 crypto,
122 integ,
123 max_wrap_size,
124 &rsize, &cksumsize, &padsize);
125 if (ret)
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;
141 krb5_error_code ret;
142 krb5_context context;
143 krb5_crypto crypto;
144 int i;
146 ret = krb5_init_context(&context);
147 if (ret)
148 errx(1, "krb5_context_init: %d", ret);
150 ret = krb5_generate_random_keyblock(context,
151 ENCTYPE_AES256_CTS_HMAC_SHA1_96,
152 &keyblock);
153 if (ret)
154 krb5_err(context, 1, ret, "krb5_generate_random_keyblock");
156 ret = krb5_crypto_init(context, &keyblock, 0, &crypto);
157 if (ret)
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);
172 return 0;