chromium/net/cert/internal/platform_trust_store.h

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

#ifndef NET_CERT_INTERNAL_PLATFORM_TRUST_STORE_H_
#define NET_CERT_INTERNAL_PLATFORM_TRUST_STORE_H_

#include <vector>

#include "net/base/net_export.h"
#include "third_party/boringssl/src/pki/parsed_certificate.h"
#include "third_party/boringssl/src/pki/trust_store.h"

namespace net {

// Extension of bssl::TrustStore that supports enumerating all
// user added certs.
class NET_EXPORT PlatformTrustStore : public bssl::TrustStore {};

}  // namespace net

#endif  // NET_CERT_INTERNAL_PLATFORM_TRUST_STORE_H_