/*********************************************************************
* 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.
*********************************************************************/
/*************************** HEADER FILES ***************************/
/****************************** MACROS ******************************/
/**************************** DATA TYPES ****************************/
typedef unsigned char BYTE; // 8-bit byte
typedef unsigned int WORD; // 32-bit word, change to "long" for 16-bit machines
typedef struct CRYAL_SHA256_CTX;
/*********************** FUNCTION DECLARATIONS **********************/
void ;
void ;
void ;
// SHA256_H