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.h61 optional<vector<uint8_t>> decodeHex(const string& hexEncoded);
/hardware/interfaces/identity/support/src/
DIdentityCredentialSupport.cpp126 optional<vector<uint8_t>> decodeHex(const string& hexEncoded) { in decodeHex() argument
128 size_t hexSize = hexEncoded.size(); in decodeHex()
136 int upperNibble = parseHexDigit(hexEncoded[n * 2]); in decodeHex()
137 int lowerNibble = parseHexDigit(hexEncoded[n * 2 + 1]); in decodeHex()