File tree 2 files changed +0
-9
lines changed
cryptography/hazmat/bindings/openssl
2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change 20
20
static const int EVP_PKEY_RSA_PSS;
21
21
static const int EVP_PKEY_DSA;
22
22
static const int EVP_PKEY_DH;
23
- static const int EVP_PKEY_DHX;
24
23
static const int EVP_PKEY_EC;
25
24
static const int EVP_PKEY_X25519;
26
25
static const int EVP_PKEY_ED25519;
93
92
const long Cryptography_HAS_EVP_PKEY_DHX = 1;
94
93
#else
95
94
const long Cryptography_HAS_EVP_PKEY_DHX = 0;
96
- const long EVP_PKEY_DHX = -1;
97
95
#endif
98
96
99
97
#if CRYPTOGRAPHY_IS_LIBRESSL || defined(OPENSSL_NO_SCRYPT)
Original file line number Diff line number Diff line change @@ -28,12 +28,6 @@ def cryptography_has_tls_st() -> list[str]:
28
28
]
29
29
30
30
31
- def cryptography_has_evp_pkey_dhx () -> list [str ]:
32
- return [
33
- "EVP_PKEY_DHX" ,
34
- ]
35
-
36
-
37
31
def cryptography_has_mem_functions () -> list [str ]:
38
32
return [
39
33
"Cryptography_CRYPTO_set_mem_functions" ,
@@ -208,7 +202,6 @@ def cryptography_has_get_extms_support() -> list[str]:
208
202
"Cryptography_HAS_SET_CERT_CB" : cryptography_has_set_cert_cb ,
209
203
"Cryptography_HAS_SSL_ST" : cryptography_has_ssl_st ,
210
204
"Cryptography_HAS_TLS_ST" : cryptography_has_tls_st ,
211
- "Cryptography_HAS_EVP_PKEY_DHX" : cryptography_has_evp_pkey_dhx ,
212
205
"Cryptography_HAS_MEM_FUNCTIONS" : cryptography_has_mem_functions ,
213
206
"Cryptography_HAS_ED448" : cryptography_has_ed448 ,
214
207
"Cryptography_HAS_SIGALGS" : cryptography_has_ssl_sigalgs ,
You can’t perform that action at this time.
0 commit comments