blob: 71a015e96a897f06aaee7677e43a3a872ebb6b0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "../radsecproxy.h"
#include "../fticks.h"
int
main (int argc, char *argv[])
{
uint8_t buf[128];
fticks_hashmac((const uint8_t *) "xyzzy", NULL, sizeof(buf), buf);
return 0;
}
|