blob: bebb3573837c4c834fd5c760511338cd08c00bf5 [file] [log] [blame] [edit]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/ssl/client_cert_store_empty.h"
#include <utility>
#include "net/cert/x509_certificate.h"
#include "net/ssl/ssl_private_key.h"
namespace net {
ClientCertStoreEmpty::ClientCertStoreEmpty() = default;
ClientCertStoreEmpty::~ClientCertStoreEmpty() = default;
void ClientCertStoreEmpty::GetClientCerts(
scoped_refptr<const SSLCertRequestInfo> cert_request_info,
ClientCertListCallback callback) {
std::move(callback).Run(ClientCertIdentityList());
}
} // namespace net