Home
last modified time | relevance | path

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

/hardware/interfaces/identity/support/include/android/hardware/identity/support/
DIdentityCredentialSupport.h68 optional<vector<uint8_t>> decodeHex(const string& hexEncoded);
/hardware/interfaces/identity/support/src/
DIdentityCredentialSupport.cpp129 optional<vector<uint8_t>> decodeHex(const string& hexEncoded) { in decodeHex() argument
131 size_t hexSize = hexEncoded.size(); in decodeHex()
139 int upperNibble = parseHexDigit(hexEncoded[n * 2]); in decodeHex()
140 int lowerNibble = parseHexDigit(hexEncoded[n * 2 + 1]); in decodeHex()