From 50d1805b7cca96b836ca5a40f159f984f00e806c Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Wed, 23 Dec 2015 21:43:15 +0000 Subject: Add binding for CommonCrypto SecTrustCopyAnchorCertificates --- src/_cffi_src/build_commoncrypto.py | 1 + src/_cffi_src/commoncrypto/sectrust.py | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 src/_cffi_src/commoncrypto/sectrust.py (limited to 'src') diff --git a/src/_cffi_src/build_commoncrypto.py b/src/_cffi_src/build_commoncrypto.py index 1c2692a7..4e69b6d1 100644 --- a/src/_cffi_src/build_commoncrypto.py +++ b/src/_cffi_src/build_commoncrypto.py @@ -22,6 +22,7 @@ ffi = build_ffi_for_binding( "seckey", "seckeychain", "sectransform", + "sectrust", ], extra_link_args=[ "-framework", "Security", "-framework", "CoreFoundation" diff --git a/src/_cffi_src/commoncrypto/sectrust.py b/src/_cffi_src/commoncrypto/sectrust.py new file mode 100644 index 00000000..5330afd4 --- /dev/null +++ b/src/_cffi_src/commoncrypto/sectrust.py @@ -0,0 +1,22 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import absolute_import, division, print_function + +INCLUDES = """ +#include +""" + +TYPES = """ +""" + +FUNCTIONS = """ +OSStatus SecTrustCopyAnchorCertificates ( CFArrayRef *anchors ); +""" + +MACROS = """ +""" + +CUSTOMIZATIONS = """ +""" -- cgit v1.2.3 From 1b2a3ea74ee66513c80a738841855eada6126090 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Wed, 23 Dec 2015 21:45:55 +0000 Subject: Remove spaces. --- src/_cffi_src/commoncrypto/sectrust.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/_cffi_src/commoncrypto/sectrust.py b/src/_cffi_src/commoncrypto/sectrust.py index 5330afd4..b787afad 100644 --- a/src/_cffi_src/commoncrypto/sectrust.py +++ b/src/_cffi_src/commoncrypto/sectrust.py @@ -12,7 +12,7 @@ TYPES = """ """ FUNCTIONS = """ -OSStatus SecTrustCopyAnchorCertificates ( CFArrayRef *anchors ); +OSStatus SecTrustCopyAnchorCertificates(CFArrayRef *); """ MACROS = """ -- cgit v1.2.3