2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \file des.h
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2011-01-27 16:24:17 +01:00
|
|
|
* \brief DES block cipher
|
2011-01-06 13:28:03 +01:00
|
|
|
*
|
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 17:27:10 +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.
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2009-01-03 22:51:57 +01:00
|
|
|
#ifndef POLARSSL_DES_H
|
|
|
|
#define POLARSSL_DES_H
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-06-24 19:20:35 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-10-01 16:41:15 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <basetsd.h>
|
|
|
|
typedef UINT32 uint32_t;
|
|
|
|
#else
|
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
#define DES_ENCRYPT 1
|
|
|
|
#define DES_DECRYPT 0
|
|
|
|
|
2011-05-09 18:17:09 +02:00
|
|
|
#define POLARSSL_ERR_DES_INVALID_INPUT_LENGTH -0x0032 /**< The data input has an invalid length. */
|
2010-03-18 22:21:02 +01:00
|
|
|
|
2011-01-15 18:32:24 +01:00
|
|
|
#define DES_KEY_SIZE 8
|
|
|
|
|
2013-06-24 19:20:35 +02:00
|
|
|
#if !defined(POLARSSL_DES_ALT)
|
|
|
|
// Regular implementation
|
|
|
|
//
|
|
|
|
|
2013-06-27 14:29:21 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \brief DES context structure
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int mode; /*!< encrypt/decrypt */
|
2012-10-01 16:41:15 +02:00
|
|
|
uint32_t sk[32]; /*!< DES subkeys */
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
des_context;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Triple-DES context structure
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int mode; /*!< encrypt/decrypt */
|
2012-10-01 16:41:15 +02:00
|
|
|
uint32_t sk[96]; /*!< 3DES subkeys */
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
des3_context;
|
|
|
|
|
2011-01-15 18:32:24 +01:00
|
|
|
/**
|
|
|
|
* \brief Set key parity on the given key to odd.
|
|
|
|
*
|
|
|
|
* DES keys are 56 bits long, but each byte is padded with
|
|
|
|
* a parity bit to allow verification.
|
|
|
|
*
|
|
|
|
* \param key 8-byte secret key
|
|
|
|
*/
|
|
|
|
void des_key_set_parity( unsigned char key[DES_KEY_SIZE] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Check that key parity on the given key is odd.
|
|
|
|
*
|
|
|
|
* DES keys are 56 bits long, but each byte is padded with
|
|
|
|
* a parity bit to allow verification.
|
|
|
|
*
|
|
|
|
* \param key 8-byte secret key
|
2011-07-06 16:37:33 +02:00
|
|
|
*
|
|
|
|
* \return 0 is parity was ok, 1 if parity was not correct.
|
2011-01-15 18:32:24 +01:00
|
|
|
*/
|
|
|
|
int des_key_check_key_parity( const unsigned char key[DES_KEY_SIZE] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Check that key is not a weak or semi-weak DES key
|
|
|
|
*
|
|
|
|
* \param key 8-byte secret key
|
2011-07-06 16:37:33 +02:00
|
|
|
*
|
2011-08-17 11:40:55 +02:00
|
|
|
* \return 0 if no weak key was found, 1 if a weak key was identified.
|
2011-01-15 18:32:24 +01:00
|
|
|
*/
|
|
|
|
int des_key_check_weak( const unsigned char key[DES_KEY_SIZE] );
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/**
|
|
|
|
* \brief DES key schedule (56-bit, encryption)
|
|
|
|
*
|
|
|
|
* \param ctx DES context to be initialized
|
|
|
|
* \param key 8-byte secret key
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* \return 0
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2011-01-15 18:32:24 +01:00
|
|
|
int des_setkey_enc( des_context *ctx, const unsigned char key[DES_KEY_SIZE] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief DES key schedule (56-bit, decryption)
|
|
|
|
*
|
|
|
|
* \param ctx DES context to be initialized
|
|
|
|
* \param key 8-byte secret key
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* \return 0
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2011-01-15 18:32:24 +01:00
|
|
|
int des_setkey_dec( des_context *ctx, const unsigned char key[DES_KEY_SIZE] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Triple-DES key schedule (112-bit, encryption)
|
|
|
|
*
|
|
|
|
* \param ctx 3DES context to be initialized
|
|
|
|
* \param key 16-byte secret key
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* \return 0
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2011-01-15 18:32:24 +01:00
|
|
|
int des3_set2key_enc( des3_context *ctx, const unsigned char key[DES_KEY_SIZE * 2] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Triple-DES key schedule (112-bit, decryption)
|
|
|
|
*
|
|
|
|
* \param ctx 3DES context to be initialized
|
|
|
|
* \param key 16-byte secret key
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* \return 0
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2011-01-15 18:32:24 +01:00
|
|
|
int des3_set2key_dec( des3_context *ctx, const unsigned char key[DES_KEY_SIZE * 2] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Triple-DES key schedule (168-bit, encryption)
|
|
|
|
*
|
|
|
|
* \param ctx 3DES context to be initialized
|
|
|
|
* \param key 24-byte secret key
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* \return 0
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2011-01-15 18:32:24 +01:00
|
|
|
int des3_set3key_enc( des3_context *ctx, const unsigned char key[DES_KEY_SIZE * 3] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Triple-DES key schedule (168-bit, decryption)
|
|
|
|
*
|
|
|
|
* \param ctx 3DES context to be initialized
|
|
|
|
* \param key 24-byte secret key
|
2011-01-06 16:37:30 +01:00
|
|
|
*
|
|
|
|
* \return 0
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2011-01-15 18:32:24 +01:00
|
|
|
int des3_set3key_dec( des3_context *ctx, const unsigned char key[DES_KEY_SIZE * 3] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief DES-ECB block encryption/decryption
|
|
|
|
*
|
|
|
|
* \param ctx DES context
|
|
|
|
* \param input 64-bit input block
|
|
|
|
* \param output 64-bit output block
|
2010-03-18 22:21:02 +01:00
|
|
|
*
|
2010-03-21 16:43:59 +01:00
|
|
|
* \return 0 if successful
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2010-03-18 22:21:02 +01:00
|
|
|
int des_crypt_ecb( des_context *ctx,
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char input[8],
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char output[8] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief DES-CBC buffer encryption/decryption
|
|
|
|
*
|
|
|
|
* \param ctx DES context
|
|
|
|
* \param mode DES_ENCRYPT or DES_DECRYPT
|
|
|
|
* \param length length of the input data
|
|
|
|
* \param iv initialization vector (updated after use)
|
|
|
|
* \param input buffer holding the input data
|
|
|
|
* \param output buffer holding the output data
|
|
|
|
*/
|
2010-03-18 22:21:02 +01:00
|
|
|
int des_crypt_cbc( des_context *ctx,
|
2009-01-03 22:22:43 +01:00
|
|
|
int mode,
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t length,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char iv[8],
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char *input,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *output );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief 3DES-ECB block encryption/decryption
|
|
|
|
*
|
|
|
|
* \param ctx 3DES context
|
|
|
|
* \param input 64-bit input block
|
|
|
|
* \param output 64-bit output block
|
2010-03-18 22:21:02 +01:00
|
|
|
*
|
2010-03-21 16:43:59 +01:00
|
|
|
* \return 0 if successful
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2010-03-18 22:21:02 +01:00
|
|
|
int des3_crypt_ecb( des3_context *ctx,
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char input[8],
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char output[8] );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief 3DES-CBC buffer encryption/decryption
|
|
|
|
*
|
|
|
|
* \param ctx 3DES context
|
|
|
|
* \param mode DES_ENCRYPT or DES_DECRYPT
|
|
|
|
* \param length length of the input data
|
|
|
|
* \param iv initialization vector (updated after use)
|
|
|
|
* \param input buffer holding the input data
|
|
|
|
* \param output buffer holding the output data
|
2010-03-18 22:21:02 +01:00
|
|
|
*
|
|
|
|
* \return 0 if successful, or POLARSSL_ERR_DES_INVALID_INPUT_LENGTH
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2010-03-18 22:21:02 +01:00
|
|
|
int des3_crypt_cbc( des3_context *ctx,
|
2009-01-03 22:22:43 +01:00
|
|
|
int mode,
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t length,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char iv[8],
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char *input,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *output );
|
|
|
|
|
2013-06-24 19:20:35 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else /* POLARSSL_DES_ALT */
|
|
|
|
#include "des_alt.h"
|
|
|
|
#endif /* POLARSSL_DES_ALT */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-11-14 13:39:52 +01:00
|
|
|
/**
|
2009-01-03 22:22:43 +01:00
|
|
|
* \brief Checkup routine
|
|
|
|
*
|
|
|
|
* \return 0 if successful, or 1 if the test failed
|
|
|
|
*/
|
|
|
|
int des_self_test( int verbose );
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* des.h */
|