8 lines
153 B
C
8 lines
153 B
C
#ifndef SHA256_INTERNAL_H
|
|
#define SHA256_INTERNAL_H
|
|
|
|
#include "sha256.h"
|
|
|
|
void sha256_compress(struct sha256_ctx *ctx, const uint8_t block[64]);
|
|
|
|
#endif
|