2016-07-26 11:00:54 +00:00
|
|
|
#include "errors.h"
|
2016-07-26 10:54:37 +00:00
|
|
|
|
2016-07-31 14:42:29 +00:00
|
|
|
// definitions of hash functions
|
|
|
|
#define MH_H_SHA1 0x11
|
|
|
|
#define MH_H_SHA2_256 0x12
|
|
|
|
#define MH_H_SHA2_512 0x13
|
|
|
|
#define MH_H_SHA3_512 0x14
|
|
|
|
#define MH_H_SHA3_384 0x15
|
|
|
|
#define MH_H_SHA3_256 0x16
|
|
|
|
#define MH_H_SHA3_224 0x17
|
|
|
|
#define MH_H_SHAKE_128 0x18
|
|
|
|
#define MH_H_SHAKE_256 0x19
|
|
|
|
#define MH_H_BLAKE2B 0x40
|
|
|
|
#define MH_H_BLAKE2S 0x41
|
|
|
|
|
|
|
|
|
2016-07-26 10:54:37 +00:00
|
|
|
// list of avaliable hash functions.
|
2016-07-31 14:42:29 +00:00
|
|
|
static const int mh_all_hashes[] = {
|
2016-07-26 10:54:37 +00:00
|
|
|
MH_H_SHA1,
|
|
|
|
MH_H_SHA2_256,
|
|
|
|
MH_H_SHA2_512,
|
|
|
|
MH_H_SHA3_512,
|
|
|
|
MH_H_SHA3_384,
|
|
|
|
MH_H_SHA3_256,
|
|
|
|
MH_H_SHA3_224,
|
|
|
|
MH_H_SHAKE_128,
|
|
|
|
MH_H_SHAKE_256,
|
|
|
|
MH_H_BLAKE2B,
|
|
|
|
MH_H_BLAKE2S,
|
2016-07-31 14:42:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define MH_H_COUNT (int)(sizeof(mh_all_hashes) / sizeof(mh_all_hashes[0]))
|
2016-07-26 10:54:37 +00:00
|
|
|
|
2016-07-31 14:42:29 +00:00
|
|
|
const char *mh_hash_name(int hash);
|
2016-07-26 10:54:37 +00:00
|
|
|
|
2016-07-30 10:39:26 +00:00
|
|
|
// returns length in bytes or if returns is < 0 it is an error
|
2016-07-31 14:42:29 +00:00
|
|
|
int mh_hash_default_length(int hash);
|