mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
67 lines
1.4 KiB
C
67 lines
1.4 KiB
C
|
#include <stdlib.h>
|
||
|
#include "randombytes.h"
|
||
|
#include "cpucycles.h"
|
||
|
#include "crypto_hash.h"
|
||
|
|
||
|
extern void printentry(long long,const char *,long long *,long long);
|
||
|
extern unsigned char *alignedcalloc(unsigned long long);
|
||
|
extern const char *primitiveimplementation;
|
||
|
extern const char *implementationversion;
|
||
|
extern const char *sizenames[];
|
||
|
extern const long long sizes[];
|
||
|
extern void allocate(void);
|
||
|
extern void measure(void);
|
||
|
|
||
|
const char *primitiveimplementation = crypto_hash_IMPLEMENTATION;
|
||
|
const char *implementationversion = crypto_hash_VERSION;
|
||
|
const char *sizenames[] = { "outputbytes", 0 };
|
||
|
const long long sizes[] = { crypto_hash_BYTES };
|
||
|
|
||
|
#define MAXTEST_BYTES 4096
|
||
|
#ifdef SUPERCOP
|
||
|
#define MGAP 8192
|
||
|
#else
|
||
|
#define MGAP 8
|
||
|
#endif
|
||
|
|
||
|
static unsigned char *h;
|
||
|
static unsigned char *m;
|
||
|
|
||
|
void preallocate(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void allocate(void)
|
||
|
{
|
||
|
h = alignedcalloc(crypto_hash_BYTES);
|
||
|
m = alignedcalloc(MAXTEST_BYTES);
|
||
|
}
|
||
|
|
||
|
#define TIMINGS 15
|
||
|
static long long cycles[TIMINGS + 1];
|
||
|
|
||
|
static void printcycles(long long mlen)
|
||
|
{
|
||
|
int i;
|
||
|
for (i = 0;i < TIMINGS;++i) cycles[i] = cycles[i + 1] - cycles[i];
|
||
|
printentry(mlen,"cycles",cycles,TIMINGS);
|
||
|
}
|
||
|
|
||
|
void measure(void)
|
||
|
{
|
||
|
int i;
|
||
|
int loop;
|
||
|
int mlen;
|
||
|
|
||
|
for (loop = 0;loop < LOOPS;++loop) {
|
||
|
for (mlen = 0;mlen <= MAXTEST_BYTES;mlen += 1 + mlen / MGAP) {
|
||
|
randombytes(m,mlen);
|
||
|
for (i = 0;i <= TIMINGS;++i) {
|
||
|
cycles[i] = cpucycles();
|
||
|
crypto_hash(h,m,mlen);
|
||
|
}
|
||
|
printcycles(mlen);
|
||
|
}
|
||
|
}
|
||
|
}
|