From 8899ace5ba8dea50c9b13acb73d670a4c9f94ec5 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 26 Jul 2024 10:20:46 -0400 Subject: [PATCH] Delete src/_cffi_src/openssl/pkcs7.py We already weren't building this (oops) --- src/_cffi_src/openssl/pkcs7.py | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/_cffi_src/openssl/pkcs7.py diff --git a/src/_cffi_src/openssl/pkcs7.py b/src/_cffi_src/openssl/pkcs7.py deleted file mode 100644 index 27631f48c04d..000000000000 --- a/src/_cffi_src/openssl/pkcs7.py +++ /dev/null @@ -1,21 +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 annotations - -INCLUDES = """ -#include -""" - -TYPES = """ -typedef ... PKCS7; -""" - -FUNCTIONS = """ -void PKCS7_free(PKCS7 *); -PKCS7 *SMIME_read_PKCS7(BIO *, BIO **); -""" - -CUSTOMIZATIONS = """ -"""