Home
last modified time | relevance | path

Searched refs:zEncode (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c3393 static const char zEncode[] = "0123456789abcdef"; in hash_finish() local
3411 zOut[i*2] = zEncode[(digest[i]>>4)&0xf]; in hash_finish()
3412 zOut[i*2+1] = zEncode[digest[i] & 0xf]; in hash_finish()