2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Self-test demonstration program
|
|
|
|
*
|
2013-06-30 14:49:12 +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
|
|
|
*
|
2009-01-03 22:22:43 +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.
|
|
|
|
*/
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2013-09-20 13:30:43 +02:00
|
|
|
#include "polarssl/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2014-05-30 10:34:15 +02:00
|
|
|
#include "polarssl/entropy.h"
|
2014-01-31 11:12:09 +01:00
|
|
|
#include "polarssl/hmac_drbg.h"
|
2011-11-27 15:46:59 +01:00
|
|
|
#include "polarssl/ctr_drbg.h"
|
2013-09-15 17:43:54 +02:00
|
|
|
#include "polarssl/dhm.h"
|
2012-03-20 14:50:09 +01:00
|
|
|
#include "polarssl/gcm.h"
|
2014-05-02 15:17:29 +02:00
|
|
|
#include "polarssl/ccm.h"
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/md2.h"
|
|
|
|
#include "polarssl/md4.h"
|
|
|
|
#include "polarssl/md5.h"
|
2014-01-22 13:35:29 +01:00
|
|
|
#include "polarssl/ripemd160.h"
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/sha1.h"
|
2013-06-30 14:49:12 +02:00
|
|
|
#include "polarssl/sha256.h"
|
|
|
|
#include "polarssl/sha512.h"
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/arc4.h"
|
|
|
|
#include "polarssl/des.h"
|
|
|
|
#include "polarssl/aes.h"
|
2009-03-28 18:53:03 +01:00
|
|
|
#include "polarssl/camellia.h"
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/base64.h"
|
|
|
|
#include "polarssl/bignum.h"
|
|
|
|
#include "polarssl/rsa.h"
|
|
|
|
#include "polarssl/x509.h"
|
2009-01-04 19:15:48 +01:00
|
|
|
#include "polarssl/xtea.h"
|
2014-03-20 09:59:51 +01:00
|
|
|
#include "polarssl/pkcs5.h"
|
2014-03-27 18:57:52 +01:00
|
|
|
#include "polarssl/pbkdf2.h"
|
2012-11-13 20:57:00 +01:00
|
|
|
#include "polarssl/ecp.h"
|
2014-03-27 20:07:08 +01:00
|
|
|
#include "polarssl/timing.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-07-03 13:37:05 +02:00
|
|
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
|
|
|
#include "polarssl/memory.h"
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
2011-05-25 13:13:47 +02:00
|
|
|
int ret = 0, v;
|
2013-07-03 13:37:05 +02:00
|
|
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
|
|
|
unsigned char buf[1000000];
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( argc == 2 && strcmp( argv[1], "-quiet" ) == 0 )
|
|
|
|
v = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
v = 1;
|
|
|
|
printf( "\n" );
|
|
|
|
}
|
|
|
|
|
2011-05-25 13:13:47 +02:00
|
|
|
#if defined(POLARSSL_SELF_TEST)
|
|
|
|
|
2013-07-03 13:37:05 +02:00
|
|
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
|
|
|
memory_buffer_alloc_init( buf, sizeof(buf) );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_MD2_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = md2_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_MD4_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = md4_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_MD5_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = md5_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-01-22 13:35:29 +01:00
|
|
|
#if defined(POLARSSL_RIPEMD160_C)
|
|
|
|
if( ( ret = ripemd160_self_test( v ) ) != 0 )
|
2014-01-17 14:44:38 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_SHA1_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = sha1_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA256_C)
|
|
|
|
if( ( ret = sha256_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-03-26 11:20:05 +01:00
|
|
|
#if defined(POLARSSL_SHA512_C)
|
2013-06-30 14:34:05 +02:00
|
|
|
if( ( ret = sha512_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_ARC4_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = arc4_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_DES_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = des_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_AES_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = aes_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-05-02 15:17:29 +02:00
|
|
|
#if defined(POLARSSL_GCM_C) && defined(POLARSSL_AES_C)
|
2012-03-20 14:50:09 +01:00
|
|
|
if( ( ret = gcm_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-05-02 15:17:29 +02:00
|
|
|
#if defined(POLARSSL_CCM_C) && defined(POLARSSL_AES_C)
|
|
|
|
if( ( ret = ccm_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_BASE64_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = base64_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_BIGNUM_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = mpi_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-01-31 11:12:09 +01:00
|
|
|
#if defined(POLARSSL_RSA_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = rsa_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2013-09-16 22:56:18 +02:00
|
|
|
#if defined(POLARSSL_X509_USE_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ( ret = x509_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-04 19:15:48 +01:00
|
|
|
#if defined(POLARSSL_XTEA_C)
|
|
|
|
if( ( ret = xtea_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2009-01-11 00:31:23 +01:00
|
|
|
#if defined(POLARSSL_CAMELLIA_C)
|
|
|
|
if( ( ret = camellia_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2011-11-27 15:46:59 +01:00
|
|
|
#if defined(POLARSSL_CTR_DRBG_C)
|
|
|
|
if( ( ret = ctr_drbg_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-01-31 11:12:09 +01:00
|
|
|
#if defined(POLARSSL_HMAC_DRBG_C)
|
|
|
|
if( ( ret = hmac_drbg_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2012-11-13 20:57:00 +01:00
|
|
|
#if defined(POLARSSL_ECP_C)
|
|
|
|
if( ( ret = ecp_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2013-09-15 17:43:54 +02:00
|
|
|
#if defined(POLARSSL_DHM_C)
|
|
|
|
if( ( ret = dhm_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-05-30 10:34:15 +02:00
|
|
|
#if defined(POLARSSL_ENTROPY_C)
|
|
|
|
if( ( ret = entropy_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2014-03-27 20:12:44 +01:00
|
|
|
/* Slow tests last */
|
|
|
|
|
|
|
|
#if defined(POLARSSL_PBKDF2_C)
|
|
|
|
if( ( ret = pbkdf2_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#else
|
|
|
|
#if defined(POLARSSL_PKCS5_C)
|
|
|
|
if( ( ret = pkcs5_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-05-28 11:44:20 +02:00
|
|
|
#if defined(POLARSSL_TIMING_C)
|
2014-03-27 20:07:08 +01:00
|
|
|
if( ( ret = timing_self_test( v ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2011-05-25 13:13:47 +02:00
|
|
|
#else
|
|
|
|
printf( " POLARSSL_SELF_TEST not defined.\n" );
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
if( v != 0 )
|
|
|
|
{
|
2013-07-03 13:37:05 +02:00
|
|
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C) && defined(POLARSSL_MEMORY_DEBUG)
|
|
|
|
memory_buffer_alloc_status();
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
printf( " [ All tests passed ]\n\n" );
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2009-01-03 22:22:43 +01:00
|
|
|
printf( " Press Enter to exit this program.\n" );
|
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
}
|
2013-09-29 14:45:34 +02:00
|
|
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
|
|
|
memory_buffer_alloc_free();
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|