aboutsummaryrefslogtreecommitdiff
path: root/src/pki/trust_store_collection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pki/trust_store_collection.h')
-rw-r--r--src/pki/trust_store_collection.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/pki/trust_store_collection.h b/src/pki/trust_store_collection.h
index 239d5e0..494909e 100644
--- a/src/pki/trust_store_collection.h
+++ b/src/pki/trust_store_collection.h
@@ -5,7 +5,7 @@
#ifndef BSSL_PKI_TRUST_STORE_COLLECTION_H_
#define BSSL_PKI_TRUST_STORE_COLLECTION_H_
-#include "fillins/openssl_util.h"
+#include <openssl/base.h>
#include "trust_store.h"
@@ -20,24 +20,24 @@ class OPENSSL_EXPORT TrustStoreCollection : public TrustStore {
public:
TrustStoreCollection();
- TrustStoreCollection(const TrustStoreCollection&) = delete;
- TrustStoreCollection& operator=(const TrustStoreCollection&) = delete;
+ TrustStoreCollection(const TrustStoreCollection &) = delete;
+ TrustStoreCollection &operator=(const TrustStoreCollection &) = delete;
~TrustStoreCollection() override;
// Includes results from |store| in the combined output. |store| must
// outlive the TrustStoreCollection.
- void AddTrustStore(TrustStore* store);
+ void AddTrustStore(TrustStore *store);
// TrustStore implementation:
- void SyncGetIssuersOf(const ParsedCertificate* cert,
- ParsedCertificateList* issuers) override;
- CertificateTrust GetTrust(const ParsedCertificate* cert) override;
+ void SyncGetIssuersOf(const ParsedCertificate *cert,
+ ParsedCertificateList *issuers) override;
+ CertificateTrust GetTrust(const ParsedCertificate *cert) override;
private:
- std::vector<TrustStore*> stores_;
+ std::vector<TrustStore *> stores_;
};
-} // namespace net
+} // namespace bssl
#endif // BSSL_PKI_TRUST_STORE_COLLECTION_H_