2009-01-04 19:15:48 +01:00
|
|
|
/**
|
|
|
|
* \file xtea.h
|
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* \brief XTEA block cipher (32-bit)
|
|
|
|
*
|
2013-06-24 19:20:35 +02:00
|
|
|
* Copyright (C) 2006-2013, Brainspark B.V.
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
2010-07-18 12:13:04 +02:00
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2009-07-28 19:23:11 +02:00
|
|
|
* All rights reserved.
|
2009-01-04 19:15:48 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#ifndef POLARSSL_XTEA_H
|
|
|
|
#define POLARSSL_XTEA_H
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2013-06-24 19:20:35 +02:00
|
|
|
#include "config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2013-06-24 19:20:35 +02:00
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-10-28 18:48:30 +01:00
|
|
|
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
|
2009-10-04 15:22:13 +02:00
|
|
|
#include <basetsd.h>
|
|
|
|
typedef UINT32 uint32_t;
|
|
|
|
#else
|
|
|
|
#include <inttypes.h>
|
2009-05-24 16:42:46 +02:00
|
|
|
#endif
|
2009-05-03 14:54:07 +02:00
|
|
|
|
2009-01-04 19:15:48 +01:00
|
|
|
#define XTEA_ENCRYPT 1
|
|
|
|
#define XTEA_DECRYPT 0
|
|
|
|
|
2011-05-09 18:17:09 +02:00
|
|
|
#define POLARSSL_ERR_XTEA_INVALID_INPUT_LENGTH -0x0028 /**< The data input has an invalid length. */
|
2009-01-04 19:15:48 +01:00
|
|
|
|
2013-06-24 19:20:35 +02:00
|
|
|
#if !defined(POLARSSL_XTEA_ALT)
|
|
|
|
// Regular implementation
|
|
|
|
//
|
|
|
|
|
2013-06-27 14:29:21 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-01-04 19:15:48 +01:00
|
|
|
/**
|
|
|
|
* \brief XTEA context structure
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-05-03 14:54:07 +02:00
|
|
|
uint32_t k[4]; /*!< key */
|
2009-01-04 19:15:48 +01:00
|
|
|
}
|
|
|
|
xtea_context;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief XTEA key schedule
|
|
|
|
*
|
|
|
|
* \param ctx XTEA context to be initialized
|
|
|
|
* \param key the secret key
|
|
|
|
*/
|
2013-06-25 16:25:17 +02:00
|
|
|
void xtea_setup( xtea_context *ctx, const unsigned char key[16] );
|
2009-01-04 19:15:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief XTEA cipher function
|
|
|
|
*
|
|
|
|
* \param ctx XTEA context
|
|
|
|
* \param mode XTEA_ENCRYPT or XTEA_DECRYPT
|
|
|
|
* \param input 8-byte input block
|
|
|
|
* \param output 8-byte output block
|
2010-03-18 22:21:02 +01:00
|
|
|
*
|
2010-03-21 16:43:59 +01:00
|
|
|
* \return 0 if successful
|
2009-01-04 19:15:48 +01:00
|
|
|
*/
|
2010-03-18 22:21:02 +01:00
|
|
|
int xtea_crypt_ecb( xtea_context *ctx,
|
2011-04-24 10:57:21 +02:00
|
|
|
int mode,
|
2013-06-25 16:25:17 +02:00
|
|
|
const unsigned char input[8],
|
2011-04-24 10:57:21 +02:00
|
|
|
unsigned char output[8] );
|
2009-01-04 19:15:48 +01:00
|
|
|
|
2013-09-13 16:24:20 +02:00
|
|
|
#if defined(POLARSSL_CIPHER_MODE_CBC)
|
2011-04-19 16:29:23 +02:00
|
|
|
/**
|
|
|
|
* \brief XTEA CBC cipher function
|
|
|
|
*
|
|
|
|
* \param ctx XTEA context
|
|
|
|
* \param mode XTEA_ENCRYPT or XTEA_DECRYPT
|
|
|
|
* \param length the length of input, multiple of 8
|
|
|
|
* \param iv initialization vector for CBC mode
|
|
|
|
* \param input input block
|
|
|
|
* \param output output block
|
|
|
|
*
|
|
|
|
* \return 0 if successful,
|
|
|
|
* POLARSSL_ERR_XTEA_INVALID_INPUT_LENGTH if the length % 8 != 0
|
|
|
|
*/
|
|
|
|
int xtea_crypt_cbc( xtea_context *ctx,
|
|
|
|
int mode,
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t length,
|
2011-04-19 16:29:23 +02:00
|
|
|
unsigned char iv[8],
|
2013-06-25 16:25:17 +02:00
|
|
|
const unsigned char *input,
|
2011-04-19 16:29:23 +02:00
|
|
|
unsigned char *output);
|
2013-09-13 16:24:20 +02:00
|
|
|
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
2011-04-19 16:29:23 +02:00
|
|
|
|
2013-06-24 19:20:35 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else /* POLARSSL_XTEA_ALT */
|
|
|
|
#include "xtea_alt.h"
|
|
|
|
#endif /* POLARSSL_XTEA_ALT */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-11-14 13:39:52 +01:00
|
|
|
/**
|
2009-01-04 19:15:48 +01:00
|
|
|
* \brief Checkup routine
|
|
|
|
*
|
|
|
|
* \return 0 if successful, or 1 if the test failed
|
|
|
|
*/
|
|
|
|
int xtea_self_test( int verbose );
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* xtea.h */
|