Searched refs:hexEncoded (Results 1 – 3 of 3) sorted by relevance
351 final char[] hexEncoded = HexEncoding.encode(combined); in legacyPasswordToHash() local353 return new String(hexEncoded); in legacyPasswordToHash()
66 optional<vector<uint8_t>> decodeHex(const string& hexEncoded);
128 optional<vector<uint8_t>> decodeHex(const string& hexEncoded) { in decodeHex() argument130 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()