Home
last modified time | relevance | path

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

/aosp_15_r20/external/ot-br-posix/third_party/Simple-web-server/repo/tests/
H A Dcrypto_test.cpp42 ASSERT(Crypto::to_hex_string(Crypto::md5(string_test.first)) == string_test.second); in main()
44 ASSERT(Crypto::to_hex_string(Crypto::md5(ss)) == string_test.second); in main()
48 ASSERT(Crypto::to_hex_string(Crypto::sha1(string_test.first)) == string_test.second); in main()
50 ASSERT(Crypto::to_hex_string(Crypto::sha1(ss)) == string_test.second); in main()
54 ASSERT(Crypto::to_hex_string(Crypto::sha256(string_test.first)) == string_test.second); in main()
56 ASSERT(Crypto::to_hex_string(Crypto::sha256(ss)) == string_test.second); in main()
60 ASSERT(Crypto::to_hex_string(Crypto::sha512(string_test.first)) == string_test.second); in main()
62 ASSERT(Crypto::to_hex_string(Crypto::sha512(ss)) == string_test.second); in main()
66 …ASSERT(Crypto::to_hex_string(Crypto::sha1("Test", 1)) == "640ab2bae07bedc4c163f679a746f7ab7fb5d1fa… in main()
67 …ASSERT(Crypto::to_hex_string(Crypto::sha1("Test", 2)) == "af31c6cbdecd88726d0a9b3798c71ef41f1624d5… in main()
[all …]
/aosp_15_r20/packages/modules/Bluetooth/system/tools/irk-calculator/src/
Dmain.rs74 fn to_hex_string(bytes: Vec<u8>) -> String { in to_hex_string() function
170 println!("Calculated Address: {}", to_hex_string(calculated_address.to_vec())); in generate_irk_address()
171 to_hex_string(calculated_address.to_vec()) in generate_irk_address()
/aosp_15_r20/system/extras/simpleperf/
H A Dcmd_list.cpp85 std::string to_hex_string(uint64_t value) { in to_hex_string() function
97 std::string marchid_hex = to_hex_string(get<1>(cpu_id)); in find_cpu_name()
98 std::string mimpid_hex = to_hex_string(get<2>(cpu_id)); in find_cpu_name()
/aosp_15_r20/external/skia/src/core/
H A DSkMD5.cpp102 static SkString to_hex_string(const uint8_t* data, const char* hexDigits) { in to_hex_string() function
113 return to_hex_string(data, SkHexadecimalDigits::gUpper); in toHexString()
117 return to_hex_string(data, SkHexadecimalDigits::gLower); in toLowercaseHexString()
/aosp_15_r20/external/ot-br-posix/third_party/Simple-web-server/repo/
H A Dcrypto.hpp93 static std::string to_hex_string(const std::string &input) noexcept { in to_hex_string() function in SimpleWeb::Crypto