X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fssl.h;h=aa719afd8675abf6b2a0b706637fdba9a1467577;hb=fd00d18d6818aa1aca2d19b7b625640d332d910d;hp=ed9f8068acce0f8648400f66921d8998a51f4660;hpb=0585137946bb302982364d681bf1c398834585e4;p=umurmur.git diff --git a/src/ssl.h b/src/ssl.h index ed9f806..aa719af 100644 --- a/src/ssl.h +++ b/src/ssl.h @@ -124,4 +124,17 @@ static inline void SSLi_hash2hex(uint8_t *hash, char *out) for (i = 0; i < 20; i++) offset += sprintf(out + offset, "%02x", hash[i]); } +static inline void SSLi_hex2hash(char *in, uint8_t *hash) +{ + int i, offset = 0; + char byte[3]; + int scanned; + + byte[2] = '\0'; + for (i = 0; i < 20; i++) { + memcpy(byte, &in[i * 2], 2); + sscanf(byte, "%02x", &scanned); + hash[i] = scanned; + } +} #endif