Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DLockscreenCredential.java351 final char[] hexEncoded = HexEncoding.encode(combined); in legacyPasswordToHash() local
353 return new String(hexEncoded); in legacyPasswordToHash()
/aosp12/hardware/interfaces/identity/support/include/android/hardware/identity/support/
H A DIdentityCredentialSupport.h66 optional<vector<uint8_t>> decodeHex(const string& hexEncoded);
/aosp12/hardware/interfaces/identity/support/src/
H A DIdentityCredentialSupport.cpp128 optional<vector<uint8_t>> decodeHex(const string& hexEncoded) { in decodeHex() argument
130 size_t hexSize = hexEncoded.size(); in decodeHex()
138 int upperNibble = parseHexDigit(hexEncoded[n * 2]); in decodeHex()
139 int lowerNibble = parseHexDigit(hexEncoded[n * 2 + 1]); in decodeHex()