3e41d8cecb
Conflicts: configure.ac ctaocrypt/benchmark/benchmark.c ctaocrypt/src/asn.c ctaocrypt/src/coding.c ctaocrypt/src/des3.c ctaocrypt/src/md5.c ctaocrypt/src/random.c ctaocrypt/src/sha.c ctaocrypt/src/sha256.c cyassl/ctaocrypt/aes.h cyassl/ctaocrypt/settings.h cyassl/ssl.h cyassl/version.h examples/server/server.c m4/ax_debug.m4 m4/ax_tls.m4 mplabx/benchmark_main.c mplabx/ctaocrypt_test.X/nbproject/configurations.xml mplabx/test_main.c src/io.c src/ocsp.c src/ssl.c src/tls.c testsuite/testsuite.c
137 lines
2.9 KiB
C
137 lines
2.9 KiB
C
/* benchmark_main.c
|
|
*
|
|
* Copyright (C) 2006-2013 wolfSSL Inc.
|
|
*
|
|
* This file is part of CyaSSL.
|
|
*
|
|
* CyaSSL 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.
|
|
*
|
|
* CyaSSL 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
#if defined(CYASSL_MICROCHIP_PIC32MZ)
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <cyassl/ctaocrypt/settings.h>
|
|
#define SYSTEMConfigPerformance /* void out SYSTEMConfigPerformance(); */
|
|
#else
|
|
|
|
#if defined(CYASSL_MICROCHIP_PIC32MZ)
|
|
#define MICROCHIP_PIC32
|
|
#include <xc.h>
|
|
#pragma config ICESEL = ICS_PGx2
|
|
/* ICE/ICD Comm Channel Select (Communicate on PGEC2/PGED2) */
|
|
#include "PIC32MZ-serial.h"
|
|
#define SYSTEMConfigPerformance /* void out SYSTEMConfigPerformance(); */
|
|
#else
|
|
#define PIC32_STARTER_KIT
|
|
#include <p32xxxx.h>
|
|
#include <plib.h>
|
|
#include <sys/appio.h>
|
|
#define init_serial() /* void out init_serial() ; */
|
|
#endif
|
|
|
|
void bench_des(void);
|
|
void bench_arc4(void);
|
|
void bench_hc128(void);
|
|
void bench_rabbit(void);
|
|
void bench_aes(int);
|
|
void bench_aesgcm(void);
|
|
|
|
void bench_md5(void);
|
|
void bench_sha(void);
|
|
void bench_sha256(void);
|
|
void bench_sha512(void);
|
|
void bench_ripemd(void);
|
|
|
|
void bench_rsa(void);
|
|
void bench_rsaKeyGen(void);
|
|
void bench_dh(void);
|
|
#ifdef HAVE_ECC
|
|
void bench_eccKeyGen(void);
|
|
void bench_eccKeyAgree(void);
|
|
#endif
|
|
|
|
/*
|
|
* Main driver for CTaoCrypt benchmarks.
|
|
*/
|
|
int main(int argc, char** argv) {
|
|
volatile int i ;
|
|
int j ;
|
|
|
|
init_serial() ; /* initialize PIC32MZ serial I/O */
|
|
SYSTEMConfigPerformance(80000000);
|
|
DBINIT();
|
|
|
|
printf("wolfCrypt Benchmark:\n");
|
|
|
|
#ifndef NO_AES
|
|
bench_aes(0);
|
|
bench_aes(1);
|
|
#endif
|
|
#ifdef HAVE_AESGCM
|
|
bench_aesgcm();
|
|
#endif
|
|
#ifndef NO_RC4
|
|
bench_arc4();
|
|
#endif
|
|
#ifdef HAVE_HC128
|
|
bench_hc128();
|
|
#endif
|
|
#ifndef NO_RABBIT
|
|
bench_rabbit();
|
|
#endif
|
|
#ifndef NO_DES3
|
|
bench_des();
|
|
#endif
|
|
|
|
printf("\n");
|
|
|
|
#ifndef NO_MD5
|
|
bench_md5();
|
|
#endif
|
|
bench_sha();
|
|
#ifndef NO_SHA256
|
|
bench_sha256();
|
|
#endif
|
|
#ifdef CYASSL_SHA512
|
|
bench_sha512();
|
|
#endif
|
|
#ifdef CYASSL_RIPEMD
|
|
bench_ripemd();
|
|
#endif
|
|
|
|
printf("\n");
|
|
|
|
#ifndef NO_RSA
|
|
bench_rsa();
|
|
#endif
|
|
|
|
#ifndef NO_DH
|
|
bench_dh();
|
|
#endif
|
|
|
|
#if defined(CYASSL_KEY_GEN) && !defined(NO_RSA)
|
|
bench_rsaKeyGen();
|
|
#endif
|
|
|
|
#ifdef HAVE_ECC
|
|
bench_eccKeyGen();
|
|
bench_eccKeyAgree();
|
|
#endif
|
|
printf("End of wolfCrypt Benchmark:\n");
|
|
return 0;
|
|
}
|
|
|