#ifndef SHA2_H #define SHA2_H #include #include /* The incremental API allows hashing of individual input blocks; these blocks must be exactly 64 bytes each. Use the 'finalize' functions for any remaining bytes (possibly over 64). */ /* Structure for the incremental API */ typedef struct { uint8_t ctx[40]; } sha224ctx; /* Structure for the incremental API */ typedef struct { uint8_t ctx[40]; } sha256ctx; /* Structure for the incremental API */ typedef struct { uint8_t ctx[72]; } sha384ctx; /* Structure for the incremental API */ typedef struct { uint8_t ctx[72]; } sha512ctx; /* ====== SHA224 API ==== */ /** * Initialize the incremental hashing API */ void sha224_inc_init(sha224ctx *state); /** * Copy the hashing state */ void sha224_inc_clone_state(sha224ctx *stateout, const sha224ctx *statein); /** * Absorb blocks */ void sha224_inc_blocks(sha224ctx *state, const uint8_t *in, size_t inblocks); /** * Finalize and obtain the digest * * If applicable, this function will free the memory associated with the sha224ctx. */ void sha224_inc_finalize(uint8_t *out, sha224ctx *state, const uint8_t *in, size_t inlen); /** * Destroy the state. Make sure to use this, as this API may not always be stack-based. */ void sha224_inc_destroy(sha224ctx *state); /** * All-in-one sha224 function */ void sha224(uint8_t *out, const uint8_t *in, size_t inlen); /* ====== SHA256 API ==== */ /** * Initialize the incremental hashing API */ void sha256_inc_init(sha256ctx *state); /** * Copy the hashing state */ void sha256_inc_clone_state(sha256ctx *stateout, const sha256ctx *statein); /** * Absorb blocks */ void sha256_inc_blocks(sha256ctx *state, const uint8_t *in, size_t inblocks); /** * Finalize and obtain the digest * * If applicable, this function will free the memory associated with the sha256ctx. */ void sha256_inc_finalize(uint8_t *out, sha256ctx *state, const uint8_t *in, size_t inlen); /** * Destroy the state. Make sure to use this, as this API may not always be stack-based. */ void sha256_inc_destroy(sha256ctx *state); /** * All-in-one sha256 function */ void sha256(uint8_t *out, const uint8_t *in, size_t inlen); /* ====== SHA384 API ==== */ /** * Initialize the incremental hashing API */ void sha384_inc_init(sha384ctx *state); /** * Copy the hashing state */ void sha384_inc_clone_state(sha384ctx *stateout, const sha384ctx *statein); /** * Absorb blocks */ void sha384_inc_blocks(sha384ctx *state, const uint8_t *in, size_t inblocks); /** * Finalize and obtain the digest. * * If applicable, this function will free the memory associated with the sha384ctx. */ void sha384_inc_finalize(uint8_t *out, sha384ctx *state, const uint8_t *in, size_t inlen); /** * Destroy the state. Make sure to use this, as this API may not always be stack-based. */ void sha384_inc_destroy(sha384ctx *state); /** * All-in-one sha384 function */ void sha384(uint8_t *out, const uint8_t *in, size_t inlen); /* ====== SHA512 API ==== */ /** * Initialize the incremental hashing API */ void sha512_inc_init(sha512ctx *state); /** * Copy the hashing state */ void sha512_inc_clone_state(sha512ctx *stateout, const sha512ctx *statein); /** * Absorb blocks */ void sha512_inc_blocks(sha512ctx *state, const uint8_t *in, size_t inblocks); /** * Finalize and obtain the digest * * If applicable, this function will free the memory associated with the sha512ctx. */ void sha512_inc_finalize(uint8_t *out, sha512ctx *state, const uint8_t *in, size_t inlen); /** * Destroy the state. Make sure to use this, as this API may not always be stack-based. */ void sha512_inc_destroy(sha512ctx *state); /** * All-in-one sha512 function */ void sha512(uint8_t *out, const uint8_t *in, size_t inlen); #endif