aboutsummaryrefslogtreecommitdiff
path: root/src/pki/trust_store_collection.h
diff options
context:
space:
mode:
authorBoringSSL Robot <178796648329-compute@developer.gserviceaccount.com>2024-04-12 13:48:42 +0000
committerBoringSSL Robot <178796648329-compute@developer.gserviceaccount.com>2024-04-12 13:48:42 +0000
commitc638ed8a1bc33c3f08113d9dcf165820764728a2 (patch)
tree1c71f6c6d115b555b9cb072910a3661d8ca00ed7 /src/pki/trust_store_collection.h
parent8ed092b54604624002a054bf10c34357f71e7a66 (diff)
parent23824fa0fed94f4660ffafb15aaea8b317f2c8a6 (diff)
downloadboringssl-chromium-stable-with-bazel.zip
boringssl-chromium-stable-with-bazel.tar.gz
boringssl-chromium-stable-with-bazel.tar.bz2
update chromium-stable-with-bazel from chromium-stable branchchromium-stable-with-bazel
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_