From b01e4d75074c66432534e945c75a8b79135c8d51 Mon Sep 17 00:00:00 2001 From: Alex Guzman Date: Tue, 1 Aug 2017 16:23:36 -0700 Subject: [PATCH] Create X509_STORE ptr type Summary: What it says on tin Reviewed By: knekritz Differential Revision: D5533819 fbshipit-source-id: e3ba89f02d20d171fbcb8ed2853267d37bd86756 --- folly/ssl/OpenSSLPtrTypes.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/folly/ssl/OpenSSLPtrTypes.h b/folly/ssl/OpenSSLPtrTypes.h index 45f47774..7784888f 100644 --- a/folly/ssl/OpenSSLPtrTypes.h +++ b/folly/ssl/OpenSSLPtrTypes.h @@ -32,6 +32,9 @@ using ASN1TimeUniquePtr = std::unique_ptr; // X509 using X509Deleter = folly::static_function_deleter; using X509UniquePtr = std::unique_ptr; +using X509StoreDeleter = + folly::static_function_deleter; +using X509StoreUniquePtr = std::unique_ptr; using X509StoreCtxDeleter = folly::static_function_deleter; using X509StoreCtxUniquePtr = -- 2.34.1