X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=performance_test.h;h=d8b15655ee1a1882a77f76e738163845e72e97d6;hb=619fb7652809ac18d79cb7534e5859ccc10848df;hp=2243586a4ae1ecc4d87b0213651e5f6410a38830;hpb=2c2d732098455b6ef9e5908ebd75238df0b2bd4c;p=avr-crypto-lib.git diff --git a/performance_test.h b/performance_test.h index 2243586..d8b1565 100644 --- a/performance_test.h +++ b/performance_test.h @@ -1,11 +1,33 @@ +/* performance_test.h */ +/* + This file is part of the Crypto-avr-lib/microcrypt-lib. + Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) + + 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 3 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, see . +*/ #ifndef PERFORMANCE_TEST_H_ #define PERFORMANCE_TEST_H_ #include +#include void calibrateTimer(void); void startTimer(uint8_t granularity); uint64_t stopTimer(void); void getOverhead(uint16_t* constoh, uint16_t* intoh); +void print_time_P(PGM_P s, uint64_t t); +void print_overhead(void); + #endif /*PERFORMANCE_TEST_H_*/