// 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_CERT_ISSUER_SOURCE_STATIC_H_ #define BSSL_PKI_CERT_ISSUER_SOURCE_STATIC_H_ #include <unordered_map> #include <vector> #include <openssl/base.h> #include "cert_issuer_source.h" BSSL_NAMESPACE_BEGIN // Synchronously returns issuers from a pre-supplied set. class OPENSSL_EXPORT CertIssuerSourceStatic : public CertIssuerSource { … }; BSSL_NAMESPACE_END #endif // BSSL_PKI_CERT_ISSUER_SOURCE_STATIC_H_