// 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_PUBLIC_PARSED_CERTIFICATE_H_ #define CAST_COMMON_PUBLIC_PARSED_CERTIFICATE_H_ #include <cstdint> #include <memory> #include <string> #include <vector> #include "cast/common/public/certificate_types.h" #include "platform/base/error.h" #include "platform/base/span.h" namespace openscreen::cast { enum class DigestAlgorithm { … }; // This class represents a certificate that may already be parsed into its // component fields for easier access. The field access is limited to what is // relevant to Cast device authentication. class ParsedCertificate { … }; } // namespace openscreen::cast #endif // CAST_COMMON_PUBLIC_PARSED_CERTIFICATE_H_