libft_ssl/include/whirlpool_internal.h
2026-05-05 00:17:52 +02:00

12 lines
300 B
C

#ifndef WHIRLPOOL_INTERNAL_H
#define WHIRLPOOL_INTERNAL_H
#include "whirlpool.h"
extern const uint8_t g_whirlpool_S[256];
extern const uint8_t g_whirlpool_MDS_ROW[8];
extern const uint64_t g_whirlpool_RC[11][8];
void whirlpool_compress(struct whirlpool_ctx *ctx, const uint8_t block[64]);
#endif