// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BSSL_PKI_TRUST_STORE_COLLECTION_H_ #define BSSL_PKI_TRUST_STORE_COLLECTION_H_ #include <openssl/base.h> #include "trust_store.h" BSSL_NAMESPACE_BEGIN // TrustStoreCollection is an implementation of TrustStore which combines the // results from multiple TrustStores. // // The order of the matches will correspond to a concatenation of matches in // the order the stores were added. class OPENSSL_EXPORT TrustStoreCollection : public TrustStore { … }; BSSL_NAMESPACE_END #endif // BSSL_PKI_TRUST_STORE_COLLECTION_H_