Home
last modified time | relevance | path

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

/system/extras/verity/
Dhash_tree_builder.cpp73 const std::string& hex_string, std::vector<unsigned char>* bytes) { in ParseBytesArrayFromString() argument
74 if (hex_string.size() % 2 != 0) { in ParseBytesArrayFromString()
75 LOG(ERROR) << "Hex string size must be even number " << hex_string; in ParseBytesArrayFromString()
80 if (!BN_hex2bn(&bn, hex_string.c_str())) { in ParseBytesArrayFromString()
81 LOG(ERROR) << "Failed to parse hex in " << hex_string; in ParseBytesArrayFromString()
89 LOG(ERROR) << "Failed to convert hex to bytes " << hex_string; in ParseBytesArrayFromString()