Searched refs:zEncode (Results 1 – 1 of 1) sorted by relevance
5432 static const char zEncode[] = "0123456789abcdef"; in hash_finish() local5450 zOut[i*2] = zEncode[(digest[i]>>4)&0xf]; in hash_finish()5451 zOut[i*2+1] = zEncode[digest[i] & 0xf]; in hash_finish()