Spaces:
Running
Running
/* | |
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. | |
* | |
* Licensed under the OpenSSL license (the "License"). You may not use | |
* this file except in compliance with the License. You can obtain a copy | |
* in the file LICENSE in the source distribution or at | |
* https://www.openssl.org/source/license.html | |
*/ | |
extern "C" { | |
/* ASN.1 tag values */ | |
/* | |
* NB the constants below are used internally by ASN1_INTEGER | |
* and ASN1_ENUMERATED to indicate the sign. They are *not* on | |
* the wire tag values. | |
*/ | |
/* For use with d2i_ASN1_type_bytes() */ | |
/* For use with ASN1_mbstring_copy() */ | |
struct X509_algor_st; | |
DEFINE_STACK_OF(X509_ALGOR) | |
/* | |
* This indicates that the ASN1_STRING is not a real value but just a place | |
* holder for the location where indefinite length constructed data should be | |
* inserted in the memory buffer | |
*/ | |
/* | |
* This flag is used by the CMS code to indicate that a string is not | |
* complete and is a place holder for content when it had all been accessed. | |
* The flag will be reset when content has been written to it. | |
*/ | |
/* | |
* This flag is used by ASN1 code to indicate an ASN1_STRING is an MSTRING | |
* type. | |
*/ | |
/* String is embedded and only content should be freed */ | |
/* String should be parsed in RFC 5280's time format */ | |
/* This is the base type that holds just about everything :-) */ | |
struct asn1_string_st { | |
int length; | |
int type; | |
unsigned char *data; | |
/* | |
* The value of the following field depends on the type being held. It | |
* is mostly being used for BIT_STRING so if the input data has a | |
* non-zero 'unused bits' value, it will be handled correctly | |
*/ | |
long flags; | |
}; | |
/* | |
* ASN1_ENCODING structure: this is used to save the received encoding of an | |
* ASN1 type. This is useful to get round problems with invalid encodings | |
* which can break signatures. | |
*/ | |
typedef struct ASN1_ENCODING_st { | |
unsigned char *enc; /* DER encoding */ | |
long len; /* Length of encoding */ | |
int modified; /* set to 1 if 'enc' is invalid */ | |
} ASN1_ENCODING; | |
/* Used with ASN1 LONG type: if a long is set to this it is omitted */ | |
/* | |
* A zero passed to ASN1_STRING_TABLE_new_add for the flags is interpreted | |
* as "don't change" and STABLE_FLAGS_MALLOC is always set. By setting | |
* STABLE_FLAGS_MALLOC only we can clear the existing value. Use the alias | |
* STABLE_FLAGS_CLEAR to reflect this. | |
*/ | |
typedef struct asn1_string_table_st { | |
int nid; | |
long minsize; | |
long maxsize; | |
unsigned long mask; | |
unsigned long flags; | |
} ASN1_STRING_TABLE; | |
DEFINE_STACK_OF(ASN1_STRING_TABLE) | |
/* size limits: this stuff is taken straight from RFC2459 */ | |
/* | |
* Declarations for template structures: for full definitions see asn1t.h | |
*/ | |
typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE; | |
typedef struct ASN1_TLC_st ASN1_TLC; | |
/* This is just an opaque pointer */ | |
typedef struct ASN1_VALUE_st ASN1_VALUE; | |
/* Declare ASN1 functions: the implement macro in in asn1t.h */ | |
TYPEDEF_D2I2D_OF(void); | |
/*- | |
* The following macros and typedefs allow an ASN1_ITEM | |
* to be embedded in a structure and referenced. Since | |
* the ASN1_ITEM pointers need to be globally accessible | |
* (possibly from shared libraries) they may exist in | |
* different forms. On platforms that support it the | |
* ASN1_ITEM structure itself will be globally exported. | |
* Other platforms will export a function that returns | |
* an ASN1_ITEM pointer. | |
* | |
* To handle both cases transparently the macros below | |
* should be used instead of hard coding an ASN1_ITEM | |
* pointer in a structure. | |
* | |
* The structure will look like this: | |
* | |
* typedef struct SOMETHING_st { | |
* ... | |
* ASN1_ITEM_EXP *iptr; | |
* ... | |
* } SOMETHING; | |
* | |
* It would be initialised as e.g.: | |
* | |
* SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...}; | |
* | |
* and the actual pointer extracted with: | |
* | |
* const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr); | |
* | |
* Finally an ASN1_ITEM pointer can be extracted from an | |
* appropriate reference with: ASN1_ITEM_rptr(X509). This | |
* would be used when a function takes an ASN1_ITEM * argument. | |
* | |
*/ | |
/* ASN1_ITEM pointer exported type */ | |
typedef const ASN1_ITEM ASN1_ITEM_EXP; | |
/* Macro to obtain ASN1_ITEM pointer from exported type */ | |
/* Macro to include ASN1_ITEM pointer from base type */ | |
/* | |
* Platforms that can't easily handle shared global variables are declared as | |
* functions returning ASN1_ITEM pointers. | |
*/ | |
/* ASN1_ITEM pointer exported type */ | |
typedef const ASN1_ITEM *ASN1_ITEM_EXP (void); | |
/* Macro to obtain ASN1_ITEM pointer from exported type */ | |
/* Macro to include ASN1_ITEM pointer from base type */ | |
/* Parameters used by ASN1_STRING_print_ex() */ | |
/* | |
* These determine which characters to escape: RFC2253 special characters, | |
* control characters and MSB set characters | |
*/ | |
/* | |
* This flag determines how we do escaping: normally RC2253 backslash only, | |
* set this to use backslash and quote. | |
*/ | |
/* These three flags are internal use only. */ | |
/* Character is a valid PrintableString character */ | |
/* Character needs escaping if it is the first character */ | |
/* Character needs escaping if it is the last character */ | |
/* | |
* NB the internal flags are safely reused below by flags handled at the top | |
* level. | |
*/ | |
/* | |
* If this is set we convert all character strings to UTF8 first | |
*/ | |
/* | |
* If this is set we don't attempt to interpret content: just assume all | |
* strings are 1 byte per character. This will produce some pretty odd | |
* looking output! | |
*/ | |
/* If this is set we include the string type in the output */ | |
/* | |
* This determines which strings to display and which to 'dump' (hex dump of | |
* content octets or DER encoding). We can only dump non character strings or | |
* everything. If we don't dump 'unknown' they are interpreted as character | |
* strings with 1 octet per character and are subject to the usual escaping | |
* options. | |
*/ | |
/* | |
* These determine what 'dumping' does, we can dump the content octets or the | |
* DER encoding: both use the RFC2253 #XXXXX notation. | |
*/ | |
/* | |
* This flag specifies that RC2254 escaping shall be performed. | |
*/ | |
/* | |
* All the string flags consistent with RFC2253, escaping control characters | |
* isn't essential in RFC2253 but it is advisable anyway. | |
*/ | |
DEFINE_STACK_OF(ASN1_INTEGER) | |
DEFINE_STACK_OF(ASN1_GENERALSTRING) | |
DEFINE_STACK_OF(ASN1_UTF8STRING) | |
typedef struct asn1_type_st { | |
int type; | |
union { | |
char *ptr; | |
ASN1_BOOLEAN boolean; | |
ASN1_STRING *asn1_string; | |
ASN1_OBJECT *object; | |
ASN1_INTEGER *integer; | |
ASN1_ENUMERATED *enumerated; | |
ASN1_BIT_STRING *bit_string; | |
ASN1_OCTET_STRING *octet_string; | |
ASN1_PRINTABLESTRING *printablestring; | |
ASN1_T61STRING *t61string; | |
ASN1_IA5STRING *ia5string; | |
ASN1_GENERALSTRING *generalstring; | |
ASN1_BMPSTRING *bmpstring; | |
ASN1_UNIVERSALSTRING *universalstring; | |
ASN1_UTCTIME *utctime; | |
ASN1_GENERALIZEDTIME *generalizedtime; | |
ASN1_VISIBLESTRING *visiblestring; | |
ASN1_UTF8STRING *utf8string; | |
/* | |
* set and sequence are left complete and still contain the set or | |
* sequence bytes | |
*/ | |
ASN1_STRING *set; | |
ASN1_STRING *sequence; | |
ASN1_VALUE *asn1_value; | |
} value; | |
} ASN1_TYPE; | |
DEFINE_STACK_OF(ASN1_TYPE) | |
typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY; | |
DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY) | |
DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY) | |
/* This is used to contain a list of bit names */ | |
typedef struct BIT_STRING_BITNAME_st { | |
int bitnum; | |
const char *lname; | |
const char *sname; | |
} BIT_STRING_BITNAME; | |
DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE) | |
int ASN1_TYPE_get(const ASN1_TYPE *a); | |
void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value); | |
int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value); | |
int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b); | |
ASN1_TYPE *ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s, ASN1_TYPE **t); | |
void *ASN1_TYPE_unpack_sequence(const ASN1_ITEM *it, const ASN1_TYPE *t); | |
ASN1_OBJECT *ASN1_OBJECT_new(void); | |
void ASN1_OBJECT_free(ASN1_OBJECT *a); | |
int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp); | |
ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp, | |
long length); | |
DECLARE_ASN1_ITEM(ASN1_OBJECT) | |
DEFINE_STACK_OF(ASN1_OBJECT) | |
ASN1_STRING *ASN1_STRING_new(void); | |
void ASN1_STRING_free(ASN1_STRING *a); | |
void ASN1_STRING_clear_free(ASN1_STRING *a); | |
int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str); | |
ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *a); | |
ASN1_STRING *ASN1_STRING_type_new(int type); | |
int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b); | |
/* | |
* Since this is used to store all sorts of things, via macros, for now, | |
* make its data void * | |
*/ | |
int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len); | |
void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len); | |
int ASN1_STRING_length(const ASN1_STRING *x); | |
void ASN1_STRING_length_set(ASN1_STRING *x, int n); | |
int ASN1_STRING_type(const ASN1_STRING *x); | |
DEPRECATEDIN_1_1_0(unsigned char *ASN1_STRING_data(ASN1_STRING *x)) | |
const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *x); | |
DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING) | |
int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length); | |
int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value); | |
int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n); | |
int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a, | |
const unsigned char *flags, int flags_len); | |
int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, | |
BIT_STRING_BITNAME *tbl, int indent); | |
int ASN1_BIT_STRING_num_asc(const char *name, BIT_STRING_BITNAME *tbl); | |
int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, const char *name, int value, | |
BIT_STRING_BITNAME *tbl); | |
DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER) | |
ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp, | |
long length); | |
ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x); | |
int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y); | |
DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED) | |
int ASN1_UTCTIME_check(const ASN1_UTCTIME *a); | |
ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t); | |
ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, | |
int offset_day, long offset_sec); | |
int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str); | |
int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t); | |
int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a); | |
ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, | |
time_t t); | |
ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, | |
time_t t, int offset_day, | |
long offset_sec); | |
int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str); | |
int ASN1_TIME_diff(int *pday, int *psec, | |
const ASN1_TIME *from, const ASN1_TIME *to); | |
DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING) | |
ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a); | |
int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, | |
const ASN1_OCTET_STRING *b); | |
int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, | |
int len); | |
DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING) | |
DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING) | |
DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING) | |
DECLARE_ASN1_FUNCTIONS(ASN1_NULL) | |
DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING) | |
int UTF8_getc(const unsigned char *str, int len, unsigned long *val); | |
int UTF8_putc(unsigned char *str, int len, unsigned long value); | |
DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE) | |
DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING) | |
DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT) | |
DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING) | |
DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING) | |
DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING) | |
DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING) | |
DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME) | |
DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME) | |
DECLARE_ASN1_FUNCTIONS(ASN1_TIME) | |
DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF) | |
ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t); | |
ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t, | |
int offset_day, long offset_sec); | |
int ASN1_TIME_check(const ASN1_TIME *t); | |
ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(const ASN1_TIME *t, | |
ASN1_GENERALIZEDTIME **out); | |
int ASN1_TIME_set_string(ASN1_TIME *s, const char *str); | |
int ASN1_TIME_set_string_X509(ASN1_TIME *s, const char *str); | |
int ASN1_TIME_to_tm(const ASN1_TIME *s, struct tm *tm); | |
int ASN1_TIME_normalize(ASN1_TIME *s); | |
int ASN1_TIME_cmp_time_t(const ASN1_TIME *s, time_t t); | |
int ASN1_TIME_compare(const ASN1_TIME *a, const ASN1_TIME *b); | |
int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a); | |
int a2i_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *bs, char *buf, int size); | |
int i2a_ASN1_ENUMERATED(BIO *bp, const ASN1_ENUMERATED *a); | |
int a2i_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *bs, char *buf, int size); | |
int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a); | |
int a2i_ASN1_STRING(BIO *bp, ASN1_STRING *bs, char *buf, int size); | |
int i2a_ASN1_STRING(BIO *bp, const ASN1_STRING *a, int type); | |
int i2t_ASN1_OBJECT(char *buf, int buf_len, const ASN1_OBJECT *a); | |
int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num); | |
ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data, int len, | |
const char *sn, const char *ln); | |
int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a); | |
int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r); | |
int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a); | |
int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r); | |
int ASN1_INTEGER_set(ASN1_INTEGER *a, long v); | |
long ASN1_INTEGER_get(const ASN1_INTEGER *a); | |
ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai); | |
BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn); | |
int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a); | |
int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r); | |
int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v); | |
long ASN1_ENUMERATED_get(const ASN1_ENUMERATED *a); | |
ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(const BIGNUM *bn, ASN1_ENUMERATED *ai); | |
BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai, BIGNUM *bn); | |
/* General */ | |
/* given a string, return the correct type, max is the maximum length */ | |
int ASN1_PRINTABLE_type(const unsigned char *s, int max); | |
unsigned long ASN1_tag2bit(int tag); | |
/* SPECIALS */ | |
int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, | |
int *pclass, long omax); | |
int ASN1_check_infinite_end(unsigned char **p, long len); | |
int ASN1_const_check_infinite_end(const unsigned char **p, long len); | |
void ASN1_put_object(unsigned char **pp, int constructed, int length, | |
int tag, int xclass); | |
int ASN1_put_eoc(unsigned char **pp); | |
int ASN1_object_size(int constructed, int length, int tag); | |
/* Used to implement other functions */ | |
void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x); | |
void *ASN1_item_dup(const ASN1_ITEM *it, void *x); | |
/* ASN1 alloc/free macros for when a type is only used internally */ | |
void *ASN1_d2i_fp(void *(*xnew) (void), d2i_of_void *d2i, FILE *in, void **x); | |
void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x); | |
int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x); | |
int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x); | |
int ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str, unsigned long flags); | |
int ASN1_STRING_to_UTF8(unsigned char **out, const ASN1_STRING *in); | |
void *ASN1_d2i_bio(void *(*xnew) (void), d2i_of_void *d2i, BIO *in, void **x); | |
void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x); | |
int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x); | |
int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x); | |
int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a); | |
int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a); | |
int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a); | |
int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v); | |
int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str, unsigned long flags); | |
int ASN1_buf_print(BIO *bp, const unsigned char *buf, size_t buflen, int off); | |
int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, | |
unsigned char *buf, int off); | |
int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent); | |
int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, | |
int dump); | |
const char *ASN1_tag2str(int tag); | |
/* Used to load and write Netscape format cert */ | |
int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s); | |
int ASN1_TYPE_set_octetstring(ASN1_TYPE *a, unsigned char *data, int len); | |
int ASN1_TYPE_get_octetstring(const ASN1_TYPE *a, unsigned char *data, int max_len); | |
int ASN1_TYPE_set_int_octetstring(ASN1_TYPE *a, long num, | |
unsigned char *data, int len); | |
int ASN1_TYPE_get_int_octetstring(const ASN1_TYPE *a, long *num, | |
unsigned char *data, int max_len); | |
void *ASN1_item_unpack(const ASN1_STRING *oct, const ASN1_ITEM *it); | |
ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, | |
ASN1_OCTET_STRING **oct); | |
void ASN1_STRING_set_default_mask(unsigned long mask); | |
int ASN1_STRING_set_default_mask_asc(const char *p); | |
unsigned long ASN1_STRING_get_default_mask(void); | |
int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len, | |
int inform, unsigned long mask); | |
int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, | |
int inform, unsigned long mask, | |
long minsize, long maxsize); | |
ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, | |
const unsigned char *in, int inlen, | |
int inform, int nid); | |
ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid); | |
int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long); | |
void ASN1_STRING_TABLE_cleanup(void); | |
/* ASN1 template functions */ | |
/* Old API compatible functions */ | |
ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it); | |
void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it); | |
ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, | |
long len, const ASN1_ITEM *it); | |
int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it); | |
int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, | |
const ASN1_ITEM *it); | |
void ASN1_add_oid_module(void); | |
void ASN1_add_stable_module(void); | |
ASN1_TYPE *ASN1_generate_nconf(const char *str, CONF *nconf); | |
ASN1_TYPE *ASN1_generate_v3(const char *str, X509V3_CTX *cnf); | |
int ASN1_str2mask(const char *str, unsigned long *pmask); | |
/* ASN1 Print flags */ | |
/* Indicate missing OPTIONAL fields */ | |
/* Mark start and end of SEQUENCE */ | |
/* Mark start and end of SEQUENCE/SET OF */ | |
/* Show the ASN1 type of primitives */ | |
/* Don't show ASN1 type of ANY */ | |
/* Don't show ASN1 type of MSTRINGs */ | |
/* Don't show field names in SEQUENCE */ | |
/* Show structure names of each SEQUENCE field */ | |
/* Don't show structure name even at top level */ | |
int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, | |
const ASN1_ITEM *it, const ASN1_PCTX *pctx); | |
ASN1_PCTX *ASN1_PCTX_new(void); | |
void ASN1_PCTX_free(ASN1_PCTX *p); | |
unsigned long ASN1_PCTX_get_flags(const ASN1_PCTX *p); | |
void ASN1_PCTX_set_flags(ASN1_PCTX *p, unsigned long flags); | |
unsigned long ASN1_PCTX_get_nm_flags(const ASN1_PCTX *p); | |
void ASN1_PCTX_set_nm_flags(ASN1_PCTX *p, unsigned long flags); | |
unsigned long ASN1_PCTX_get_cert_flags(const ASN1_PCTX *p); | |
void ASN1_PCTX_set_cert_flags(ASN1_PCTX *p, unsigned long flags); | |
unsigned long ASN1_PCTX_get_oid_flags(const ASN1_PCTX *p); | |
void ASN1_PCTX_set_oid_flags(ASN1_PCTX *p, unsigned long flags); | |
unsigned long ASN1_PCTX_get_str_flags(const ASN1_PCTX *p); | |
void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags); | |
ASN1_SCTX *ASN1_SCTX_new(int (*scan_cb) (ASN1_SCTX *ctx)); | |
void ASN1_SCTX_free(ASN1_SCTX *p); | |
const ASN1_ITEM *ASN1_SCTX_get_item(ASN1_SCTX *p); | |
const ASN1_TEMPLATE *ASN1_SCTX_get_template(ASN1_SCTX *p); | |
unsigned long ASN1_SCTX_get_flags(ASN1_SCTX *p); | |
void ASN1_SCTX_set_app_data(ASN1_SCTX *p, void *data); | |
void *ASN1_SCTX_get_app_data(ASN1_SCTX *p); | |
const BIO_METHOD *BIO_f_asn1(void); | |
BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it); | |
int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, | |
const ASN1_ITEM *it); | |
int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, | |
const char *hdr, const ASN1_ITEM *it); | |
int SMIME_write_ASN1(BIO *bio, ASN1_VALUE *val, BIO *data, int flags, | |
int ctype_nid, int econt_nid, | |
STACK_OF(X509_ALGOR) *mdalgs, const ASN1_ITEM *it); | |
ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it); | |
int SMIME_crlf_copy(BIO *in, BIO *out, int flags); | |
int SMIME_text(BIO *in, BIO *out); | |
const ASN1_ITEM *ASN1_ITEM_lookup(const char *name); | |
const ASN1_ITEM *ASN1_ITEM_get(size_t i); | |
} | |