LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "burp.h" 2 : #include "hexmap.h" 3 : 4 7433 : char *bytes_to_md5str(uint8_t *bytes) 5 : { 6 : static char str[64]; 7 22299 : snprintf(str, sizeof(str), "%016" PRIx64 "%016" PRIx64, 8 : htobe64(*(uint64_t *)bytes), htobe64(*(uint64_t *)(bytes+8))); 9 7433 : return str; 10 : } |
Generated by: LCOV version 1.13 |