blob: 95f52f83ba76b322da8a69c8b9905dab325ae1dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include "crypto_shorthash.h"
#include "randombytes.h"
size_t
crypto_shorthash_bytes(void)
{
return crypto_shorthash_BYTES;
}
size_t
crypto_shorthash_keybytes(void)
{
return crypto_shorthash_KEYBYTES;
}
const char *
crypto_shorthash_primitive(void)
{
return crypto_shorthash_PRIMITIVE;
}
int
crypto_shorthash(unsigned char *out, const unsigned char *in,
unsigned long long inlen, const unsigned char *k)
{
return crypto_shorthash_siphash24(out, in, inlen, k);
}
void
crypto_shorthash_keygen(unsigned char k[crypto_shorthash_KEYBYTES])
{
randombytes_buf(k, crypto_shorthash_KEYBYTES);
}
|