1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

hashes/sha3: add missing macro documentation

This commit is contained in:
Jose Alamos 2018-08-28 19:28:40 +02:00
parent 7e30e3256f
commit 4865731fdd

View File

@ -33,8 +33,19 @@
extern "C" {
#endif
/**
* @brief Length of SHA256 digests in bytes
*/
#define SHA3_256_DIGEST_LENGTH 32
/**
* @brief Length of SHA384 digests in bytes
*/
#define SHA3_384_DIGEST_LENGTH 48
/**
* @brief Length of SHA512 digests in bytes
*/
#define SHA3_512_DIGEST_LENGTH 64
/**