ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_hash.h
1 #ifndef SCAMAC_HASH_H
2 #define SCAMAC_HASH_H
3 
4 #include <inttypes.h>
5 
6 #include "scamac_error.h"
7 
8 struct scamac_md5_state_st {
9  uint64_t n; // number of bytes processed
10  uint32_t a[4];
11  uint32_t rem[16]; // remaining bits of incomplete chunk, at most 16 uint32_t
12 };
13 
14 typedef struct scamac_md5_state_st ScamacHashState;
15 
16 ScamacErrorCode scamac_hash_init (ScamacHashState * st);
17 ScamacErrorCode scamac_hash_process(ScamacHashState * st, int nb, const uint8_t *data);
18 ScamacErrorCode scamac_hash_finish (ScamacHashState * st);
19 ScamacErrorCode scamac_hash_digest (const ScamacHashState * st, uint32_t digest[4]);
20 
21  void scamac_print_digest(uint32_t digest[4]);
22 
23 #endif /* SCAMAC_HASH_H */
ScaMaC data structure and macro definitions.