// 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_PARSED_CERTIFICATE_H_ #define CAST_COMMON_CERTIFICATE_BORINGSSL_PARSED_CERTIFICATE_H_ #include <openssl/x509.h> #include <string> #include <vector> #include "cast/common/public/parsed_certificate.h" #include "platform/base/error.h" #include "platform/base/span.h" namespace openscreen::cast { class BoringSSLParsedCertificate final : public ParsedCertificate { … }; } // namespace openscreen::cast #endif // CAST_COMMON_CERTIFICATE_BORINGSSL_PARSED_CERTIFICATE_H_