forked from jessek/hashdeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultihash.cpp
52 lines (43 loc) · 1.25 KB
/
multihash.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "main.h"
void hash_context_obj::multihash_initialize()
{
for (int i = 0 ; i < NUM_ALGORITHMS ; ++i) {
if (hashes[i].inuse) {
hashes[i].f_init(this->hash_context[i]);
}
}
}
void hash_context_obj::multihash_update(const unsigned char *buf, size_t len)
{
/*
* We no longer have to copy the data being hashed from the buffer we were
* passed into another structure because the SHA-1 update
* routine now copies its own data.
*/
for (int i = 0 ; i < NUM_ALGORITHMS ; ++i) {
if (hashes[i].inuse) {
hashes[i].f_update(this->hash_context[i],buf,len);
}
}
}
/**
* multihash_finalizes finalizes each algorithm and converts to hex.
* Only the hex is preserved.
*/
void hash_context_obj::multihash_finalize(std::string dest[])
{
uint16_t j;
static char hex[] = "0123456789abcdef";
for (int i = 0 ; i < NUM_ALGORITHMS ; ++i) {
dest[i]="";
if (hashes[i].inuse) {
/* Calculate the residue and convert to hex */
uint8_t residue[MAX_ALGORITHM_RESIDUE_SIZE];
hashes[i].f_finalize(this->hash_context[i], residue);
for (j = 0; j < hashes[i].bit_length/8 ; j++) {
dest[i].push_back(hex[(residue[j] >> 4) & 0xf]);
dest[i].push_back(hex[residue[j] & 0xf]);
}
}
}
}