10 lines
185 B
C
Raw Normal View History

2025-02-18 15:40:42 +08:00
#ifndef SHA256_H
#define SHA256_H
#define SHA256_DIGEST_SIZE 32
#define SHA256_BLOCK_SIZE 64
extern int sha256Compute(const void *data, int length, unsigned char *digest);
#endif