1 // Copyright 2024 The ChromiumOS Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef TPM_GENERATED_HEX_H_ 6 #define TPM_GENERATED_HEX_H_ 7 8 #include <string> 9 10 namespace trunks { 11 12 std::string HexEncode(const char* data, std::size_t len); 13 14 } // namespace trunks 15 16 #endif // TPM_GENERATED_HEX_H_ 17