Searched refs:hexits (Results 1 – 2 of 2) sorted by relevance
158 static const char hexits[17] = "0123456789abcdef"; in php_hash_bin2hex() local162 out[i * 2] = hexits[in[i] >> 4]; in php_hash_bin2hex()163 out[(i * 2) + 1] = hexits[in[i] & 0x0F]; in php_hash_bin2hex()
34 static const char hexits[17] = "0123456789abcdef"; in make_digest_ex() local38 md5str[i * 2] = hexits[digest[i] >> 4]; in make_digest_ex()39 md5str[(i * 2) + 1] = hexits[digest[i] & 0x0F]; in make_digest_ex()
Completed in 8 milliseconds