blob: dd7bac8106848f8231aff693636d1fc48f94405a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "crypto_core.h"
const char *primitiveimplementation = crypto_core_IMPLEMENTATION;
const char *implementationversion = crypto_core_VERSION;
const char *sizenames[] = { "outputbytes", "inputbytes", "keybytes", "constbytes", 0 };
const long long sizes[] = { crypto_core_OUTPUTBYTES, crypto_core_INPUTBYTES, crypto_core_KEYBYTES, crypto_core_CONSTBYTES };
void preallocate(void)
{
}
void allocate(void)
{
}
void measure(void)
{
}
|