chromium/third_party/openscreen/src/cast/common/certificate/boringssl_trust_store.h

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

#ifndef CAST_COMMON_CERTIFICATE_BORINGSSL_TRUST_STORE_H_
#define CAST_COMMON_CERTIFICATE_BORINGSSL_TRUST_STORE_H_

#include <openssl/x509.h>

#include <cstdint>
#include <string>
#include <vector>

#include "cast/common/public/trust_store.h"

namespace openscreen::cast {

class BoringSSLTrustStore final : public TrustStore {};

}  // namespace openscreen::cast

#endif  // CAST_COMMON_CERTIFICATE_BORINGSSL_TRUST_STORE_H_