mirror of
https://github.com/libtom/libtomcrypt
synced 2026-08-25 20:26:07 -04:00
fix DH timing when compiling with TFM support
This commit is contained in:
parent
33e70b427a
commit
b49ce35b2c
1 changed files with 6 additions and 1 deletions
|
|
@ -902,7 +902,12 @@ static void time_dh(void)
|
|||
ulong64 t1, t2;
|
||||
unsigned long i, x, y;
|
||||
int err;
|
||||
static unsigned long sizes[] = {768/8, 1024/8, 1536/8, 2048/8, 3072/8, 4096/8, 6144/8, 8192/8, 100000};
|
||||
static unsigned long sizes[] = {768/8, 1024/8, 1536/8, 2048/8,
|
||||
#ifndef TFM_DESC
|
||||
3072/8, 4096/8, 6144/8, 8192/8,
|
||||
#endif
|
||||
100000
|
||||
};
|
||||
|
||||
for (x = sizes[i=0]; x < 100000; x = sizes[++i]) {
|
||||
t2 = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue