Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions src/_cffi_src/openssl/asn1.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,11 @@
typedef int... time_t;

typedef ... ASN1_INTEGER;

struct asn1_string_st {
int length;
int type;
unsigned char *data;
long flags;
};

typedef struct asn1_string_st ASN1_OCTET_STRING;
typedef struct asn1_string_st ASN1_IA5STRING;
typedef struct asn1_string_st ASN1_TIME;
typedef ... ASN1_OCTET_STRING;
typedef ... ASN1_IA5STRING;
typedef ... ASN1_TIME;
typedef ... ASN1_OBJECT;
typedef struct asn1_string_st ASN1_STRING;
typedef ... ASN1_STRING;
typedef ... ASN1_GENERALIZEDTIME;
typedef ... ASN1_ENUMERATED;

Expand Down
Loading