14 lines
276 B
C
14 lines
276 B
C
#ifndef SPX_THASH_H
|
|
#define SPX_THASH_H
|
|
|
|
#include "context.h"
|
|
#include "params.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
#define thash SPX_NAMESPACE(thash)
|
|
void thash(unsigned char *out, const unsigned char *in, unsigned int inblocks,
|
|
const spx_ctx *ctx, uint32_t addr[8]);
|
|
|
|
#endif
|