X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=hfal%2Fhfal-performance.c;h=192d6023a43a87c8b8108133fba9535959794ee1;hb=3a9f9d918fb95474996af535c225a7e187d88372;hp=5371f80d9f255594524fee8023a3eb37e3b9a9ad;hpb=924aa320bef6f192feecdb67d209c790bd49ea49;p=avr-crypto-lib.git diff --git a/hfal/hfal-performance.c b/hfal/hfal-performance.c index 5371f80..192d602 100644 --- a/hfal/hfal-performance.c +++ b/hfal/hfal-performance.c @@ -49,7 +49,7 @@ void printvalue(unsigned long v){ cli_putstr(str); } -void hfal_performance(const hfdesc_t* hd){ +void hfal_performance(const hfdesc_t *hd){ hfdesc_t hf; memcpy_P(&hf, hd, sizeof(hfdesc_t)); uint8_t ctx[hf.ctxsize_B]; @@ -131,7 +131,7 @@ void hfal_performance(const hfdesc_t* hd){ } } -void hfal_stacksize(const hfdesc_t* hd){ +void hfal_stacksize(const hfdesc_t *hd){ hfdesc_t hf; stack_measuring_ctx_t smctx; memcpy_P(&hf, hd, sizeof(hfdesc_t)); @@ -203,8 +203,8 @@ void hfal_stacksize(const hfdesc_t* hd){ } } -void hfal_performance_multiple(const hfdesc_t** hd_list){ - const hfdesc_t* hd; +void hfal_performance_multiple(const hfdesc_t *const *hd_list){ + const hfdesc_t *hd; for(;;){ hd = (void*)pgm_read_word(hd_list); if(!hd){