blob: bc01f244c25a1cc82c32bc9a925e761a91a46f73 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_COBALT_BIN_APP_UTILS_H_
#define SRC_COBALT_BIN_APP_UTILS_H_
#include <fuchsia/metrics/cpp/fidl.h>
#include <lib/fpromise/result.h>
#include <stdlib.h>
#include <string>
#include "third_party/cobalt/src/public/lib/status.h"
namespace cobalt {
fpromise::result<void, fuchsia::metrics::Error> ToMetricsResult(const Status &s);
// Reads the PEM file at the specified path and returns the contents as
// a string. CHECK fails if the file cannot be read.
std::string ReadPublicKeyPem(const std::string &pem_file_path);
} // namespace cobalt
#endif // SRC_COBALT_BIN_APP_UTILS_H_