master xplshn/aruu / shared / sha512-256.h
 1/* public domain sha512/256 implementation based on fips180-3 */
 2
 3#include "sha512.h"
 4#include <stdint.h>
 5
 6#define sha512_256 sha512 /*struct*/
 7
 8enum { SHA512_256_DIGEST_LENGTH = 32 };
 9
10/* reset state */
11void sha512_256_init(void *ctx);
12/* process message */
13#define sha512_256_update sha512_update
14/* get message digest */
15/* state is ruined after sum, keep a copy if multiple sum is needed */
16/* part of the message might be left in s, zero it if secrecy is needed */
17void sha512_256_sum(void *ctx, uint8_t md[SHA512_256_DIGEST_LENGTH]);