2011-01-06 16:37:30 +01:00
|
|
|
/**
|
2013-03-13 10:33:51 +01:00
|
|
|
* \file cipher_wrap.c
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
2011-11-11 11:34:04 +01:00
|
|
|
* \brief Generic cipher wrapper for PolarSSL
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* \author Adriaan de Jong <dejong@fox-it.com>
|
|
|
|
*
|
2013-01-07 18:20:04 +01:00
|
|
|
* Copyright (C) 2006-2013, Brainspark B.V.
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "polarssl/config.h"
|
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_C)
|
|
|
|
|
|
|
|
#include "polarssl/cipher_wrap.h"
|
2012-03-05 15:01:29 +01:00
|
|
|
|
|
|
|
#if defined(POLARSSL_AES_C)
|
2011-01-06 16:37:30 +01:00
|
|
|
#include "polarssl/aes.h"
|
2012-03-05 15:01:29 +01:00
|
|
|
#endif
|
|
|
|
|
2013-08-28 13:50:42 +02:00
|
|
|
#if defined(POLARSSL_ARC4_C)
|
|
|
|
#include "polarssl/arc4.h"
|
|
|
|
#endif
|
|
|
|
|
2012-03-05 15:01:29 +01:00
|
|
|
#if defined(POLARSSL_CAMELLIA_C)
|
2011-01-06 16:37:30 +01:00
|
|
|
#include "polarssl/camellia.h"
|
2012-03-05 15:01:29 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(POLARSSL_DES_C)
|
2011-01-06 16:37:30 +01:00
|
|
|
#include "polarssl/des.h"
|
2012-03-15 11:54:25 +01:00
|
|
|
#endif
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2012-07-04 19:10:40 +02:00
|
|
|
#if defined(POLARSSL_BLOWFISH_C)
|
|
|
|
#include "polarssl/blowfish.h"
|
|
|
|
#endif
|
|
|
|
|
2013-08-30 18:34:08 +02:00
|
|
|
#if defined(POLARSSL_GCM_C)
|
|
|
|
#include "polarssl/gcm.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-03 13:37:05 +02:00
|
|
|
#if defined(POLARSSL_MEMORY_C)
|
|
|
|
#include "polarssl/memory.h"
|
|
|
|
#else
|
|
|
|
#define polarssl_malloc malloc
|
|
|
|
#define polarssl_free free
|
|
|
|
#endif
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#if defined(POLARSSL_AES_C)
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
static int aes_crypt_ecb_wrap( void *ctx, operation_t operation,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
return aes_crypt_ecb( (aes_context *) ctx, operation, input, output );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int aes_crypt_cbc_wrap( void *ctx, operation_t operation, size_t length,
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
2013-09-13 16:24:20 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
return aes_crypt_cbc( (aes_context *) ctx, operation, length, iv, input, output );
|
2013-09-13 16:24:20 +02:00
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int aes_crypt_cfb128_wrap( void *ctx, operation_t operation, size_t length,
|
2011-06-09 16:27:58 +02:00
|
|
|
size_t *iv_off, unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
return aes_crypt_cfb128( (aes_context *) ctx, operation, length, iv_off, iv, input, output );
|
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv_off);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int aes_crypt_ctr_wrap( void *ctx, size_t length,
|
2011-06-09 16:27:58 +02:00
|
|
|
size_t *nc_off, unsigned char *nonce_counter, unsigned char *stream_block,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
return aes_crypt_ctr( (aes_context *) ctx, length, nc_off, nonce_counter,
|
|
|
|
stream_block, input, output );
|
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) length);
|
|
|
|
((void) nc_off);
|
|
|
|
((void) nonce_counter);
|
|
|
|
((void) stream_block);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int aes_setkey_dec_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
|
|
|
return aes_setkey_dec( (aes_context *) ctx, key, key_length );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int aes_setkey_enc_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
|
|
|
return aes_setkey_enc( (aes_context *) ctx, key, key_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * aes_ctx_alloc( void )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
return polarssl_malloc( sizeof( aes_context ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void aes_ctx_free( void *ctx )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
polarssl_free( ctx );
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
2011-06-09 16:27:58 +02:00
|
|
|
const cipher_base_t aes_info = {
|
|
|
|
POLARSSL_CIPHER_ID_AES,
|
2013-09-08 23:04:04 +02:00
|
|
|
aes_crypt_ecb_wrap,
|
2011-06-09 16:27:58 +02:00
|
|
|
aes_crypt_cbc_wrap,
|
|
|
|
aes_crypt_cfb128_wrap,
|
|
|
|
aes_crypt_ctr_wrap,
|
2013-08-28 13:50:42 +02:00
|
|
|
NULL,
|
2011-06-09 16:27:58 +02:00
|
|
|
aes_setkey_enc_wrap,
|
|
|
|
aes_setkey_dec_wrap,
|
|
|
|
aes_ctx_alloc,
|
|
|
|
aes_ctx_free
|
|
|
|
};
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
const cipher_info_t aes_128_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_AES_128_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
128,
|
|
|
|
"AES-128-ECB",
|
|
|
|
16,
|
|
|
|
0,
|
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t aes_192_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_AES_192_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
192,
|
|
|
|
"AES-192-ECB",
|
|
|
|
16,
|
|
|
|
0,
|
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t aes_256_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_AES_256_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
256,
|
|
|
|
"AES-256-ECB",
|
|
|
|
16,
|
|
|
|
0,
|
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
|
2013-09-13 14:41:45 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
const cipher_info_t aes_128_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_AES_128_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
128,
|
|
|
|
"AES-128-CBC",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
16,
|
2011-06-09 16:27:58 +02:00
|
|
|
&aes_info
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t aes_192_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_AES_192_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
192,
|
|
|
|
"AES-192-CBC",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
16,
|
2011-06-09 16:27:58 +02:00
|
|
|
&aes_info
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t aes_256_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_AES_256_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
256,
|
|
|
|
"AES-256-CBC",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
16,
|
2011-06-09 16:27:58 +02:00
|
|
|
&aes_info
|
|
|
|
};
|
2013-09-13 14:41:45 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-06-09 16:27:58 +02:00
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
const cipher_info_t aes_128_cfb128_info = {
|
|
|
|
POLARSSL_CIPHER_AES_128_CFB128,
|
2012-07-04 19:10:40 +02:00
|
|
|
POLARSSL_MODE_CFB,
|
2011-06-09 16:27:58 +02:00
|
|
|
128,
|
|
|
|
"AES-128-CFB128",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t aes_192_cfb128_info = {
|
|
|
|
POLARSSL_CIPHER_AES_192_CFB128,
|
2012-07-04 19:10:40 +02:00
|
|
|
POLARSSL_MODE_CFB,
|
2011-06-09 16:27:58 +02:00
|
|
|
192,
|
|
|
|
"AES-192-CFB128",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t aes_256_cfb128_info = {
|
|
|
|
POLARSSL_CIPHER_AES_256_CFB128,
|
2012-07-04 19:10:40 +02:00
|
|
|
POLARSSL_MODE_CFB,
|
2011-06-09 16:27:58 +02:00
|
|
|
256,
|
|
|
|
"AES-256-CFB128",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CFB */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
const cipher_info_t aes_128_ctr_info = {
|
|
|
|
POLARSSL_CIPHER_AES_128_CTR,
|
|
|
|
POLARSSL_MODE_CTR,
|
|
|
|
128,
|
|
|
|
"AES-128-CTR",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&aes_info
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
2011-06-09 16:27:58 +02:00
|
|
|
|
|
|
|
const cipher_info_t aes_192_ctr_info = {
|
|
|
|
POLARSSL_CIPHER_AES_192_CTR,
|
|
|
|
POLARSSL_MODE_CTR,
|
|
|
|
192,
|
|
|
|
"AES-192-CTR",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t aes_256_ctr_info = {
|
|
|
|
POLARSSL_CIPHER_AES_256_CTR,
|
|
|
|
POLARSSL_MODE_CTR,
|
|
|
|
256,
|
|
|
|
"AES-256-CTR",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&aes_info
|
|
|
|
};
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CTR */
|
|
|
|
|
2013-01-07 18:20:04 +01:00
|
|
|
#if defined(POLARSSL_GCM_C)
|
2013-08-30 18:34:08 +02:00
|
|
|
static void *gcm_ctx_alloc( void )
|
|
|
|
{
|
|
|
|
return polarssl_malloc( sizeof( gcm_context ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gcm_ctx_free( void *ctx )
|
|
|
|
{
|
2013-09-13 13:45:58 +02:00
|
|
|
gcm_free( ctx );
|
2013-08-30 18:34:08 +02:00
|
|
|
polarssl_free( ctx );
|
|
|
|
}
|
|
|
|
|
2013-09-09 00:10:27 +02:00
|
|
|
static int gcm_aes_setkey_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2013-08-30 18:34:08 +02:00
|
|
|
{
|
2013-09-09 00:10:27 +02:00
|
|
|
return gcm_init( (gcm_context *) ctx, POLARSSL_CIPHER_ID_AES,
|
|
|
|
key, key_length );
|
2013-08-30 18:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const cipher_base_t gcm_aes_info = {
|
|
|
|
POLARSSL_CIPHER_ID_AES,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2013-09-08 23:04:04 +02:00
|
|
|
NULL,
|
2013-09-09 00:10:27 +02:00
|
|
|
gcm_aes_setkey_wrap,
|
|
|
|
gcm_aes_setkey_wrap,
|
2013-08-30 18:34:08 +02:00
|
|
|
gcm_ctx_alloc,
|
|
|
|
gcm_ctx_free,
|
|
|
|
};
|
|
|
|
|
2013-01-07 18:20:04 +01:00
|
|
|
const cipher_info_t aes_128_gcm_info = {
|
|
|
|
POLARSSL_CIPHER_AES_128_GCM,
|
|
|
|
POLARSSL_MODE_GCM,
|
|
|
|
128,
|
|
|
|
"AES-128-GCM",
|
2013-09-03 13:25:52 +02:00
|
|
|
12,
|
|
|
|
1,
|
2013-01-07 18:20:04 +01:00
|
|
|
16,
|
2013-08-30 18:34:08 +02:00
|
|
|
&gcm_aes_info
|
2013-01-07 18:20:04 +01:00
|
|
|
};
|
|
|
|
|
2013-09-04 12:07:24 +02:00
|
|
|
const cipher_info_t aes_192_gcm_info = {
|
|
|
|
POLARSSL_CIPHER_AES_192_GCM,
|
|
|
|
POLARSSL_MODE_GCM,
|
|
|
|
192,
|
|
|
|
"AES-192-GCM",
|
|
|
|
12,
|
|
|
|
1,
|
|
|
|
16,
|
|
|
|
&gcm_aes_info
|
|
|
|
};
|
|
|
|
|
2013-01-07 18:20:04 +01:00
|
|
|
const cipher_info_t aes_256_gcm_info = {
|
|
|
|
POLARSSL_CIPHER_AES_256_GCM,
|
|
|
|
POLARSSL_MODE_GCM,
|
|
|
|
256,
|
|
|
|
"AES-256-GCM",
|
2013-09-03 13:25:52 +02:00
|
|
|
12,
|
|
|
|
1,
|
2013-01-07 18:20:04 +01:00
|
|
|
16,
|
2013-08-30 18:34:08 +02:00
|
|
|
&gcm_aes_info
|
2013-01-07 18:20:04 +01:00
|
|
|
};
|
|
|
|
#endif /* POLARSSL_GCM_C */
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(POLARSSL_CAMELLIA_C)
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
static int camellia_crypt_ecb_wrap( void *ctx, operation_t operation,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
return camellia_crypt_ecb( (camellia_context *) ctx, operation, input, output );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int camellia_crypt_cbc_wrap( void *ctx, operation_t operation, size_t length,
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
2013-09-13 16:24:20 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
return camellia_crypt_cbc( (camellia_context *) ctx, operation, length, iv, input, output );
|
2013-09-13 16:24:20 +02:00
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int camellia_crypt_cfb128_wrap( void *ctx, operation_t operation, size_t length,
|
2011-06-09 16:27:58 +02:00
|
|
|
size_t *iv_off, unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
return camellia_crypt_cfb128( (camellia_context *) ctx, operation, length, iv_off, iv, input, output );
|
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv_off);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int camellia_crypt_ctr_wrap( void *ctx, size_t length,
|
2011-06-09 16:27:58 +02:00
|
|
|
size_t *nc_off, unsigned char *nonce_counter, unsigned char *stream_block,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
return camellia_crypt_ctr( (camellia_context *) ctx, length, nc_off, nonce_counter,
|
|
|
|
stream_block, input, output );
|
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) length);
|
|
|
|
((void) nc_off);
|
|
|
|
((void) nonce_counter);
|
|
|
|
((void) stream_block);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int camellia_setkey_dec_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
|
|
|
return camellia_setkey_dec( (camellia_context *) ctx, key, key_length );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int camellia_setkey_enc_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
|
|
|
return camellia_setkey_enc( (camellia_context *) ctx, key, key_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * camellia_ctx_alloc( void )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
return polarssl_malloc( sizeof( camellia_context ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void camellia_ctx_free( void *ctx )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
polarssl_free( ctx );
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
2011-06-09 16:27:58 +02:00
|
|
|
const cipher_base_t camellia_info = {
|
|
|
|
POLARSSL_CIPHER_ID_CAMELLIA,
|
2013-09-08 23:04:04 +02:00
|
|
|
camellia_crypt_ecb_wrap,
|
2011-06-09 16:27:58 +02:00
|
|
|
camellia_crypt_cbc_wrap,
|
|
|
|
camellia_crypt_cfb128_wrap,
|
|
|
|
camellia_crypt_ctr_wrap,
|
2013-08-28 13:50:42 +02:00
|
|
|
NULL,
|
2011-06-09 16:27:58 +02:00
|
|
|
camellia_setkey_enc_wrap,
|
|
|
|
camellia_setkey_dec_wrap,
|
|
|
|
camellia_ctx_alloc,
|
|
|
|
camellia_ctx_free
|
|
|
|
};
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
const cipher_info_t camellia_128_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_128_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
128,
|
|
|
|
"CAMELLIA-128-ECB",
|
|
|
|
16,
|
|
|
|
0,
|
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_192_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_192_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
192,
|
|
|
|
"CAMELLIA-192-ECB",
|
|
|
|
16,
|
|
|
|
0,
|
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_256_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_256_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
256,
|
|
|
|
"CAMELLIA-256-ECB",
|
|
|
|
16,
|
|
|
|
0,
|
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
|
2013-09-13 14:41:45 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
const cipher_info_t camellia_128_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_CAMELLIA_128_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
128,
|
|
|
|
"CAMELLIA-128-CBC",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
16,
|
2011-06-09 16:27:58 +02:00
|
|
|
&camellia_info
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_192_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_CAMELLIA_192_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
192,
|
|
|
|
"CAMELLIA-192-CBC",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
16,
|
2011-06-09 16:27:58 +02:00
|
|
|
&camellia_info
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_256_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_CAMELLIA_256_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
256,
|
|
|
|
"CAMELLIA-256-CBC",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
16,
|
2011-06-09 16:27:58 +02:00
|
|
|
&camellia_info
|
|
|
|
};
|
2013-09-13 14:41:45 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-06-09 16:27:58 +02:00
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
const cipher_info_t camellia_128_cfb128_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_128_CFB128,
|
2012-07-04 19:10:40 +02:00
|
|
|
POLARSSL_MODE_CFB,
|
2011-06-09 16:27:58 +02:00
|
|
|
128,
|
|
|
|
"CAMELLIA-128-CFB128",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_192_cfb128_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_192_CFB128,
|
2012-07-04 19:10:40 +02:00
|
|
|
POLARSSL_MODE_CFB,
|
2011-06-09 16:27:58 +02:00
|
|
|
192,
|
|
|
|
"CAMELLIA-192-CFB128",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_256_cfb128_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_256_CFB128,
|
2012-07-04 19:10:40 +02:00
|
|
|
POLARSSL_MODE_CFB,
|
2011-06-09 16:27:58 +02:00
|
|
|
256,
|
|
|
|
"CAMELLIA-256-CFB128",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CFB */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
const cipher_info_t camellia_128_ctr_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_128_CTR,
|
|
|
|
POLARSSL_MODE_CTR,
|
|
|
|
128,
|
|
|
|
"CAMELLIA-128-CTR",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_192_ctr_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_192_CTR,
|
|
|
|
POLARSSL_MODE_CTR,
|
|
|
|
192,
|
|
|
|
"CAMELLIA-192-CTR",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&camellia_info
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t camellia_256_ctr_info = {
|
|
|
|
POLARSSL_CIPHER_CAMELLIA_256_CTR,
|
|
|
|
POLARSSL_MODE_CTR,
|
|
|
|
256,
|
|
|
|
"CAMELLIA-256-CTR",
|
|
|
|
16,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-06-09 16:27:58 +02:00
|
|
|
16,
|
|
|
|
&camellia_info
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
2011-06-09 16:27:58 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CTR */
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(POLARSSL_DES_C)
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
static int des_crypt_ecb_wrap( void *ctx, operation_t operation,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
((void) operation);
|
|
|
|
return des_crypt_ecb( (des_context *) ctx, input, output );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int des3_crypt_ecb_wrap( void *ctx, operation_t operation,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
((void) operation);
|
|
|
|
return des3_crypt_ecb( (des3_context *) ctx, input, output );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des_crypt_cbc_wrap( void *ctx, operation_t operation, size_t length,
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
2013-09-13 16:24:20 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
return des_crypt_cbc( (des_context *) ctx, operation, length, iv, input, output );
|
2013-09-13 16:24:20 +02:00
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des3_crypt_cbc_wrap( void *ctx, operation_t operation, size_t length,
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
2013-09-13 16:24:20 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
return des3_crypt_cbc( (des3_context *) ctx, operation, length, iv, input, output );
|
2013-09-13 16:24:20 +02:00
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des_crypt_cfb128_wrap( void *ctx, operation_t operation, size_t length,
|
2011-06-09 16:27:58 +02:00
|
|
|
size_t *iv_off, unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv_off);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des_crypt_ctr_wrap( void *ctx, size_t length,
|
2011-06-09 16:27:58 +02:00
|
|
|
size_t *nc_off, unsigned char *nonce_counter, unsigned char *stream_block,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
((void) ctx);
|
|
|
|
((void) length);
|
|
|
|
((void) nc_off);
|
|
|
|
((void) nonce_counter);
|
|
|
|
((void) stream_block);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des_setkey_dec_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
2011-01-18 17:17:47 +01:00
|
|
|
((void) key_length);
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
return des_setkey_dec( (des_context *) ctx, key );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des_setkey_enc_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
2011-01-18 17:17:47 +01:00
|
|
|
((void) key_length);
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
return des_setkey_enc( (des_context *) ctx, key );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des3_set2key_dec_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
2011-01-18 17:17:47 +01:00
|
|
|
((void) key_length);
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
return des3_set2key_dec( (des3_context *) ctx, key );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des3_set2key_enc_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
2011-01-18 17:17:47 +01:00
|
|
|
((void) key_length);
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
return des3_set2key_enc( (des3_context *) ctx, key );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des3_set3key_dec_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
2011-01-18 17:17:47 +01:00
|
|
|
((void) key_length);
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
return des3_set3key_dec( (des3_context *) ctx, key );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int des3_set3key_enc_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2011-01-06 16:37:30 +01:00
|
|
|
{
|
2011-01-18 17:17:47 +01:00
|
|
|
((void) key_length);
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
return des3_set3key_enc( (des3_context *) ctx, key );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * des_ctx_alloc( void )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
return polarssl_malloc( sizeof( des_context ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void * des3_ctx_alloc( void )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
return polarssl_malloc( sizeof( des3_context ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void des_ctx_free( void *ctx )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
polarssl_free( ctx );
|
2011-01-06 16:37:30 +01:00
|
|
|
}
|
|
|
|
|
2011-06-09 16:27:58 +02:00
|
|
|
const cipher_base_t des_info = {
|
|
|
|
POLARSSL_CIPHER_ID_DES,
|
2013-09-08 23:04:04 +02:00
|
|
|
des_crypt_ecb_wrap,
|
2011-06-09 16:27:58 +02:00
|
|
|
des_crypt_cbc_wrap,
|
|
|
|
des_crypt_cfb128_wrap,
|
|
|
|
des_crypt_ctr_wrap,
|
2013-08-28 13:50:42 +02:00
|
|
|
NULL,
|
2011-06-09 16:27:58 +02:00
|
|
|
des_setkey_enc_wrap,
|
|
|
|
des_setkey_dec_wrap,
|
|
|
|
des_ctx_alloc,
|
|
|
|
des_ctx_free
|
|
|
|
};
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
const cipher_info_t des_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_DES_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
POLARSSL_KEY_LENGTH_DES,
|
|
|
|
"DES-ECB",
|
|
|
|
8,
|
|
|
|
0,
|
|
|
|
8,
|
|
|
|
&des_info
|
|
|
|
};
|
|
|
|
|
2013-09-13 14:41:45 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
const cipher_info_t des_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_DES_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
POLARSSL_KEY_LENGTH_DES,
|
|
|
|
"DES-CBC",
|
|
|
|
8,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
8,
|
2011-06-09 16:27:58 +02:00
|
|
|
&des_info
|
|
|
|
};
|
2013-09-13 14:41:45 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-06-09 16:27:58 +02:00
|
|
|
|
|
|
|
const cipher_base_t des_ede_info = {
|
|
|
|
POLARSSL_CIPHER_ID_DES,
|
2013-09-08 23:04:04 +02:00
|
|
|
des3_crypt_ecb_wrap,
|
2011-06-09 16:27:58 +02:00
|
|
|
des3_crypt_cbc_wrap,
|
|
|
|
des_crypt_cfb128_wrap,
|
|
|
|
des_crypt_ctr_wrap,
|
2013-08-28 13:50:42 +02:00
|
|
|
NULL,
|
2011-06-09 16:27:58 +02:00
|
|
|
des3_set2key_enc_wrap,
|
|
|
|
des3_set2key_dec_wrap,
|
|
|
|
des3_ctx_alloc,
|
2011-04-24 10:57:21 +02:00
|
|
|
des_ctx_free
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
const cipher_info_t des_ede_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_DES_EDE_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
POLARSSL_KEY_LENGTH_DES_EDE,
|
|
|
|
"DES-EDE-ECB",
|
|
|
|
8,
|
|
|
|
0,
|
|
|
|
8,
|
|
|
|
&des_ede_info
|
|
|
|
};
|
|
|
|
|
2013-09-13 14:41:45 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
const cipher_info_t des_ede_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_DES_EDE_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
POLARSSL_KEY_LENGTH_DES_EDE,
|
|
|
|
"DES-EDE-CBC",
|
2013-06-24 19:33:02 +02:00
|
|
|
8,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2013-06-24 19:33:02 +02:00
|
|
|
8,
|
2011-06-09 16:27:58 +02:00
|
|
|
&des_ede_info
|
|
|
|
};
|
2013-09-13 14:41:45 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-06-09 16:27:58 +02:00
|
|
|
|
|
|
|
const cipher_base_t des_ede3_info = {
|
|
|
|
POLARSSL_CIPHER_ID_DES,
|
2013-09-08 23:04:04 +02:00
|
|
|
des3_crypt_ecb_wrap,
|
2011-04-24 10:57:21 +02:00
|
|
|
des3_crypt_cbc_wrap,
|
2011-06-09 16:27:58 +02:00
|
|
|
des_crypt_cfb128_wrap,
|
|
|
|
des_crypt_ctr_wrap,
|
2013-08-28 13:50:42 +02:00
|
|
|
NULL,
|
2011-06-09 16:27:58 +02:00
|
|
|
des3_set3key_enc_wrap,
|
|
|
|
des3_set3key_dec_wrap,
|
2011-04-24 10:57:21 +02:00
|
|
|
des3_ctx_alloc,
|
|
|
|
des_ctx_free
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
const cipher_info_t des_ede3_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_DES_EDE3_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
POLARSSL_KEY_LENGTH_DES_EDE3,
|
|
|
|
"DES-EDE3-ECB",
|
|
|
|
8,
|
|
|
|
0,
|
|
|
|
8,
|
|
|
|
&des_ede3_info
|
|
|
|
};
|
2013-09-13 14:41:45 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-01-06 16:37:30 +01:00
|
|
|
const cipher_info_t des_ede3_cbc_info = {
|
2011-04-24 10:57:21 +02:00
|
|
|
POLARSSL_CIPHER_DES_EDE3_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
|
|
|
POLARSSL_KEY_LENGTH_DES_EDE3,
|
|
|
|
"DES-EDE3-CBC",
|
|
|
|
8,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2011-04-24 10:57:21 +02:00
|
|
|
8,
|
2011-06-09 16:27:58 +02:00
|
|
|
&des_ede3_info
|
2011-01-06 16:37:30 +01:00
|
|
|
};
|
2013-09-13 14:41:45 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-01-06 16:37:30 +01:00
|
|
|
#endif
|
|
|
|
|
2012-07-04 19:10:40 +02:00
|
|
|
#if defined(POLARSSL_BLOWFISH_C)
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
static int blowfish_crypt_ecb_wrap( void *ctx, operation_t operation,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
return blowfish_crypt_ecb( (blowfish_context *) ctx, operation, input, output );
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int blowfish_crypt_cbc_wrap( void *ctx, operation_t operation, size_t length,
|
2012-07-04 19:10:40 +02:00
|
|
|
unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
2013-09-13 16:24:20 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2012-07-04 19:10:40 +02:00
|
|
|
return blowfish_crypt_cbc( (blowfish_context *) ctx, operation, length, iv, input, output );
|
2013-09-13 16:24:20 +02:00
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2012-07-04 19:10:40 +02:00
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int blowfish_crypt_cfb64_wrap( void *ctx, operation_t operation, size_t length,
|
2012-07-04 19:10:40 +02:00
|
|
|
size_t *iv_off, unsigned char *iv, const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
return blowfish_crypt_cfb64( (blowfish_context *) ctx, operation, length, iv_off, iv, input, output );
|
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) operation);
|
|
|
|
((void) length);
|
|
|
|
((void) iv_off);
|
|
|
|
((void) iv);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-13 10:33:51 +01:00
|
|
|
static int blowfish_crypt_ctr_wrap( void *ctx, size_t length,
|
2012-07-04 19:10:40 +02:00
|
|
|
size_t *nc_off, unsigned char *nonce_counter, unsigned char *stream_block,
|
|
|
|
const unsigned char *input, unsigned char *output )
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
return blowfish_crypt_ctr( (blowfish_context *) ctx, length, nc_off, nonce_counter,
|
|
|
|
stream_block, input, output );
|
|
|
|
#else
|
|
|
|
((void) ctx);
|
|
|
|
((void) length);
|
|
|
|
((void) nc_off);
|
|
|
|
((void) nonce_counter);
|
|
|
|
((void) stream_block);
|
|
|
|
((void) input);
|
|
|
|
((void) output);
|
|
|
|
|
|
|
|
return POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-08-28 16:36:14 +02:00
|
|
|
static int blowfish_setkey_wrap( void *ctx, const unsigned char *key, unsigned int key_length )
|
2012-07-04 19:10:40 +02:00
|
|
|
{
|
|
|
|
return blowfish_setkey( (blowfish_context *) ctx, key, key_length );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * blowfish_ctx_alloc( void )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
return polarssl_malloc( sizeof( blowfish_context ) );
|
2012-07-04 19:10:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void blowfish_ctx_free( void *ctx )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
polarssl_free( ctx );
|
2012-07-04 19:10:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const cipher_base_t blowfish_info = {
|
|
|
|
POLARSSL_CIPHER_ID_BLOWFISH,
|
2013-09-08 23:04:04 +02:00
|
|
|
blowfish_crypt_ecb_wrap,
|
2012-07-04 19:10:40 +02:00
|
|
|
blowfish_crypt_cbc_wrap,
|
|
|
|
blowfish_crypt_cfb64_wrap,
|
|
|
|
blowfish_crypt_ctr_wrap,
|
2013-08-28 13:50:42 +02:00
|
|
|
NULL,
|
2013-08-28 16:36:14 +02:00
|
|
|
blowfish_setkey_wrap,
|
|
|
|
blowfish_setkey_wrap,
|
2012-07-04 19:10:40 +02:00
|
|
|
blowfish_ctx_alloc,
|
|
|
|
blowfish_ctx_free
|
|
|
|
};
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
const cipher_info_t blowfish_ecb_info = {
|
|
|
|
POLARSSL_CIPHER_BLOWFISH_ECB,
|
|
|
|
POLARSSL_MODE_ECB,
|
|
|
|
128,
|
|
|
|
"BLOWFISH-ECB",
|
|
|
|
8,
|
|
|
|
0,
|
|
|
|
8,
|
|
|
|
&blowfish_info
|
|
|
|
};
|
|
|
|
|
2013-09-13 14:41:45 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2012-07-04 19:10:40 +02:00
|
|
|
const cipher_info_t blowfish_cbc_info = {
|
|
|
|
POLARSSL_CIPHER_BLOWFISH_CBC,
|
|
|
|
POLARSSL_MODE_CBC,
|
2013-04-07 22:35:44 +02:00
|
|
|
128,
|
2012-07-04 19:10:40 +02:00
|
|
|
"BLOWFISH-CBC",
|
|
|
|
8,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2012-07-04 19:10:40 +02:00
|
|
|
8,
|
|
|
|
&blowfish_info
|
|
|
|
};
|
2013-09-13 14:41:45 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2012-07-04 19:10:40 +02:00
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
const cipher_info_t blowfish_cfb64_info = {
|
|
|
|
POLARSSL_CIPHER_BLOWFISH_CFB64,
|
|
|
|
POLARSSL_MODE_CFB,
|
2013-04-07 22:35:44 +02:00
|
|
|
128,
|
2012-07-04 19:10:40 +02:00
|
|
|
"BLOWFISH-CFB64",
|
|
|
|
8,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2012-07-04 19:10:40 +02:00
|
|
|
8,
|
|
|
|
&blowfish_info
|
|
|
|
};
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CFB */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
const cipher_info_t blowfish_ctr_info = {
|
|
|
|
POLARSSL_CIPHER_BLOWFISH_CTR,
|
|
|
|
POLARSSL_MODE_CTR,
|
2013-04-07 22:35:44 +02:00
|
|
|
128,
|
2012-07-04 19:10:40 +02:00
|
|
|
"BLOWFISH-CTR",
|
|
|
|
8,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2012-07-04 19:10:40 +02:00
|
|
|
8,
|
|
|
|
&blowfish_info
|
|
|
|
};
|
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CTR */
|
|
|
|
#endif /* POLARSSL_BLOWFISH_C */
|
|
|
|
|
2013-01-07 18:20:04 +01:00
|
|
|
#if defined(POLARSSL_ARC4_C)
|
2013-08-28 13:50:42 +02:00
|
|
|
static int arc4_crypt_stream_wrap( void *ctx, size_t length,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output )
|
2013-01-07 18:20:04 +01:00
|
|
|
{
|
2013-08-28 13:50:42 +02:00
|
|
|
return( arc4_crypt( (arc4_context *) ctx, length, input, output ) );
|
2013-01-07 18:20:04 +01:00
|
|
|
}
|
|
|
|
|
2013-08-28 13:50:42 +02:00
|
|
|
static int arc4_setkey_wrap( void *ctx, const unsigned char *key,
|
|
|
|
unsigned int key_length )
|
|
|
|
{
|
2013-09-04 12:28:37 +02:00
|
|
|
/* we get key_length in bits, arc4 expects it in bytes */
|
|
|
|
if( key_length % 8 != 0)
|
|
|
|
return( POLARSSL_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
arc4_setup( (arc4_context *) ctx, key, key_length / 8 );
|
2013-08-28 13:50:42 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * arc4_ctx_alloc( void )
|
|
|
|
{
|
|
|
|
return polarssl_malloc( sizeof( arc4_context ) );
|
|
|
|
}
|
2013-01-07 18:20:04 +01:00
|
|
|
|
|
|
|
static void arc4_ctx_free( void *ctx )
|
|
|
|
{
|
2013-08-28 13:50:42 +02:00
|
|
|
polarssl_free( ctx );
|
2013-01-07 18:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const cipher_base_t arc4_base_info = {
|
|
|
|
POLARSSL_CIPHER_ID_ARC4,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2013-09-08 23:04:04 +02:00
|
|
|
NULL,
|
2013-08-28 13:50:42 +02:00
|
|
|
arc4_crypt_stream_wrap,
|
|
|
|
arc4_setkey_wrap,
|
|
|
|
arc4_setkey_wrap,
|
2013-01-07 18:20:04 +01:00
|
|
|
arc4_ctx_alloc,
|
|
|
|
arc4_ctx_free
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t arc4_128_info = {
|
|
|
|
POLARSSL_CIPHER_ARC4_128,
|
|
|
|
POLARSSL_MODE_STREAM,
|
|
|
|
128,
|
|
|
|
"ARC4-128",
|
|
|
|
0,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2013-01-07 18:20:04 +01:00
|
|
|
1,
|
|
|
|
&arc4_base_info
|
|
|
|
};
|
|
|
|
#endif /* POLARSSL_ARC4_C */
|
|
|
|
|
2012-02-06 17:45:10 +01:00
|
|
|
#if defined(POLARSSL_CIPHER_NULL_CIPHER)
|
2013-08-28 16:36:14 +02:00
|
|
|
static int null_crypt_stream( void *ctx, size_t length,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output )
|
|
|
|
{
|
|
|
|
((void) ctx);
|
|
|
|
memmove( output, input, length );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int null_setkey( void *ctx, const unsigned char *key,
|
|
|
|
unsigned int key_length )
|
|
|
|
{
|
|
|
|
((void) ctx);
|
|
|
|
((void) key);
|
|
|
|
((void) key_length);
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2012-02-06 17:45:10 +01:00
|
|
|
static void * null_ctx_alloc( void )
|
|
|
|
{
|
|
|
|
return (void *) 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void null_ctx_free( void *ctx )
|
|
|
|
{
|
|
|
|
((void) ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
const cipher_base_t null_base_info = {
|
|
|
|
POLARSSL_CIPHER_ID_NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2013-09-08 23:04:04 +02:00
|
|
|
NULL,
|
2013-08-28 16:36:14 +02:00
|
|
|
null_crypt_stream,
|
|
|
|
null_setkey,
|
|
|
|
null_setkey,
|
2012-02-06 17:45:10 +01:00
|
|
|
null_ctx_alloc,
|
|
|
|
null_ctx_free
|
|
|
|
};
|
|
|
|
|
|
|
|
const cipher_info_t null_cipher_info = {
|
|
|
|
POLARSSL_CIPHER_NULL,
|
2013-08-28 16:36:14 +02:00
|
|
|
POLARSSL_MODE_STREAM,
|
2012-02-06 17:45:10 +01:00
|
|
|
0,
|
|
|
|
"NULL",
|
2013-01-07 18:20:04 +01:00
|
|
|
0,
|
2013-09-03 13:25:52 +02:00
|
|
|
0,
|
2012-02-06 17:45:10 +01:00
|
|
|
1,
|
|
|
|
&null_base_info
|
|
|
|
};
|
|
|
|
#endif /* defined(POLARSSL_CIPHER_NULL_CIPHER) */
|
|
|
|
|
2013-09-18 15:12:07 +02:00
|
|
|
const cipher_definition_t cipher_definitions[] =
|
|
|
|
{
|
|
|
|
#if defined(POLARSSL_AES_C)
|
|
|
|
{ POLARSSL_CIPHER_AES_128_ECB, &aes_128_ecb_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_192_ECB, &aes_192_ecb_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_256_ECB, &aes_256_ecb_info },
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
|
|
|
{ POLARSSL_CIPHER_AES_128_CBC, &aes_128_cbc_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_192_CBC, &aes_192_cbc_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_256_CBC, &aes_256_cbc_info },
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
{ POLARSSL_CIPHER_AES_128_CFB128, &aes_128_cfb128_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_192_CFB128, &aes_192_cfb128_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_256_CFB128, &aes_256_cfb128_info },
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
{ POLARSSL_CIPHER_AES_128_CTR, &aes_128_ctr_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_192_CTR, &aes_192_ctr_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_256_CTR, &aes_256_ctr_info },
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_GCM_C)
|
|
|
|
{ POLARSSL_CIPHER_AES_128_GCM, &aes_128_gcm_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_192_GCM, &aes_192_gcm_info },
|
|
|
|
{ POLARSSL_CIPHER_AES_256_GCM, &aes_256_gcm_info },
|
|
|
|
#endif
|
|
|
|
#endif /* POLARSSL_AES_C */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_ARC4_C)
|
|
|
|
{ POLARSSL_CIPHER_ARC4_128, &arc4_128_info },
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(POLARSSL_BLOWFISH_C)
|
|
|
|
{ POLARSSL_CIPHER_BLOWFISH_ECB, &blowfish_ecb_info },
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
|
|
|
{ POLARSSL_CIPHER_BLOWFISH_CBC, &blowfish_cbc_info },
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
{ POLARSSL_CIPHER_BLOWFISH_CFB64, &blowfish_cfb64_info },
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
{ POLARSSL_CIPHER_BLOWFISH_CTR, &blowfish_ctr_info },
|
|
|
|
#endif
|
|
|
|
#endif /* POLARSSL_BLOWFISH_C */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_CAMELLIA_C)
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_128_ECB, &camellia_128_ecb_info },
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_192_ECB, &camellia_192_ecb_info },
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_128_CBC, &camellia_128_cbc_info },
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_192_CBC, &camellia_192_cbc_info },
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_256_CBC, &camellia_256_cbc_info },
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_128_CFB128, &camellia_128_cfb128_info },
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_192_CFB128, &camellia_192_cfb128_info },
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_256_CFB128, &camellia_256_cfb128_info },
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_128_CTR, &camellia_128_ctr_info },
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_192_CTR, &camellia_192_ctr_info },
|
|
|
|
{ POLARSSL_CIPHER_CAMELLIA_256_CTR, &camellia_256_ctr_info },
|
|
|
|
#endif
|
|
|
|
#endif /* POLARSSL_CAMELLIA_C */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_DES_C)
|
|
|
|
{ POLARSSL_CIPHER_DES_ECB, &des_ecb_info },
|
|
|
|
{ POLARSSL_CIPHER_DES_EDE_ECB, &des_ede_ecb_info },
|
|
|
|
{ POLARSSL_CIPHER_DES_EDE3_ECB, &des_ede3_ecb_info },
|
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
|
|
|
{ POLARSSL_CIPHER_DES_CBC, &des_cbc_info },
|
|
|
|
{ POLARSSL_CIPHER_DES_EDE_CBC, &des_ede_cbc_info },
|
|
|
|
{ POLARSSL_CIPHER_DES_EDE3_CBC, &des_ede3_cbc_info },
|
|
|
|
#endif
|
|
|
|
#endif /* POLARSSL_DES_C */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_CIPHER_NULL_CIPHER)
|
2013-10-14 14:19:31 +02:00
|
|
|
{ POLARSSL_CIPHER_NULL, &null_cipher_info },
|
2013-09-18 15:12:07 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_NULL_CIPHER */
|
|
|
|
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
#define NUM_CIPHERS sizeof cipher_definitions / sizeof cipher_definitions[0]
|
|
|
|
int supported_ciphers[NUM_CIPHERS];
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
#endif
|