chromium/third_party/openscreen/src/cast/receiver/channel/testing/device_auth_test_helpers.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cast/receiver/channel/testing/device_auth_test_helpers.h"

#include <string>
#include <utility>

#include "cast/common/certificate/testing/test_helpers.h"
#include "cast/common/public/parsed_certificate.h"
#include "cast/common/public/trust_store.h"
#include "gtest/gtest.h"
#include "util/crypto/pem_helpers.h"

namespace openscreen::cast {

void InitStaticCredentialsFromFiles(
    StaticCredentialsProvider* creds,
    std::unique_ptr<ParsedCertificate>* parsed_cert,
    std::unique_ptr<TrustStore>* fake_trust_store,
    std::string_view privkey_filename,
    std::string_view chain_filename,
    std::string_view tls_filename) {}

}  // namespace openscreen::cast