chromium/components/media_router/common/providers/cast/certificate/net_parsed_certificate.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 COMPONENTS_MEDIA_ROUTER_COMMON_PROVIDERS_CAST_CERTIFICATE_NET_PARSED_CERTIFICATE_H_
#define COMPONENTS_MEDIA_ROUTER_COMMON_PROVIDERS_CAST_CERTIFICATE_NET_PARSED_CERTIFICATE_H_

#include "third_party/boringssl/src/pki/parsed_certificate.h"
#include "third_party/openscreen/src/cast/common/public/parsed_certificate.h"

namespace cast_certificate {

bssl::ParseCertificateOptions GetCertParsingOptions();

class NetParsedCertificate final : public openscreen::cast::ParsedCertificate {};

}  // namespace cast_certificate

#endif  // COMPONENTS_MEDIA_ROUTER_COMMON_PROVIDERS_CAST_CERTIFICATE_NET_PARSED_CERTIFICATE_H_