Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

restore some bindings for older pyopenssl temporarily #7137

Merged
merged 1 commit into from Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions src/_cffi_src/build_openssl.py
Expand Up @@ -86,6 +86,7 @@ def _extra_compile_args(platform):
"dh",
"dsa",
"ec",
"ecdh",
"ecdsa",
"engine",
"err",
Expand Down
19 changes: 19 additions & 0 deletions src/_cffi_src/openssl/ecdh.py
@@ -0,0 +1,19 @@
# 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.


INCLUDES = """
#include <openssl/ecdh.h>
"""

TYPES = """
"""

FUNCTIONS = """
/* This function is no longer used by pyOpenSSL >= 22.0 */
long SSL_CTX_set_ecdh_auto(SSL_CTX *, int);
"""

CUSTOMIZATIONS = """
"""
4 changes: 4 additions & 0 deletions src/_cffi_src/openssl/evp.py
Expand Up @@ -128,6 +128,10 @@

EVP_MD_CTX *EVP_MD_CTX_new(void);
void EVP_MD_CTX_free(EVP_MD_CTX *);
/* This function is no longer used by pyOpenSSL >= 22.0 */
EVP_MD_CTX *Cryptography_EVP_MD_CTX_new(void);
/* This function is no longer used by pyOpenSSL >= 22.0 */
void Cryptography_EVP_MD_CTX_free(EVP_MD_CTX *);

/* Added in 1.1.1 */
int EVP_DigestSign(EVP_MD_CTX *, unsigned char *, size_t *,
Expand Down
15 changes: 15 additions & 0 deletions src/_cffi_src/openssl/x509.py
Expand Up @@ -176,6 +176,8 @@
X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *, int);

X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *);
/* This function is no longer used by pyOpenSSL >= 22.0 */
X509_REVOKED *Cryptography_X509_REVOKED_dup(X509_REVOKED *);

const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *);

Expand Down Expand Up @@ -206,11 +208,20 @@
X509_REVOKED *sk_X509_REVOKED_value(Cryptography_STACK_OF_X509_REVOKED *, int);

long X509_CRL_get_version(X509_CRL *);
/* This function is no longer used by pyOpenSSL >= 22.0 */
ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *);
/* This function is no longer used by pyOpenSSL >= 22.0 */
ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *);
const ASN1_TIME *X509_CRL_get0_lastUpdate(const X509_CRL *);
const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *);
X509_NAME *X509_CRL_get_issuer(X509_CRL *);
Cryptography_STACK_OF_X509_REVOKED *X509_CRL_get_REVOKED(X509_CRL *);

/* This function is no longer used by pyOpenSSL >= 22.0 */
int X509_CRL_set_lastUpdate(X509_CRL *, ASN1_TIME *);
/* This function is no longer used by pyOpenSSL >= 22.0 */
int X509_CRL_set_nextUpdate(X509_CRL *, ASN1_TIME *);

int X509_CRL_set1_lastUpdate(X509_CRL *, const ASN1_TIME *);
int X509_CRL_set1_nextUpdate(X509_CRL *, const ASN1_TIME *);

Expand All @@ -225,4 +236,8 @@
"""

CUSTOMIZATIONS = """
/* This function is no longer used by pyOpenSSL >= 22.0 */
X509_REVOKED *Cryptography_X509_REVOKED_dup(X509_REVOKED *rev) {
return X509_REVOKED_dup(rev);
}
"""
3 changes: 3 additions & 0 deletions src/_cffi_src/openssl/x509_vfy.py
Expand Up @@ -94,6 +94,9 @@
static const int X509_V_ERR_IP_ADDRESS_MISMATCH;
static const int X509_V_ERR_APPLICATION_VERIFICATION;

/* This constant is no longer used by pyOpenSSL >= 22.0 */
static const long X509_V_FLAG_CB_ISSUER_CHECK;

/* Verification parameters */
static const long X509_V_FLAG_USE_CHECK_TIME;
static const long X509_V_FLAG_CRL_CHECK;
Expand Down