MCPcopy Create free account
hub / github.com/REhints/HexRaysCodeXplorer / SHA1MessageDigestToString

Function SHA1MessageDigestToString

src/HexRaysCodeXplorer/Utility.cpp:282–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282void SHA1MessageDigestToString(uint8_t Message_Digest[SHA1HashSize], char outbuffer[SHA1HashSize * 2]) {
283 for (int i = 0; i < SHA1HashSize; i++) {
284 outbuffer[i * 2] = int_to_hex(Message_Digest[i] >> 4);
285 outbuffer[i * 2 + 1] = int_to_hex(Message_Digest[i] & 0xF);
286 }
287}
288
289void idaapi setUnknown(ea_t ea, asize_t size)
290{

Callers 1

get_hash_of_stringFunction · 0.85

Calls 1

int_to_hexFunction · 0.85

Tested by

no test coverage detected