From 4c7d52264b25ade4758be7631aca68721a2704d5 Mon Sep 17 00:00:00 2001 From: Subodh Iyengar Date: Sat, 12 Nov 2016 17:13:44 -0800 Subject: [PATCH] Add ecdsa smart ptr Summary: Add ecdsa smart ptr. Reviewed By: knekritz Differential Revision: D4173310 fbshipit-source-id: abd5f799b3414b70128635c4390af6f2de329e11 --- folly/io/async/ssl/OpenSSLPtrTypes.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/folly/io/async/ssl/OpenSSLPtrTypes.h b/folly/io/async/ssl/OpenSSLPtrTypes.h index 238dd9be..216decb6 100644 --- a/folly/io/async/ssl/OpenSSLPtrTypes.h +++ b/folly/io/async/ssl/OpenSSLPtrTypes.h @@ -23,6 +23,7 @@ #include #ifndef OPENSSL_NO_EC #include +#include #endif #include #include @@ -87,6 +88,9 @@ using EcGroupDeleter = folly::static_function_deleter; using EcGroupUniquePtr = std::unique_ptr; using EcPointDeleter = folly::static_function_deleter; using EcPointUniquePtr = std::unique_ptr; +using EcdsaSignDeleter = + folly::static_function_deleter; +using EcdsaSigUniquePtr = std::unique_ptr; #endif // BIGNUMs -- 2.34.1