6 * \email daniel.otte@rub.de
8 * \license GPLv3 or later
12 This file implements algortihm independent data types of the NIST API for
13 SHA3 candidates as described in:
14 http://csrc.nist.gov/groups/ST/hash/documents/SHA3-C-API.pdf
20 typedef unsigned char BitSequence;
21 typedef unsigned long long DataLength;
22 typedef enum { SUCCESS = 0, FAIL = 1, BAD_HASHBITLEN = 2 } HashReturn;
24 #endif /* SHA3_API_H_ */