23#ifndef OCRYPTO_SHA512_H
24#define OCRYPTO_SHA512_H
38#define ocrypto_sha512_BYTES (64)
43 uint64_t h[8], v[8], w[16];
65 ocrypto_sha512_ctx *ctx);
82 ocrypto_sha512_ctx *ctx,
83 const uint8_t *in,
size_t in_len);
102 ocrypto_sha512_ctx *ctx,
117 const uint8_t *in,
size_t in_len);
#define ocrypto_sha512_BYTES
Definition ocrypto_sha512.h:38
void ocrypto_sha512_final(ocrypto_sha512_ctx *ctx, uint8_t r[(64)])
void ocrypto_sha512_update(ocrypto_sha512_ctx *ctx, const uint8_t *in, size_t in_len)
void ocrypto_sha512_init(ocrypto_sha512_ctx *ctx)
void ocrypto_sha512(uint8_t r[(64)], const uint8_t *in, size_t in_len)