/********************************************************************* * Filename: sha256.h * Author: Brad Conte (brad AT bradconte.com) * Copyright: * Disclaimer: This code is presented "as is" without any guarantees. * Details: Defines the API for the corresponding SHA1 implementation. *********************************************************************/ #ifndef SC_SHA256_H #define SC_SHA256_H /*************************** HEADER FILES ***************************/ #include #include /****************************** MACROS ******************************/ #define SC_SHA256_BLOCK_SIZE 32 // SHA256 outputs a 32 byte digest /**************************** DATA TYPES ****************************/ typedef struct { uint8_t data[64]; uint32_t datalen; unsigned long long bitlen; uint32_t state[8]; } SC_SHA256_CTX; /*********************** FUNCTION DECLARATIONS **********************/ void sc_sha256_init(SC_SHA256_CTX *ctx); void sc_sha256_update(SC_SHA256_CTX *ctx, const uint8_t data[], size_t len); void sc_sha256_final(SC_SHA256_CTX *ctx, uint8_t hash[]); #endif // SC_SHA256_H