#ifndef CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_ATTESTATION_COMMON_ATTESTATION_UTILS_H_
#define CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_ATTESTATION_COMMON_ATTESTATION_UTILS_H_
#include <string>
#include "base/values.h"
#include "chrome/browser/enterprise/connectors/device_trust/attestation/common/signals_type.h"
namespace enterprise_connectors {
std::string ProtobufChallengeToJsonChallenge(
const std::string& challenge_response);
std::unique_ptr<SignalsType> DictionarySignalsToProtobufSignals(
const base::Value::Dict& signals_dict);
}
#endif