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