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