blob: 7e24ebf0a675b3709e715f82c9f44addd27ef623 [file] [log] [blame]
Paul Bakker8123e9d2011-01-06 15:37:30 +00001/**
2 * \file cipher.c
3 *
4 * \brief Generic cipher wrapper for PolarSSL
5 *
6 * \author Adriaan de Jong <dejong@fox-it.com>
7 *
8 * Copyright (C) 2006-2010, Brainspark B.V.
9 *
10 * This file is part of PolarSSL (http://www.polarssl.org)
11 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
12 *
13 * All rights reserved.
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, write to the Free Software Foundation, Inc.,
27 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 */
29
30#include "polarssl/config.h"
31
32#if defined(POLARSSL_CIPHER_C)
33
34#include "polarssl/cipher.h"
35#include "polarssl/cipher_wrap.h"
36
Paul Bakker8123e9d2011-01-06 15:37:30 +000037#include <stdlib.h>
38
Paul Bakkeraf5c85f2011-04-18 03:47:52 +000039#if defined _MSC_VER && !defined strcasecmp
40#define strcasecmp _stricmp
41#endif
42
Paul Bakker72f62662011-01-16 21:27:44 +000043static const int supported_ciphers[] = {
44
45#if defined(POLARSSL_AES_C)
46 POLARSSL_CIPHER_AES_128_CBC,
47 POLARSSL_CIPHER_AES_192_CBC,
48 POLARSSL_CIPHER_AES_256_CBC,
Paul Bakker343a8702011-06-09 14:27:58 +000049
50#if defined(POLARSSL_CIPHER_MODE_CFB)
51 POLARSSL_CIPHER_AES_128_CFB128,
52 POLARSSL_CIPHER_AES_192_CFB128,
53 POLARSSL_CIPHER_AES_256_CFB128,
54#endif /* defined(POLARSSL_CIPHER_MODE_CFB) */
55
56#if defined(POLARSSL_CIPHER_MODE_CTR)
57 POLARSSL_CIPHER_AES_128_CTR,
58 POLARSSL_CIPHER_AES_192_CTR,
59 POLARSSL_CIPHER_AES_256_CTR,
60#endif /* defined(POLARSSL_CIPHER_MODE_CTR) */
61
Paul Bakker72f62662011-01-16 21:27:44 +000062#endif /* defined(POLARSSL_AES_C) */
63
64#if defined(POLARSSL_CAMELLIA_C)
65 POLARSSL_CIPHER_CAMELLIA_128_CBC,
66 POLARSSL_CIPHER_CAMELLIA_192_CBC,
67 POLARSSL_CIPHER_CAMELLIA_256_CBC,
Paul Bakker343a8702011-06-09 14:27:58 +000068
69#if defined(POLARSSL_CIPHER_MODE_CFB)
70 POLARSSL_CIPHER_CAMELLIA_128_CFB128,
71 POLARSSL_CIPHER_CAMELLIA_192_CFB128,
72 POLARSSL_CIPHER_CAMELLIA_256_CFB128,
73#endif /* defined(POLARSSL_CIPHER_MODE_CFB) */
74
75#if defined(POLARSSL_CIPHER_MODE_CTR)
76 POLARSSL_CIPHER_CAMELLIA_128_CTR,
77 POLARSSL_CIPHER_CAMELLIA_192_CTR,
78 POLARSSL_CIPHER_CAMELLIA_256_CTR,
79#endif /* defined(POLARSSL_CIPHER_MODE_CTR) */
80
Paul Bakker72f62662011-01-16 21:27:44 +000081#endif /* defined(POLARSSL_CAMELLIA_C) */
82
83#if defined(POLARSSL_DES_C)
84 POLARSSL_CIPHER_DES_CBC,
85 POLARSSL_CIPHER_DES_EDE_CBC,
86 POLARSSL_CIPHER_DES_EDE3_CBC,
87#endif /* defined(POLARSSL_DES_C) */
88
89 0
90};
91
92const int *cipher_list( void )
93{
94 return supported_ciphers;
95}
96
Paul Bakker8123e9d2011-01-06 15:37:30 +000097const cipher_info_t *cipher_info_from_type( cipher_type_t cipher_type )
98{
99 /* Find static cipher information */
100 switch ( cipher_type )
101 {
102#if defined(POLARSSL_AES_C)
103 case POLARSSL_CIPHER_AES_128_CBC:
104 return &aes_128_cbc_info;
105 case POLARSSL_CIPHER_AES_192_CBC:
106 return &aes_192_cbc_info;
107 case POLARSSL_CIPHER_AES_256_CBC:
108 return &aes_256_cbc_info;
Paul Bakker343a8702011-06-09 14:27:58 +0000109
110#if defined(POLARSSL_CIPHER_MODE_CFB)
111 case POLARSSL_CIPHER_AES_128_CFB128:
112 return &aes_128_cfb128_info;
113 case POLARSSL_CIPHER_AES_192_CFB128:
114 return &aes_192_cfb128_info;
115 case POLARSSL_CIPHER_AES_256_CFB128:
116 return &aes_256_cfb128_info;
117#endif /* defined(POLARSSL_CIPHER_MODE_CFB) */
118
119#if defined(POLARSSL_CIPHER_MODE_CTR)
120 case POLARSSL_CIPHER_AES_128_CTR:
121 return &aes_128_ctr_info;
122 case POLARSSL_CIPHER_AES_192_CTR:
123 return &aes_192_ctr_info;
124 case POLARSSL_CIPHER_AES_256_CTR:
125 return &aes_256_ctr_info;
126#endif /* defined(POLARSSL_CIPHER_MODE_CTR) */
127
Paul Bakker8123e9d2011-01-06 15:37:30 +0000128#endif
129
130#if defined(POLARSSL_CAMELLIA_C)
131 case POLARSSL_CIPHER_CAMELLIA_128_CBC:
132 return &camellia_128_cbc_info;
133 case POLARSSL_CIPHER_CAMELLIA_192_CBC:
134 return &camellia_192_cbc_info;
135 case POLARSSL_CIPHER_CAMELLIA_256_CBC:
136 return &camellia_256_cbc_info;
Paul Bakker343a8702011-06-09 14:27:58 +0000137
138#if defined(POLARSSL_CIPHER_MODE_CFB)
139 case POLARSSL_CIPHER_CAMELLIA_128_CFB128:
140 return &camellia_128_cfb128_info;
141 case POLARSSL_CIPHER_CAMELLIA_192_CFB128:
142 return &camellia_192_cfb128_info;
143 case POLARSSL_CIPHER_CAMELLIA_256_CFB128:
144 return &camellia_256_cfb128_info;
145#endif /* defined(POLARSSL_CIPHER_MODE_CFB) */
146
147#if defined(POLARSSL_CIPHER_MODE_CTR)
148 case POLARSSL_CIPHER_CAMELLIA_128_CTR:
149 return &camellia_128_ctr_info;
150 case POLARSSL_CIPHER_CAMELLIA_192_CTR:
151 return &camellia_192_ctr_info;
152 case POLARSSL_CIPHER_CAMELLIA_256_CTR:
153 return &camellia_256_ctr_info;
154#endif /* defined(POLARSSL_CIPHER_MODE_CTR) */
155
Paul Bakker8123e9d2011-01-06 15:37:30 +0000156#endif
157
158#if defined(POLARSSL_DES_C)
159 case POLARSSL_CIPHER_DES_CBC:
160 return &des_cbc_info;
161 case POLARSSL_CIPHER_DES_EDE_CBC:
162 return &des_ede_cbc_info;
163 case POLARSSL_CIPHER_DES_EDE3_CBC:
164 return &des_ede3_cbc_info;
165#endif
166
167 default:
168 return NULL;
169 }
170}
171
172const cipher_info_t *cipher_info_from_string( const char *cipher_name )
173{
174 if( NULL == cipher_name )
175 return NULL;
176
Paul Bakker343a8702011-06-09 14:27:58 +0000177 /* Get the appropriate cipher information */
Paul Bakker8123e9d2011-01-06 15:37:30 +0000178#if defined(POLARSSL_CAMELLIA_C)
179 if( !strcasecmp( "CAMELLIA-128-CBC", cipher_name ) )
180 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_128_CBC );
181 if( !strcasecmp( "CAMELLIA-192-CBC", cipher_name ) )
182 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_192_CBC );
183 if( !strcasecmp( "CAMELLIA-256-CBC", cipher_name ) )
184 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_256_CBC );
Paul Bakker343a8702011-06-09 14:27:58 +0000185
186#if defined(POLARSSL_CIPHER_MODE_CFB)
187 if( !strcasecmp( "CAMELLIA-128-CFB128", cipher_name ) )
188 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_128_CFB128 );
189 if( !strcasecmp( "CAMELLIA-192-CFB128", cipher_name ) )
190 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_192_CFB128 );
191 if( !strcasecmp( "CAMELLIA-256-CFB128", cipher_name ) )
192 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_256_CFB128 );
193#endif /* defined(POLARSSL_CIPHER_MODE_CFB) */
194
195#if defined(POLARSSL_CIPHER_MODE_CTR)
196 if( !strcasecmp( "CAMELLIA-128-CTR", cipher_name ) )
197 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_128_CTR );
198 if( !strcasecmp( "CAMELLIA-192-CTR", cipher_name ) )
199 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_192_CTR );
200 if( !strcasecmp( "CAMELLIA-256-CTR", cipher_name ) )
201 return cipher_info_from_type( POLARSSL_CIPHER_CAMELLIA_256_CTR );
202#endif /* defined(POLARSSL_CIPHER_MODE_CTR) */
Paul Bakker8123e9d2011-01-06 15:37:30 +0000203#endif
Paul Bakker343a8702011-06-09 14:27:58 +0000204
Paul Bakker8123e9d2011-01-06 15:37:30 +0000205#if defined(POLARSSL_AES_C)
206 if( !strcasecmp( "AES-128-CBC", cipher_name ) )
207 return cipher_info_from_type( POLARSSL_CIPHER_AES_128_CBC );
208 if( !strcasecmp( "AES-192-CBC", cipher_name ) )
209 return cipher_info_from_type( POLARSSL_CIPHER_AES_192_CBC );
210 if( !strcasecmp( "AES-256-CBC", cipher_name ) )
211 return cipher_info_from_type( POLARSSL_CIPHER_AES_256_CBC );
Paul Bakker343a8702011-06-09 14:27:58 +0000212
213#if defined(POLARSSL_CIPHER_MODE_CFB)
214 if( !strcasecmp( "AES-128-CFB128", cipher_name ) )
215 return cipher_info_from_type( POLARSSL_CIPHER_AES_128_CFB128 );
216 if( !strcasecmp( "AES-192-CFB128", cipher_name ) )
217 return cipher_info_from_type( POLARSSL_CIPHER_AES_192_CFB128 );
218 if( !strcasecmp( "AES-256-CFB128", cipher_name ) )
219 return cipher_info_from_type( POLARSSL_CIPHER_AES_256_CFB128 );
220#endif /* defined(POLARSSL_CIPHER_MODE_CFB) */
221
222#if defined(POLARSSL_CIPHER_MODE_CTR)
223 if( !strcasecmp( "AES-128-CTR", cipher_name ) )
224 return cipher_info_from_type( POLARSSL_CIPHER_AES_128_CTR );
225 if( !strcasecmp( "AES-192-CTR", cipher_name ) )
226 return cipher_info_from_type( POLARSSL_CIPHER_AES_192_CTR );
227 if( !strcasecmp( "AES-256-CTR", cipher_name ) )
228 return cipher_info_from_type( POLARSSL_CIPHER_AES_256_CTR );
229#endif /* defined(POLARSSL_CIPHER_MODE_CTR) */
Paul Bakker8123e9d2011-01-06 15:37:30 +0000230#endif
Paul Bakker343a8702011-06-09 14:27:58 +0000231
Paul Bakker8123e9d2011-01-06 15:37:30 +0000232#if defined(POLARSSL_DES_C)
233 if( !strcasecmp( "DES-CBC", cipher_name ) )
234 return cipher_info_from_type( POLARSSL_CIPHER_DES_CBC );
235 if( !strcasecmp( "DES-EDE-CBC", cipher_name ) )
236 return cipher_info_from_type( POLARSSL_CIPHER_DES_EDE_CBC );
237 if( !strcasecmp( "DES-EDE3-CBC", cipher_name ) )
238 return cipher_info_from_type( POLARSSL_CIPHER_DES_EDE3_CBC );
239#endif
240 return NULL;
241}
242
243int cipher_init_ctx( cipher_context_t *ctx, const cipher_info_t *cipher_info )
244{
245 if( NULL == cipher_info || NULL == ctx )
246 return 1;
247
248 memset( ctx, 0, sizeof( ctx ) );
249
Paul Bakker343a8702011-06-09 14:27:58 +0000250 if( NULL == ( ctx->cipher_ctx = cipher_info->base->ctx_alloc_func() ) )
Paul Bakker8123e9d2011-01-06 15:37:30 +0000251 return 2;
252
253 ctx->cipher_info = cipher_info;
254
255 return 0;
256}
257
258int cipher_free_ctx( cipher_context_t *ctx )
259{
260 if( ctx == NULL || ctx->cipher_info == NULL )
261 return 1;
262
Paul Bakker343a8702011-06-09 14:27:58 +0000263 ctx->cipher_info->base->ctx_free_func( ctx->cipher_ctx );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000264
265 return 0;
266}
267
268int cipher_setkey( cipher_context_t *ctx, const unsigned char *key,
269 int key_length, const operation_t operation )
270{
271 if( NULL == ctx || NULL == ctx->cipher_info )
272 return 1;
273
274 ctx->key_length = key_length;
275 ctx->operation = operation;
276
Paul Bakker343a8702011-06-09 14:27:58 +0000277 /*
278 * For CFB128 and CTR mode always use the encryption key schedule
279 */
280 if( POLARSSL_ENCRYPT == operation ||
281 POLARSSL_MODE_CFB128 == ctx->cipher_info->mode ||
282 POLARSSL_MODE_CTR == ctx->cipher_info->mode )
283 {
284 return ctx->cipher_info->base->setkey_enc_func( ctx->cipher_ctx, key,
Paul Bakker8123e9d2011-01-06 15:37:30 +0000285 ctx->key_length );
Paul Bakker343a8702011-06-09 14:27:58 +0000286 }
Paul Bakker8123e9d2011-01-06 15:37:30 +0000287
Paul Bakker343a8702011-06-09 14:27:58 +0000288 if( POLARSSL_DECRYPT == operation )
289 return ctx->cipher_info->base->setkey_dec_func( ctx->cipher_ctx, key,
Paul Bakker8123e9d2011-01-06 15:37:30 +0000290 ctx->key_length );
291
292 return 1;
293}
294
295int cipher_reset( cipher_context_t *ctx, const unsigned char *iv )
296{
297 if( NULL == ctx || NULL == ctx->cipher_info || NULL == iv )
298 return 1;
299
300 ctx->unprocessed_len = 0;
301
302 memcpy( ctx->iv, iv, cipher_get_iv_size( ctx ) );
303
304 return 0;
305}
306
Paul Bakker23986e52011-04-24 08:57:21 +0000307int cipher_update( cipher_context_t *ctx, const unsigned char *input, size_t ilen,
308 unsigned char *output, size_t *olen )
Paul Bakker8123e9d2011-01-06 15:37:30 +0000309{
Paul Bakker23986e52011-04-24 08:57:21 +0000310 size_t copy_len = 0;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000311
Paul Bakkera885d682011-01-20 16:35:05 +0000312 if( NULL == ctx || NULL == ctx->cipher_info || NULL == olen ||
313 input == output )
314 {
Paul Bakker8123e9d2011-01-06 15:37:30 +0000315 return 1;
Paul Bakkera885d682011-01-20 16:35:05 +0000316 }
Paul Bakker8123e9d2011-01-06 15:37:30 +0000317
318 *olen = 0;
319
320 if( ctx->cipher_info->mode == POLARSSL_MODE_CBC )
321 {
322 /*
323 * If there is not enough data for a full block, cache it.
324 */
325 if( ( ctx->operation == POLARSSL_DECRYPT &&
326 ilen + ctx->unprocessed_len <= cipher_get_block_size( ctx ) ) ||
327 ( ctx->operation == POLARSSL_ENCRYPT &&
328 ilen + ctx->unprocessed_len < cipher_get_block_size( ctx ) ) )
329 {
330 memcpy( &( ctx->unprocessed_data[ctx->unprocessed_len] ), input,
331 ilen );
332
333 ctx->unprocessed_len += ilen;
334 return 0;
335 }
336
337 /*
338 * Process cached data first
339 */
340 if( ctx->unprocessed_len != 0 )
341 {
342 copy_len = cipher_get_block_size( ctx ) - ctx->unprocessed_len;
343
344 memcpy( &( ctx->unprocessed_data[ctx->unprocessed_len] ), input,
345 copy_len );
346
Paul Bakker343a8702011-06-09 14:27:58 +0000347 if( 0 != ctx->cipher_info->base->cbc_func( ctx->cipher_ctx,
Paul Bakker8123e9d2011-01-06 15:37:30 +0000348 ctx->operation, cipher_get_block_size( ctx ), ctx->iv,
349 ctx->unprocessed_data, output) )
350 {
351 return 1;
352 }
353
354 *olen += cipher_get_block_size( ctx );
355 output += cipher_get_block_size( ctx );
356 ctx->unprocessed_len = 0;
357
358 input += copy_len;
359 ilen -= copy_len;
360 }
361
362 /*
363 * Cache final, incomplete block
364 */
365 if( 0 != ilen )
366 {
367 copy_len = ilen % cipher_get_block_size( ctx );
368 if( copy_len == 0 && ctx->operation == POLARSSL_DECRYPT )
369 copy_len = cipher_get_block_size(ctx);
370
371 memcpy( ctx->unprocessed_data, &( input[ilen - copy_len] ),
372 copy_len );
373
374 ctx->unprocessed_len += copy_len;
375 ilen -= copy_len;
376 }
377
378 /*
379 * Process remaining full blocks
380 */
381 if( ilen )
382 {
Paul Bakker343a8702011-06-09 14:27:58 +0000383 if( 0 != ctx->cipher_info->base->cbc_func( ctx->cipher_ctx,
Paul Bakker8123e9d2011-01-06 15:37:30 +0000384 ctx->operation, ilen, ctx->iv, input, output ) )
385 {
386 return 1;
387 }
388 *olen += ilen;
389 }
390
391 return 0;
392 }
393
Paul Bakker343a8702011-06-09 14:27:58 +0000394 if( ctx->cipher_info->mode == POLARSSL_MODE_CFB128 )
395 {
396 if( 0 != ctx->cipher_info->base->cfb128_func( ctx->cipher_ctx,
397 ctx->operation, ilen, &ctx->unprocessed_len, ctx->iv,
398 input, output ) )
399 {
400 return 1;
401 }
402
403 *olen = ilen;
404
405 return 0;
406 }
407
408 if( ctx->cipher_info->mode == POLARSSL_MODE_CTR )
409 {
410 if( 0 != ctx->cipher_info->base->ctr_func( ctx->cipher_ctx,
411 ilen, &ctx->unprocessed_len, ctx->iv,
412 ctx->unprocessed_data, input, output ) )
413 {
414 return 1;
415 }
416
417 *olen = ilen;
418
419 return 0;
420 }
421
Paul Bakker8123e9d2011-01-06 15:37:30 +0000422 return 1;
423}
424
Paul Bakker23986e52011-04-24 08:57:21 +0000425static void add_pkcs_padding( unsigned char *output, size_t output_len,
426 size_t data_len )
Paul Bakker8123e9d2011-01-06 15:37:30 +0000427{
Paul Bakker23986e52011-04-24 08:57:21 +0000428 size_t padding_len = output_len - data_len;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000429 unsigned char i = 0;
430
431 for( i = 0; i < padding_len; i++ )
Paul Bakker23986e52011-04-24 08:57:21 +0000432 output[data_len + i] = (unsigned char) padding_len;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000433}
434
435static int get_pkcs_padding( unsigned char *input, unsigned char input_len,
Paul Bakker23986e52011-04-24 08:57:21 +0000436 size_t *data_len)
Paul Bakker8123e9d2011-01-06 15:37:30 +0000437{
438 int i = 0;
439 unsigned char padding_len = 0;
440
Paul Bakkera885d682011-01-20 16:35:05 +0000441 if( NULL == input || NULL == data_len )
Paul Bakker8123e9d2011-01-06 15:37:30 +0000442 return 1;
443
444 padding_len = input[input_len - 1];
445
Paul Bakkera885d682011-01-20 16:35:05 +0000446 if( padding_len > input_len )
Paul Bakker8123e9d2011-01-06 15:37:30 +0000447 return 2;
448
Paul Bakkera885d682011-01-20 16:35:05 +0000449 for( i = input_len - padding_len; i < input_len; i++ )
450 if( input[i] != padding_len )
Paul Bakker8123e9d2011-01-06 15:37:30 +0000451 return 2;
452
453 *data_len = input_len - padding_len;
454
455 return 0;
456}
457
Paul Bakker23986e52011-04-24 08:57:21 +0000458int cipher_finish( cipher_context_t *ctx, unsigned char *output, size_t *olen)
Paul Bakker8123e9d2011-01-06 15:37:30 +0000459{
460 if( NULL == ctx || NULL == ctx->cipher_info || NULL == olen )
461 return 1;
462
463 *olen = 0;
464
Paul Bakker343a8702011-06-09 14:27:58 +0000465 if( POLARSSL_MODE_CFB128 == ctx->cipher_info->mode ||
466 POLARSSL_MODE_CTR == ctx->cipher_info->mode )
467 {
468 return 0;
469 }
470
Paul Bakker8123e9d2011-01-06 15:37:30 +0000471 if( POLARSSL_MODE_CBC == ctx->cipher_info->mode )
472 {
473 if( POLARSSL_ENCRYPT == ctx->operation )
474 {
475 add_pkcs_padding( ctx->unprocessed_data, cipher_get_iv_size( ctx ),
476 ctx->unprocessed_len );
477 }
478 else if ( cipher_get_block_size( ctx ) != ctx->unprocessed_len )
479 {
480 /* For decrypt operations, expect a full block */
481 return 1;
482 }
483
484 /* cipher block */
Paul Bakker343a8702011-06-09 14:27:58 +0000485 if( 0 != ctx->cipher_info->base->cbc_func( ctx->cipher_ctx, ctx->operation,
Paul Bakker8123e9d2011-01-06 15:37:30 +0000486 cipher_get_block_size( ctx ), ctx->iv, ctx->unprocessed_data,
487 output ) )
488 {
489 return 1;
490 }
491
492 /* Set output size for decryption */
493 if( POLARSSL_DECRYPT == ctx->operation )
494 return get_pkcs_padding( output, cipher_get_block_size( ctx ), olen );
495
496 /* Set output size for encryption */
497 *olen = cipher_get_block_size( ctx );
498 return 0;
499 }
500
501 return 1;
502}
503
504#if defined(POLARSSL_SELF_TEST)
505
506#include <stdio.h>
507
508#define ASSERT(x) if (!(x)) { \
509 printf( "failed with %i at %s\n", value, (#x) ); \
510 return( 1 ); \
511}
512/*
513 * Checkup routine
514 */
515
516int cipher_self_test( int verbose )
517{
Paul Bakkerd61e7d92011-01-18 16:17:47 +0000518 ((void) verbose);
519
Paul Bakker8123e9d2011-01-06 15:37:30 +0000520 return( 0 );
521}
522
523#endif
524
525#endif