diff options
Diffstat (limited to 'src/_cffi_src/commoncrypto/seccertificate.py')
-rw-r--r-- | src/_cffi_src/commoncrypto/seccertificate.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/_cffi_src/commoncrypto/seccertificate.py b/src/_cffi_src/commoncrypto/seccertificate.py deleted file mode 100644 index 2b54b0ee..00000000 --- a/src/_cffi_src/commoncrypto/seccertificate.py +++ /dev/null @@ -1,23 +0,0 @@ -# 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 <Security/SecCertificate.h> -""" - -TYPES = """ -typedef ... *SecCertificateRef; -""" - -FUNCTIONS = """ -SecCertificateRef SecCertificateCreateWithData(CFAllocatorRef, CFDataRef); -""" - -MACROS = """ -""" - -CUSTOMIZATIONS = """ -""" |