Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/test/
Dfile_test.cc269 static bool FromHexDigit(uint8_t *out, char c) { in FromHexDigit() function
304 if (!FromHexDigit(&hi, value[i]) || !FromHexDigit(&lo, value[i + 1])) { in GetBytes()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc200 static bool FromHexDigit(uint8_t *out, char c) { in FromHexDigit() function
224 if (!FromHexDigit(&high, in[i*2]) || in HexDecode()
225 !FromHexDigit(&low, in[i*2+1])) { in HexDecode()