Skip to content

Commit fc00112

Browse files
authored
Remove a smattering of remaining bindings (#12066)
1 parent 0c7eeb1 commit fc00112

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

src/_cffi_src/openssl/asn1.py

-6
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
4040
/* ASN1 INTEGER */
4141
void ASN1_INTEGER_free(ASN1_INTEGER *);
42-
int ASN1_INTEGER_set(ASN1_INTEGER *, long);
4342
4443
/* ASN1 TIME */
4544
ASN1_TIME *ASN1_TIME_new(void);
@@ -49,11 +48,6 @@
4948
/* ASN1 GENERALIZEDTIME */
5049
void ASN1_GENERALIZEDTIME_free(ASN1_GENERALIZEDTIME *);
5150
52-
/* ASN1 ENUMERATED */
53-
ASN1_ENUMERATED *ASN1_ENUMERATED_new(void);
54-
void ASN1_ENUMERATED_free(ASN1_ENUMERATED *);
55-
int ASN1_ENUMERATED_set(ASN1_ENUMERATED *, long);
56-
5751
int ASN1_STRING_type(const ASN1_STRING *);
5852
int ASN1_STRING_to_UTF8(unsigned char **, const ASN1_STRING *);
5953
int i2a_ASN1_INTEGER(BIO *, const ASN1_INTEGER *);

src/_cffi_src/openssl/nid.py

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
static const int NID_undef;
1313
1414
static const int NID_subject_alt_name;
15-
static const int NID_crl_reason;
1615
"""
1716

1817
FUNCTIONS = """

src/_cffi_src/openssl/rand.py

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
FUNCTIONS = """
1515
void RAND_add(const void *, int, double);
1616
int RAND_status(void);
17-
int RAND_bytes(unsigned char *, int);
1817
"""
1918

2019
CUSTOMIZATIONS = """

0 commit comments

Comments
 (0)