From 5f3b4cc1bf44dce16dc851f5430fd1957778f69e Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 17 Jun 2025 16:36:55 +0200 Subject: [PATCH] Security: add sec_keychain, sec_certificate Signed-off-by: Simon Rozman --- include/MacStd/Security.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/MacStd/Security.hpp b/include/MacStd/Security.hpp index 71a155b..b0e5403 100644 --- a/include/MacStd/Security.hpp +++ b/include/MacStd/Security.hpp @@ -7,7 +7,7 @@ #include "common.hpp" #include "CoreFoundation.hpp" -#import +#include namespace macstd { @@ -131,4 +131,7 @@ namespace macstd AuthorizationFree(this->m_h, kAuthorizationFlagDefaults); } }; + + using sec_keychain = cf_object(NULL)>; + using sec_certificate = cf_object(NULL)>; }