blob: 1f614e2783e0c5a70aa89dcb0f74da918eed6597 [file] [log] [blame]
Kinson Chika8fa74c2011-07-29 11:33:41 -07001/* crypto/asn1/asn1.h */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59#ifndef HEADER_ASN1_H
60#define HEADER_ASN1_H
61
Kinson Chik2cd211f2011-07-27 19:27:35 -070062#ifndef LK_NO_TIME
Kinson Chika8fa74c2011-07-29 11:33:41 -070063#include <time.h>
Kinson Chik2cd211f2011-07-27 19:27:35 -070064#endif
Kinson Chika8fa74c2011-07-29 11:33:41 -070065#include <openssl/e_os2.h>
66#ifndef OPENSSL_NO_BIO
67#include <openssl/bio.h>
68#endif
69#include <openssl/stack.h>
70#include <openssl/safestack.h>
71
72#include <openssl/symhacks.h>
73
74#include <openssl/ossl_typ.h>
75#ifndef OPENSSL_NO_DEPRECATED
76#include <openssl/bn.h>
77#endif
78
79#ifdef OPENSSL_BUILD_SHLIBCRYPTO
80# undef OPENSSL_EXTERN
81# define OPENSSL_EXTERN OPENSSL_EXPORT
82#endif
83
84#ifdef __cplusplus
85extern "C" {
86#endif
87
88#define V_ASN1_UNIVERSAL 0x00
89#define V_ASN1_APPLICATION 0x40
90#define V_ASN1_CONTEXT_SPECIFIC 0x80
91#define V_ASN1_PRIVATE 0xc0
92
93#define V_ASN1_CONSTRUCTED 0x20
94#define V_ASN1_PRIMITIVE_TAG 0x1f
95#define V_ASN1_PRIMATIVE_TAG 0x1f
96
97#define V_ASN1_APP_CHOOSE -2 /* let the recipient choose */
98#define V_ASN1_OTHER -3 /* used in ASN1_TYPE */
99#define V_ASN1_ANY -4 /* used in ASN1 template code */
100
101#define V_ASN1_NEG 0x100 /* negative flag */
102
103#define V_ASN1_UNDEF -1
104#define V_ASN1_EOC 0
105#define V_ASN1_BOOLEAN 1 /**/
106#define V_ASN1_INTEGER 2
107#define V_ASN1_NEG_INTEGER (2 | V_ASN1_NEG)
108#define V_ASN1_BIT_STRING 3
109#define V_ASN1_OCTET_STRING 4
110#define V_ASN1_NULL 5
111#define V_ASN1_OBJECT 6
112#define V_ASN1_OBJECT_DESCRIPTOR 7
113#define V_ASN1_EXTERNAL 8
114#define V_ASN1_REAL 9
115#define V_ASN1_ENUMERATED 10
116#define V_ASN1_NEG_ENUMERATED (10 | V_ASN1_NEG)
117#define V_ASN1_UTF8STRING 12
118#define V_ASN1_SEQUENCE 16
119#define V_ASN1_SET 17
120#define V_ASN1_NUMERICSTRING 18 /**/
121#define V_ASN1_PRINTABLESTRING 19
122#define V_ASN1_T61STRING 20
123#define V_ASN1_TELETEXSTRING 20 /* alias */
124#define V_ASN1_VIDEOTEXSTRING 21 /**/
125#define V_ASN1_IA5STRING 22
126#define V_ASN1_UTCTIME 23
127#define V_ASN1_GENERALIZEDTIME 24 /**/
128#define V_ASN1_GRAPHICSTRING 25 /**/
129#define V_ASN1_ISO64STRING 26 /**/
130#define V_ASN1_VISIBLESTRING 26 /* alias */
131#define V_ASN1_GENERALSTRING 27 /**/
132#define V_ASN1_UNIVERSALSTRING 28 /**/
133#define V_ASN1_BMPSTRING 30
134
135/* For use with d2i_ASN1_type_bytes() */
136#define B_ASN1_NUMERICSTRING 0x0001
137#define B_ASN1_PRINTABLESTRING 0x0002
138#define B_ASN1_T61STRING 0x0004
139#define B_ASN1_TELETEXSTRING 0x0004
140#define B_ASN1_VIDEOTEXSTRING 0x0008
141#define B_ASN1_IA5STRING 0x0010
142#define B_ASN1_GRAPHICSTRING 0x0020
143#define B_ASN1_ISO64STRING 0x0040
144#define B_ASN1_VISIBLESTRING 0x0040
145#define B_ASN1_GENERALSTRING 0x0080
146#define B_ASN1_UNIVERSALSTRING 0x0100
147#define B_ASN1_OCTET_STRING 0x0200
148#define B_ASN1_BIT_STRING 0x0400
149#define B_ASN1_BMPSTRING 0x0800
150#define B_ASN1_UNKNOWN 0x1000
151#define B_ASN1_UTF8STRING 0x2000
152#define B_ASN1_UTCTIME 0x4000
153#define B_ASN1_GENERALIZEDTIME 0x8000
154#define B_ASN1_SEQUENCE 0x10000
155
156/* For use with ASN1_mbstring_copy() */
157#define MBSTRING_FLAG 0x1000
158#define MBSTRING_UTF8 (MBSTRING_FLAG)
159#define MBSTRING_ASC (MBSTRING_FLAG|1)
160#define MBSTRING_BMP (MBSTRING_FLAG|2)
161#define MBSTRING_UNIV (MBSTRING_FLAG|4)
162
163#define SMIME_OLDMIME 0x400
164#define SMIME_CRLFEOL 0x800
165#define SMIME_STREAM 0x1000
166
167struct X509_algor_st;
168DECLARE_STACK_OF(X509_ALGOR)
169
170#define DECLARE_ASN1_SET_OF(type) /* filled in by mkstack.pl */
171#define IMPLEMENT_ASN1_SET_OF(type) /* nothing, no longer needed */
172
173/* We MUST make sure that, except for constness, asn1_ctx_st and
174 asn1_const_ctx are exactly the same. Fortunately, as soon as
175 the old ASN1 parsing macros are gone, we can throw this away
176 as well... */
177typedef struct asn1_ctx_st
178 {
179 unsigned char *p;/* work char pointer */
180 int eos; /* end of sequence read for indefinite encoding */
181 int error; /* error code to use when returning an error */
182 int inf; /* constructed if 0x20, indefinite is 0x21 */
183 int tag; /* tag from last 'get object' */
184 int xclass; /* class from last 'get object' */
185 long slen; /* length of last 'get object' */
186 unsigned char *max; /* largest value of p allowed */
187 unsigned char *q;/* temporary variable */
188 unsigned char **pp;/* variable */
189 int line; /* used in error processing */
190 } ASN1_CTX;
191
192typedef struct asn1_const_ctx_st
193 {
194 const unsigned char *p;/* work char pointer */
195 int eos; /* end of sequence read for indefinite encoding */
196 int error; /* error code to use when returning an error */
197 int inf; /* constructed if 0x20, indefinite is 0x21 */
198 int tag; /* tag from last 'get object' */
199 int xclass; /* class from last 'get object' */
200 long slen; /* length of last 'get object' */
201 const unsigned char *max; /* largest value of p allowed */
202 const unsigned char *q;/* temporary variable */
203 const unsigned char **pp;/* variable */
204 int line; /* used in error processing */
205 } ASN1_const_CTX;
206
207/* These are used internally in the ASN1_OBJECT to keep track of
208 * whether the names and data need to be free()ed */
209#define ASN1_OBJECT_FLAG_DYNAMIC 0x01 /* internal use */
210#define ASN1_OBJECT_FLAG_CRITICAL 0x02 /* critical x509v3 object id */
211#define ASN1_OBJECT_FLAG_DYNAMIC_STRINGS 0x04 /* internal use */
212#define ASN1_OBJECT_FLAG_DYNAMIC_DATA 0x08 /* internal use */
213typedef struct asn1_object_st
214 {
215 const char *sn,*ln;
216 int nid;
217 int length;
218 const unsigned char *data; /* data remains const after init */
219 int flags; /* Should we free this one */
220 } ASN1_OBJECT;
221
222#define ASN1_STRING_FLAG_BITS_LEFT 0x08 /* Set if 0x07 has bits left value */
223/* This indicates that the ASN1_STRING is not a real value but just a place
224 * holder for the location where indefinite length constructed data should
225 * be inserted in the memory buffer
226 */
227#define ASN1_STRING_FLAG_NDEF 0x010
228
229/* This flag is used by the CMS code to indicate that a string is not
230 * complete and is a place holder for content when it had all been
231 * accessed. The flag will be reset when content has been written to it.
232 */
233
234#define ASN1_STRING_FLAG_CONT 0x020
235/* This flag is used by ASN1 code to indicate an ASN1_STRING is an MSTRING
236 * type.
237 */
238#define ASN1_STRING_FLAG_MSTRING 0x040
239/* This is the base type that holds just about everything :-) */
240typedef struct asn1_string_st
241 {
242 int length;
243 int type;
244 unsigned char *data;
245 /* The value of the following field depends on the type being
246 * held. It is mostly being used for BIT_STRING so if the
247 * input data has a non-zero 'unused bits' value, it will be
248 * handled correctly */
249 long flags;
250 } ASN1_STRING;
251
252/* ASN1_ENCODING structure: this is used to save the received
253 * encoding of an ASN1 type. This is useful to get round
254 * problems with invalid encodings which can break signatures.
255 */
256
257typedef struct ASN1_ENCODING_st
258 {
259 unsigned char *enc; /* DER encoding */
260 long len; /* Length of encoding */
261 int modified; /* set to 1 if 'enc' is invalid */
262 } ASN1_ENCODING;
263
264/* Used with ASN1 LONG type: if a long is set to this it is omitted */
265#define ASN1_LONG_UNDEF 0x7fffffffL
266
267#define STABLE_FLAGS_MALLOC 0x01
268#define STABLE_NO_MASK 0x02
269#define DIRSTRING_TYPE \
270 (B_ASN1_PRINTABLESTRING|B_ASN1_T61STRING|B_ASN1_BMPSTRING|B_ASN1_UTF8STRING)
271#define PKCS9STRING_TYPE (DIRSTRING_TYPE|B_ASN1_IA5STRING)
272
273typedef struct asn1_string_table_st {
274 int nid;
275 long minsize;
276 long maxsize;
277 unsigned long mask;
278 unsigned long flags;
279} ASN1_STRING_TABLE;
280
281DECLARE_STACK_OF(ASN1_STRING_TABLE)
282
283/* size limits: this stuff is taken straight from RFC2459 */
284
285#define ub_name 32768
286#define ub_common_name 64
287#define ub_locality_name 128
288#define ub_state_name 128
289#define ub_organization_name 64
290#define ub_organization_unit_name 64
291#define ub_title 64
292#define ub_email_address 128
293
294/* Declarations for template structures: for full definitions
295 * see asn1t.h
296 */
297typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
298typedef struct ASN1_ITEM_st ASN1_ITEM;
299typedef struct ASN1_TLC_st ASN1_TLC;
300/* This is just an opaque pointer */
301typedef struct ASN1_VALUE_st ASN1_VALUE;
302
303/* Declare ASN1 functions: the implement macro in in asn1t.h */
304
305#define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
306
307#define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
308 DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
309
310#define DECLARE_ASN1_FUNCTIONS_name(type, name) \
311 DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
312 DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
313
314#define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \
315 DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
316 DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)
317
318#define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \
319 type *d2i_##name(type **a, const unsigned char **in, long len); \
320 int i2d_##name(type *a, unsigned char **out); \
321 DECLARE_ASN1_ITEM(itname)
322
323#define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \
324 type *d2i_##name(type **a, const unsigned char **in, long len); \
325 int i2d_##name(const type *a, unsigned char **out); \
326 DECLARE_ASN1_ITEM(name)
327
328#define DECLARE_ASN1_NDEF_FUNCTION(name) \
329 int i2d_##name##_NDEF(name *a, unsigned char **out);
330
331#define DECLARE_ASN1_FUNCTIONS_const(name) \
332 DECLARE_ASN1_ALLOC_FUNCTIONS(name) \
333 DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name)
334
335#define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
336 type *name##_new(void); \
337 void name##_free(type *a);
338
339#define DECLARE_ASN1_PRINT_FUNCTION(stname) \
340 DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname)
341
342#define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \
343 int fname##_print_ctx(BIO *out, stname *x, int indent, \
344 const ASN1_PCTX *pctx);
345
346#define D2I_OF(type) type *(*)(type **,const unsigned char **,long)
347#define I2D_OF(type) int (*)(type *,unsigned char **)
348#define I2D_OF_const(type) int (*)(const type *,unsigned char **)
349
350#define CHECKED_D2I_OF(type, d2i) \
351 ((d2i_of_void*) (1 ? d2i : ((D2I_OF(type))0)))
352#define CHECKED_I2D_OF(type, i2d) \
353 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
354#define CHECKED_NEW_OF(type, xnew) \
355 ((void *(*)(void)) (1 ? xnew : ((type *(*)(void))0)))
356#define CHECKED_PTR_OF(type, p) \
357 ((void*) (1 ? p : (type*)0))
358#define CHECKED_PPTR_OF(type, p) \
359 ((void**) (1 ? p : (type**)0))
360
361#define TYPEDEF_D2I_OF(type) typedef type *d2i_of_##type(type **,const unsigned char **,long)
362#define TYPEDEF_I2D_OF(type) typedef int i2d_of_##type(type *,unsigned char **)
363#define TYPEDEF_D2I2D_OF(type) TYPEDEF_D2I_OF(type); TYPEDEF_I2D_OF(type)
364
365TYPEDEF_D2I2D_OF(void);
366
367/* The following macros and typedefs allow an ASN1_ITEM
368 * to be embedded in a structure and referenced. Since
369 * the ASN1_ITEM pointers need to be globally accessible
370 * (possibly from shared libraries) they may exist in
371 * different forms. On platforms that support it the
372 * ASN1_ITEM structure itself will be globally exported.
373 * Other platforms will export a function that returns
374 * an ASN1_ITEM pointer.
375 *
376 * To handle both cases transparently the macros below
377 * should be used instead of hard coding an ASN1_ITEM
378 * pointer in a structure.
379 *
380 * The structure will look like this:
381 *
382 * typedef struct SOMETHING_st {
383 * ...
384 * ASN1_ITEM_EXP *iptr;
385 * ...
386 * } SOMETHING;
387 *
388 * It would be initialised as e.g.:
389 *
390 * SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...};
391 *
392 * and the actual pointer extracted with:
393 *
394 * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
395 *
396 * Finally an ASN1_ITEM pointer can be extracted from an
397 * appropriate reference with: ASN1_ITEM_rptr(X509). This
398 * would be used when a function takes an ASN1_ITEM * argument.
399 *
400 */
401
402#ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION
403
404/* ASN1_ITEM pointer exported type */
405typedef const ASN1_ITEM ASN1_ITEM_EXP;
406
407/* Macro to obtain ASN1_ITEM pointer from exported type */
408#define ASN1_ITEM_ptr(iptr) (iptr)
409
410/* Macro to include ASN1_ITEM pointer from base type */
411#define ASN1_ITEM_ref(iptr) (&(iptr##_it))
412
413#define ASN1_ITEM_rptr(ref) (&(ref##_it))
414
415#define DECLARE_ASN1_ITEM(name) \
416 OPENSSL_EXTERN const ASN1_ITEM name##_it;
417
418#else
419
420/* Platforms that can't easily handle shared global variables are declared
421 * as functions returning ASN1_ITEM pointers.
422 */
423
424/* ASN1_ITEM pointer exported type */
425typedef const ASN1_ITEM * ASN1_ITEM_EXP(void);
426
427/* Macro to obtain ASN1_ITEM pointer from exported type */
428#define ASN1_ITEM_ptr(iptr) (iptr())
429
430/* Macro to include ASN1_ITEM pointer from base type */
431#define ASN1_ITEM_ref(iptr) (iptr##_it)
432
433#define ASN1_ITEM_rptr(ref) (ref##_it())
434
435#define DECLARE_ASN1_ITEM(name) \
436 const ASN1_ITEM * name##_it(void);
437
438#endif
439
440/* Parameters used by ASN1_STRING_print_ex() */
441
442/* These determine which characters to escape:
443 * RFC2253 special characters, control characters and
444 * MSB set characters
445 */
446
447#define ASN1_STRFLGS_ESC_2253 1
448#define ASN1_STRFLGS_ESC_CTRL 2
449#define ASN1_STRFLGS_ESC_MSB 4
450
451
452/* This flag determines how we do escaping: normally
453 * RC2253 backslash only, set this to use backslash and
454 * quote.
455 */
456
457#define ASN1_STRFLGS_ESC_QUOTE 8
458
459
460/* These three flags are internal use only. */
461
462/* Character is a valid PrintableString character */
463#define CHARTYPE_PRINTABLESTRING 0x10
464/* Character needs escaping if it is the first character */
465#define CHARTYPE_FIRST_ESC_2253 0x20
466/* Character needs escaping if it is the last character */
467#define CHARTYPE_LAST_ESC_2253 0x40
468
469/* NB the internal flags are safely reused below by flags
470 * handled at the top level.
471 */
472
473/* If this is set we convert all character strings
474 * to UTF8 first
475 */
476
477#define ASN1_STRFLGS_UTF8_CONVERT 0x10
478
479/* If this is set we don't attempt to interpret content:
480 * just assume all strings are 1 byte per character. This
481 * will produce some pretty odd looking output!
482 */
483
484#define ASN1_STRFLGS_IGNORE_TYPE 0x20
485
486/* If this is set we include the string type in the output */
487#define ASN1_STRFLGS_SHOW_TYPE 0x40
488
489/* This determines which strings to display and which to
490 * 'dump' (hex dump of content octets or DER encoding). We can
491 * only dump non character strings or everything. If we
492 * don't dump 'unknown' they are interpreted as character
493 * strings with 1 octet per character and are subject to
494 * the usual escaping options.
495 */
496
497#define ASN1_STRFLGS_DUMP_ALL 0x80
498#define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
499
500/* These determine what 'dumping' does, we can dump the
501 * content octets or the DER encoding: both use the
502 * RFC2253 #XXXXX notation.
503 */
504
505#define ASN1_STRFLGS_DUMP_DER 0x200
506
507/* All the string flags consistent with RFC2253,
508 * escaping control characters isn't essential in
509 * RFC2253 but it is advisable anyway.
510 */
511
512#define ASN1_STRFLGS_RFC2253 (ASN1_STRFLGS_ESC_2253 | \
513 ASN1_STRFLGS_ESC_CTRL | \
514 ASN1_STRFLGS_ESC_MSB | \
515 ASN1_STRFLGS_UTF8_CONVERT | \
516 ASN1_STRFLGS_DUMP_UNKNOWN | \
517 ASN1_STRFLGS_DUMP_DER)
518
519DECLARE_STACK_OF(ASN1_INTEGER)
520DECLARE_ASN1_SET_OF(ASN1_INTEGER)
521
522DECLARE_STACK_OF(ASN1_GENERALSTRING)
523
524typedef struct asn1_type_st
525 {
526 int type;
527 union {
528 char *ptr;
529 ASN1_BOOLEAN boolean;
530 ASN1_STRING * asn1_string;
531 ASN1_OBJECT * object;
532 ASN1_INTEGER * integer;
533 ASN1_ENUMERATED * enumerated;
534 ASN1_BIT_STRING * bit_string;
535 ASN1_OCTET_STRING * octet_string;
536 ASN1_PRINTABLESTRING * printablestring;
537 ASN1_T61STRING * t61string;
538 ASN1_IA5STRING * ia5string;
539 ASN1_GENERALSTRING * generalstring;
540 ASN1_BMPSTRING * bmpstring;
541 ASN1_UNIVERSALSTRING * universalstring;
542 ASN1_UTCTIME * utctime;
543 ASN1_GENERALIZEDTIME * generalizedtime;
544 ASN1_VISIBLESTRING * visiblestring;
545 ASN1_UTF8STRING * utf8string;
546 /* set and sequence are left complete and still
547 * contain the set or sequence bytes */
548 ASN1_STRING * set;
549 ASN1_STRING * sequence;
550 ASN1_VALUE * asn1_value;
551 } value;
552 } ASN1_TYPE;
553
554DECLARE_STACK_OF(ASN1_TYPE)
555DECLARE_ASN1_SET_OF(ASN1_TYPE)
556
557typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
558
559DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
560DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
561
562typedef struct NETSCAPE_X509_st
563 {
564 ASN1_OCTET_STRING *header;
565 X509 *cert;
566 } NETSCAPE_X509;
567
568/* This is used to contain a list of bit names */
569typedef struct BIT_STRING_BITNAME_st {
570 int bitnum;
571 const char *lname;
572 const char *sname;
573} BIT_STRING_BITNAME;
574
575
576#define M_ASN1_STRING_length(x) ((x)->length)
577#define M_ASN1_STRING_length_set(x, n) ((x)->length = (n))
578#define M_ASN1_STRING_type(x) ((x)->type)
579#define M_ASN1_STRING_data(x) ((x)->data)
580
581/* Macros for string operations */
582#define M_ASN1_BIT_STRING_new() (ASN1_BIT_STRING *)\
583 ASN1_STRING_type_new(V_ASN1_BIT_STRING)
584#define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
585#define M_ASN1_BIT_STRING_dup(a) (ASN1_BIT_STRING *)\
586 ASN1_STRING_dup((const ASN1_STRING *)a)
587#define M_ASN1_BIT_STRING_cmp(a,b) ASN1_STRING_cmp(\
588 (const ASN1_STRING *)a,(const ASN1_STRING *)b)
589#define M_ASN1_BIT_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
590
591#define M_ASN1_INTEGER_new() (ASN1_INTEGER *)\
592 ASN1_STRING_type_new(V_ASN1_INTEGER)
593#define M_ASN1_INTEGER_free(a) ASN1_STRING_free((ASN1_STRING *)a)
594#define M_ASN1_INTEGER_dup(a) (ASN1_INTEGER *)\
595 ASN1_STRING_dup((const ASN1_STRING *)a)
596#define M_ASN1_INTEGER_cmp(a,b) ASN1_STRING_cmp(\
597 (const ASN1_STRING *)a,(const ASN1_STRING *)b)
598
599#define M_ASN1_ENUMERATED_new() (ASN1_ENUMERATED *)\
600 ASN1_STRING_type_new(V_ASN1_ENUMERATED)
601#define M_ASN1_ENUMERATED_free(a) ASN1_STRING_free((ASN1_STRING *)a)
602#define M_ASN1_ENUMERATED_dup(a) (ASN1_ENUMERATED *)\
603 ASN1_STRING_dup((const ASN1_STRING *)a)
604#define M_ASN1_ENUMERATED_cmp(a,b) ASN1_STRING_cmp(\
605 (const ASN1_STRING *)a,(const ASN1_STRING *)b)
606
607#define M_ASN1_OCTET_STRING_new() (ASN1_OCTET_STRING *)\
608 ASN1_STRING_type_new(V_ASN1_OCTET_STRING)
609#define M_ASN1_OCTET_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
610#define M_ASN1_OCTET_STRING_dup(a) (ASN1_OCTET_STRING *)\
611 ASN1_STRING_dup((const ASN1_STRING *)a)
612#define M_ASN1_OCTET_STRING_cmp(a,b) ASN1_STRING_cmp(\
613 (const ASN1_STRING *)a,(const ASN1_STRING *)b)
614#define M_ASN1_OCTET_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
615#define M_ASN1_OCTET_STRING_print(a,b) ASN1_STRING_print(a,(ASN1_STRING *)b)
616#define M_i2d_ASN1_OCTET_STRING(a,pp) \
617 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_OCTET_STRING,\
618 V_ASN1_UNIVERSAL)
619
620#define B_ASN1_TIME \
621 B_ASN1_UTCTIME | \
622 B_ASN1_GENERALIZEDTIME
623
624#define B_ASN1_PRINTABLE \
625 B_ASN1_NUMERICSTRING| \
626 B_ASN1_PRINTABLESTRING| \
627 B_ASN1_T61STRING| \
628 B_ASN1_IA5STRING| \
629 B_ASN1_BIT_STRING| \
630 B_ASN1_UNIVERSALSTRING|\
631 B_ASN1_BMPSTRING|\
632 B_ASN1_UTF8STRING|\
633 B_ASN1_SEQUENCE|\
634 B_ASN1_UNKNOWN
635
636#define B_ASN1_DIRECTORYSTRING \
637 B_ASN1_PRINTABLESTRING| \
638 B_ASN1_TELETEXSTRING|\
639 B_ASN1_BMPSTRING|\
640 B_ASN1_UNIVERSALSTRING|\
641 B_ASN1_UTF8STRING
642
643#define B_ASN1_DISPLAYTEXT \
644 B_ASN1_IA5STRING| \
645 B_ASN1_VISIBLESTRING| \
646 B_ASN1_BMPSTRING|\
647 B_ASN1_UTF8STRING
648
649#define M_ASN1_PRINTABLE_new() ASN1_STRING_type_new(V_ASN1_T61STRING)
650#define M_ASN1_PRINTABLE_free(a) ASN1_STRING_free((ASN1_STRING *)a)
651#define M_i2d_ASN1_PRINTABLE(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
652 pp,a->type,V_ASN1_UNIVERSAL)
653#define M_d2i_ASN1_PRINTABLE(a,pp,l) \
654 d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
655 B_ASN1_PRINTABLE)
656
657#define M_DIRECTORYSTRING_new() ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
658#define M_DIRECTORYSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
659#define M_i2d_DIRECTORYSTRING(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
660 pp,a->type,V_ASN1_UNIVERSAL)
661#define M_d2i_DIRECTORYSTRING(a,pp,l) \
662 d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
663 B_ASN1_DIRECTORYSTRING)
664
665#define M_DISPLAYTEXT_new() ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
666#define M_DISPLAYTEXT_free(a) ASN1_STRING_free((ASN1_STRING *)a)
667#define M_i2d_DISPLAYTEXT(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
668 pp,a->type,V_ASN1_UNIVERSAL)
669#define M_d2i_DISPLAYTEXT(a,pp,l) \
670 d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
671 B_ASN1_DISPLAYTEXT)
672
673#define M_ASN1_PRINTABLESTRING_new() (ASN1_PRINTABLESTRING *)\
674 ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
675#define M_ASN1_PRINTABLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
676#define M_i2d_ASN1_PRINTABLESTRING(a,pp) \
677 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_PRINTABLESTRING,\
678 V_ASN1_UNIVERSAL)
679#define M_d2i_ASN1_PRINTABLESTRING(a,pp,l) \
680 (ASN1_PRINTABLESTRING *)d2i_ASN1_type_bytes\
681 ((ASN1_STRING **)a,pp,l,B_ASN1_PRINTABLESTRING)
682
683#define M_ASN1_T61STRING_new() (ASN1_T61STRING *)\
684 ASN1_STRING_type_new(V_ASN1_T61STRING)
685#define M_ASN1_T61STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
686#define M_i2d_ASN1_T61STRING(a,pp) \
687 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_T61STRING,\
688 V_ASN1_UNIVERSAL)
689#define M_d2i_ASN1_T61STRING(a,pp,l) \
690 (ASN1_T61STRING *)d2i_ASN1_type_bytes\
691 ((ASN1_STRING **)a,pp,l,B_ASN1_T61STRING)
692
693#define M_ASN1_IA5STRING_new() (ASN1_IA5STRING *)\
694 ASN1_STRING_type_new(V_ASN1_IA5STRING)
695#define M_ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
696#define M_ASN1_IA5STRING_dup(a) \
697 (ASN1_IA5STRING *)ASN1_STRING_dup((const ASN1_STRING *)a)
698#define M_i2d_ASN1_IA5STRING(a,pp) \
699 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_IA5STRING,\
700 V_ASN1_UNIVERSAL)
701#define M_d2i_ASN1_IA5STRING(a,pp,l) \
702 (ASN1_IA5STRING *)d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l,\
703 B_ASN1_IA5STRING)
704
705#define M_ASN1_UTCTIME_new() (ASN1_UTCTIME *)\
706 ASN1_STRING_type_new(V_ASN1_UTCTIME)
707#define M_ASN1_UTCTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
708#define M_ASN1_UTCTIME_dup(a) (ASN1_UTCTIME *)\
709 ASN1_STRING_dup((const ASN1_STRING *)a)
710
711#define M_ASN1_GENERALIZEDTIME_new() (ASN1_GENERALIZEDTIME *)\
712 ASN1_STRING_type_new(V_ASN1_GENERALIZEDTIME)
713#define M_ASN1_GENERALIZEDTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
714#define M_ASN1_GENERALIZEDTIME_dup(a) (ASN1_GENERALIZEDTIME *)ASN1_STRING_dup(\
715 (const ASN1_STRING *)a)
716
717#define M_ASN1_TIME_new() (ASN1_TIME *)\
718 ASN1_STRING_type_new(V_ASN1_UTCTIME)
719#define M_ASN1_TIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
720#define M_ASN1_TIME_dup(a) (ASN1_TIME *)\
721 ASN1_STRING_dup((const ASN1_STRING *)a)
722
723#define M_ASN1_GENERALSTRING_new() (ASN1_GENERALSTRING *)\
724 ASN1_STRING_type_new(V_ASN1_GENERALSTRING)
725#define M_ASN1_GENERALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
726#define M_i2d_ASN1_GENERALSTRING(a,pp) \
727 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_GENERALSTRING,\
728 V_ASN1_UNIVERSAL)
729#define M_d2i_ASN1_GENERALSTRING(a,pp,l) \
730 (ASN1_GENERALSTRING *)d2i_ASN1_type_bytes\
731 ((ASN1_STRING **)a,pp,l,B_ASN1_GENERALSTRING)
732
733#define M_ASN1_UNIVERSALSTRING_new() (ASN1_UNIVERSALSTRING *)\
734 ASN1_STRING_type_new(V_ASN1_UNIVERSALSTRING)
735#define M_ASN1_UNIVERSALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
736#define M_i2d_ASN1_UNIVERSALSTRING(a,pp) \
737 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UNIVERSALSTRING,\
738 V_ASN1_UNIVERSAL)
739#define M_d2i_ASN1_UNIVERSALSTRING(a,pp,l) \
740 (ASN1_UNIVERSALSTRING *)d2i_ASN1_type_bytes\
741 ((ASN1_STRING **)a,pp,l,B_ASN1_UNIVERSALSTRING)
742
743#define M_ASN1_BMPSTRING_new() (ASN1_BMPSTRING *)\
744 ASN1_STRING_type_new(V_ASN1_BMPSTRING)
745#define M_ASN1_BMPSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
746#define M_i2d_ASN1_BMPSTRING(a,pp) \
747 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_BMPSTRING,\
748 V_ASN1_UNIVERSAL)
749#define M_d2i_ASN1_BMPSTRING(a,pp,l) \
750 (ASN1_BMPSTRING *)d2i_ASN1_type_bytes\
751 ((ASN1_STRING **)a,pp,l,B_ASN1_BMPSTRING)
752
753#define M_ASN1_VISIBLESTRING_new() (ASN1_VISIBLESTRING *)\
754 ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
755#define M_ASN1_VISIBLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
756#define M_i2d_ASN1_VISIBLESTRING(a,pp) \
757 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_VISIBLESTRING,\
758 V_ASN1_UNIVERSAL)
759#define M_d2i_ASN1_VISIBLESTRING(a,pp,l) \
760 (ASN1_VISIBLESTRING *)d2i_ASN1_type_bytes\
761 ((ASN1_STRING **)a,pp,l,B_ASN1_VISIBLESTRING)
762
763#define M_ASN1_UTF8STRING_new() (ASN1_UTF8STRING *)\
764 ASN1_STRING_type_new(V_ASN1_UTF8STRING)
765#define M_ASN1_UTF8STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
766#define M_i2d_ASN1_UTF8STRING(a,pp) \
767 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UTF8STRING,\
768 V_ASN1_UNIVERSAL)
769#define M_d2i_ASN1_UTF8STRING(a,pp,l) \
770 (ASN1_UTF8STRING *)d2i_ASN1_type_bytes\
771 ((ASN1_STRING **)a,pp,l,B_ASN1_UTF8STRING)
772
773 /* for the is_set parameter to i2d_ASN1_SET */
774#define IS_SEQUENCE 0
775#define IS_SET 1
776
777DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
778
779int ASN1_TYPE_get(ASN1_TYPE *a);
780void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
781int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
782int ASN1_TYPE_cmp(ASN1_TYPE *a, ASN1_TYPE *b);
783
784ASN1_OBJECT * ASN1_OBJECT_new(void );
785void ASN1_OBJECT_free(ASN1_OBJECT *a);
786int i2d_ASN1_OBJECT(ASN1_OBJECT *a,unsigned char **pp);
787ASN1_OBJECT * c2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
788 long length);
789ASN1_OBJECT * d2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
790 long length);
791
792DECLARE_ASN1_ITEM(ASN1_OBJECT)
793
794DECLARE_STACK_OF(ASN1_OBJECT)
795DECLARE_ASN1_SET_OF(ASN1_OBJECT)
796
797ASN1_STRING * ASN1_STRING_new(void);
798void ASN1_STRING_free(ASN1_STRING *a);
799int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
800ASN1_STRING * ASN1_STRING_dup(const ASN1_STRING *a);
801ASN1_STRING * ASN1_STRING_type_new(int type );
802int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
803 /* Since this is used to store all sorts of things, via macros, for now, make
804 its data void * */
805int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
806void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
807int ASN1_STRING_length(const ASN1_STRING *x);
808void ASN1_STRING_length_set(ASN1_STRING *x, int n);
809int ASN1_STRING_type(ASN1_STRING *x);
810unsigned char * ASN1_STRING_data(ASN1_STRING *x);
811
812DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
813int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a,unsigned char **pp);
814ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,const unsigned char **pp,
815 long length);
816int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d,
817 int length );
818int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
819int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *a, int n);
820int ASN1_BIT_STRING_check(ASN1_BIT_STRING *a,
821 unsigned char *flags, int flags_len);
822
823#ifndef OPENSSL_NO_BIO
824int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs,
825 BIT_STRING_BITNAME *tbl, int indent);
826#endif
827int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl);
828int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value,
829 BIT_STRING_BITNAME *tbl);
830
831int i2d_ASN1_BOOLEAN(int a,unsigned char **pp);
832int d2i_ASN1_BOOLEAN(int *a,const unsigned char **pp,long length);
833
834DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
835int i2c_ASN1_INTEGER(ASN1_INTEGER *a,unsigned char **pp);
836ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,const unsigned char **pp,
837 long length);
838ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a,const unsigned char **pp,
839 long length);
840ASN1_INTEGER * ASN1_INTEGER_dup(const ASN1_INTEGER *x);
841int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);
842
843DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
844
845int ASN1_UTCTIME_check(ASN1_UTCTIME *a);
846ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s,time_t t);
847ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
848 int offset_day, long offset_sec);
849int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
850int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
851#if 0
852time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
853#endif
854
855int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *a);
856ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,time_t t);
857ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s,
858 time_t t, int offset_day, long offset_sec);
859int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
860
861DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
862ASN1_OCTET_STRING * ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a);
863int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, const ASN1_OCTET_STRING *b);
864int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
865
866DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
867DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
868DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
869DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
870DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
871
872int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
873int UTF8_putc(unsigned char *str, int len, unsigned long value);
874
875DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
876
877DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
878DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
879DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
880DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
881DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
882DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
883DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
884DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
885DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
886
887DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF)
888
889ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s,time_t t);
890ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s,time_t t,
891 int offset_day, long offset_sec);
892int ASN1_TIME_check(ASN1_TIME *t);
893ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
894int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
895
896int i2d_ASN1_SET(STACK_OF(OPENSSL_BLOCK) *a, unsigned char **pp,
897 i2d_of_void *i2d, int ex_tag, int ex_class,
898 int is_set);
899STACK_OF(OPENSSL_BLOCK) *d2i_ASN1_SET(STACK_OF(OPENSSL_BLOCK) **a,
900 const unsigned char **pp,
901 long length, d2i_of_void *d2i,
902 void (*free_func)(OPENSSL_BLOCK), int ex_tag,
903 int ex_class);
904
905#ifndef OPENSSL_NO_BIO
906int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
907int a2i_ASN1_INTEGER(BIO *bp,ASN1_INTEGER *bs,char *buf,int size);
908int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
909int a2i_ASN1_ENUMERATED(BIO *bp,ASN1_ENUMERATED *bs,char *buf,int size);
910int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
911int a2i_ASN1_STRING(BIO *bp,ASN1_STRING *bs,char *buf,int size);
912int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
913#endif
914int i2t_ASN1_OBJECT(char *buf,int buf_len,ASN1_OBJECT *a);
915
916int a2d_ASN1_OBJECT(unsigned char *out,int olen, const char *buf, int num);
917ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len,
918 const char *sn, const char *ln);
919
920int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
921long ASN1_INTEGER_get(const ASN1_INTEGER *a);
922ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
923BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
924
925int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
926long ASN1_ENUMERATED_get(ASN1_ENUMERATED *a);
927ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
928BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);
929
930/* General */
931/* given a string, return the correct type, max is the maximum length */
932int ASN1_PRINTABLE_type(const unsigned char *s, int max);
933
934int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass);
935ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, const unsigned char **pp,
936 long length, int Ptag, int Pclass);
937unsigned long ASN1_tag2bit(int tag);
938/* type is one or more of the B_ASN1_ values. */
939ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a,const unsigned char **pp,
940 long length,int type);
941
942/* PARSING */
943int asn1_Finish(ASN1_CTX *c);
944int asn1_const_Finish(ASN1_const_CTX *c);
945
946/* SPECIALS */
947int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag,
948 int *pclass, long omax);
949int ASN1_check_infinite_end(unsigned char **p,long len);
950int ASN1_const_check_infinite_end(const unsigned char **p,long len);
951void ASN1_put_object(unsigned char **pp, int constructed, int length,
952 int tag, int xclass);
953int ASN1_put_eoc(unsigned char **pp);
954int ASN1_object_size(int constructed, int length, int tag);
955
956/* Used to implement other functions */
957void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
958
959#define ASN1_dup_of(type,i2d,d2i,x) \
960 ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
961 CHECKED_D2I_OF(type, d2i), \
962 CHECKED_PTR_OF(type, x)))
963
964#define ASN1_dup_of_const(type,i2d,d2i,x) \
965 ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
966 CHECKED_D2I_OF(type, d2i), \
967 CHECKED_PTR_OF(const type, x)))
968
969void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
970
971/* ASN1 alloc/free macros for when a type is only used internally */
972
973#define M_ASN1_new_of(type) (type *)ASN1_item_new(ASN1_ITEM_rptr(type))
974#define M_ASN1_free_of(x, type) \
975 ASN1_item_free(CHECKED_PTR_OF(type, x), ASN1_ITEM_rptr(type))
976
977#ifndef OPENSSL_NO_FP_API
978void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x);
979
980#define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \
981 ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
982 CHECKED_D2I_OF(type, d2i), \
983 in, \
984 CHECKED_PPTR_OF(type, x)))
985
986void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
987int ASN1_i2d_fp(i2d_of_void *i2d,FILE *out,void *x);
988
989#define ASN1_i2d_fp_of(type,i2d,out,x) \
990 (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
991 out, \
992 CHECKED_PTR_OF(type, x)))
993
994#define ASN1_i2d_fp_of_const(type,i2d,out,x) \
995 (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \
996 out, \
997 CHECKED_PTR_OF(const type, x)))
998
999int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
1000int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags);
1001#endif
1002
1003int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in);
1004
1005#ifndef OPENSSL_NO_BIO
1006void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x);
1007
1008#define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \
1009 ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \
1010 CHECKED_D2I_OF(type, d2i), \
1011 in, \
1012 CHECKED_PPTR_OF(type, x)))
1013
1014void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
1015int ASN1_i2d_bio(i2d_of_void *i2d,BIO *out, unsigned char *x);
1016
1017#define ASN1_i2d_bio_of(type,i2d,out,x) \
1018 (ASN1_i2d_bio(CHECKED_I2D_OF(type, i2d), \
1019 out, \
1020 CHECKED_PTR_OF(type, x)))
1021
1022#define ASN1_i2d_bio_of_const(type,i2d,out,x) \
1023 (ASN1_i2d_bio(CHECKED_I2D_OF(const type, i2d), \
1024 out, \
1025 CHECKED_PTR_OF(const type, x)))
1026
1027int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
1028int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
1029int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
1030int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
1031int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
1032int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags);
1033int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num,
1034 unsigned char *buf, int off);
1035int ASN1_parse(BIO *bp,const unsigned char *pp,long len,int indent);
1036int ASN1_parse_dump(BIO *bp,const unsigned char *pp,long len,int indent,int dump);
1037#endif
1038const char *ASN1_tag2str(int tag);
1039
1040/* Used to load and write netscape format cert */
1041
1042DECLARE_ASN1_FUNCTIONS(NETSCAPE_X509)
1043
1044int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s);
1045
1046int ASN1_TYPE_set_octetstring(ASN1_TYPE *a,
1047 unsigned char *data, int len);
1048int ASN1_TYPE_get_octetstring(ASN1_TYPE *a,
1049 unsigned char *data, int max_len);
1050int ASN1_TYPE_set_int_octetstring(ASN1_TYPE *a, long num,
1051 unsigned char *data, int len);
1052int ASN1_TYPE_get_int_octetstring(ASN1_TYPE *a,long *num,
1053 unsigned char *data, int max_len);
1054
1055STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len,
1056 d2i_of_void *d2i, void (*free_func)(OPENSSL_BLOCK));
1057unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d,
1058 unsigned char **buf, int *len );
1059void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i);
1060void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it);
1061ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d,
1062 ASN1_OCTET_STRING **oct);
1063
1064#define ASN1_pack_string_of(type,obj,i2d,oct) \
1065 (ASN1_pack_string(CHECKED_PTR_OF(type, obj), \
1066 CHECKED_I2D_OF(type, i2d), \
1067 oct))
1068
1069ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct);
1070
1071void ASN1_STRING_set_default_mask(unsigned long mask);
1072int ASN1_STRING_set_default_mask_asc(char *p);
1073unsigned long ASN1_STRING_get_default_mask(void);
1074int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len,
1075 int inform, unsigned long mask);
1076int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len,
1077 int inform, unsigned long mask,
1078 long minsize, long maxsize);
1079
1080ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
1081 const unsigned char *in, int inlen, int inform, int nid);
1082ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
1083int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long);
1084void ASN1_STRING_TABLE_cleanup(void);
1085
1086/* ASN1 template functions */
1087
1088/* Old API compatible functions */
1089ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
1090void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
1091ASN1_VALUE * ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it);
1092int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
1093int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
1094
1095void ASN1_add_oid_module(void);
1096
1097ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
1098ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);
1099
1100/* ASN1 Print flags */
1101
1102/* Indicate missing OPTIONAL fields */
1103#define ASN1_PCTX_FLAGS_SHOW_ABSENT 0x001
1104/* Mark start and end of SEQUENCE */
1105#define ASN1_PCTX_FLAGS_SHOW_SEQUENCE 0x002
1106/* Mark start and end of SEQUENCE/SET OF */
1107#define ASN1_PCTX_FLAGS_SHOW_SSOF 0x004
1108/* Show the ASN1 type of primitives */
1109#define ASN1_PCTX_FLAGS_SHOW_TYPE 0x008
1110/* Don't show ASN1 type of ANY */
1111#define ASN1_PCTX_FLAGS_NO_ANY_TYPE 0x010
1112/* Don't show ASN1 type of MSTRINGs */
1113#define ASN1_PCTX_FLAGS_NO_MSTRING_TYPE 0x020
1114/* Don't show field names in SEQUENCE */
1115#define ASN1_PCTX_FLAGS_NO_FIELD_NAME 0x040
1116/* Show structure names of each SEQUENCE field */
1117#define ASN1_PCTX_FLAGS_SHOW_FIELD_STRUCT_NAME 0x080
1118/* Don't show structure name even at top level */
1119#define ASN1_PCTX_FLAGS_NO_STRUCT_NAME 0x100
1120
1121int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent,
1122 const ASN1_ITEM *it, const ASN1_PCTX *pctx);
1123ASN1_PCTX *ASN1_PCTX_new(void);
1124void ASN1_PCTX_free(ASN1_PCTX *p);
1125unsigned long ASN1_PCTX_get_flags(ASN1_PCTX *p);
1126void ASN1_PCTX_set_flags(ASN1_PCTX *p, unsigned long flags);
1127unsigned long ASN1_PCTX_get_nm_flags(ASN1_PCTX *p);
1128void ASN1_PCTX_set_nm_flags(ASN1_PCTX *p, unsigned long flags);
1129unsigned long ASN1_PCTX_get_cert_flags(ASN1_PCTX *p);
1130void ASN1_PCTX_set_cert_flags(ASN1_PCTX *p, unsigned long flags);
1131unsigned long ASN1_PCTX_get_oid_flags(ASN1_PCTX *p);
1132void ASN1_PCTX_set_oid_flags(ASN1_PCTX *p, unsigned long flags);
1133unsigned long ASN1_PCTX_get_str_flags(ASN1_PCTX *p);
1134void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags);
1135
1136BIO_METHOD *BIO_f_asn1(void);
1137
1138BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it);
1139
1140int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
1141 const ASN1_ITEM *it);
1142int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
1143 const char *hdr,
1144 const ASN1_ITEM *it);
1145int SMIME_write_ASN1(BIO *bio, ASN1_VALUE *val, BIO *data, int flags,
1146 int ctype_nid, int econt_nid,
1147 STACK_OF(X509_ALGOR) *mdalgs,
1148 const ASN1_ITEM *it);
1149ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it);
1150int SMIME_crlf_copy(BIO *in, BIO *out, int flags);
1151int SMIME_text(BIO *in, BIO *out);
1152
1153/* BEGIN ERROR CODES */
1154/* The following lines are auto generated by the script mkerr.pl. Any changes
1155 * made after this point may be overwritten when the script is next run.
1156 */
1157void ERR_load_ASN1_strings(void);
1158
1159/* Error codes for the ASN1 functions. */
1160
1161/* Function codes. */
1162#define ASN1_F_A2D_ASN1_OBJECT 100
1163#define ASN1_F_A2I_ASN1_ENUMERATED 101
1164#define ASN1_F_A2I_ASN1_INTEGER 102
1165#define ASN1_F_A2I_ASN1_STRING 103
1166#define ASN1_F_APPEND_EXP 176
1167#define ASN1_F_ASN1_BIT_STRING_SET_BIT 183
1168#define ASN1_F_ASN1_CB 177
1169#define ASN1_F_ASN1_CHECK_TLEN 104
1170#define ASN1_F_ASN1_COLLATE_PRIMITIVE 105
1171#define ASN1_F_ASN1_COLLECT 106
1172#define ASN1_F_ASN1_D2I_EX_PRIMITIVE 108
1173#define ASN1_F_ASN1_D2I_FP 109
1174#define ASN1_F_ASN1_D2I_READ_BIO 107
1175#define ASN1_F_ASN1_DIGEST 184
1176#define ASN1_F_ASN1_DO_ADB 110
1177#define ASN1_F_ASN1_DUP 111
1178#define ASN1_F_ASN1_ENUMERATED_SET 112
1179#define ASN1_F_ASN1_ENUMERATED_TO_BN 113
1180#define ASN1_F_ASN1_EX_C2I 204
1181#define ASN1_F_ASN1_FIND_END 190
1182#define ASN1_F_ASN1_GENERALIZEDTIME_ADJ 216
1183#define ASN1_F_ASN1_GENERALIZEDTIME_SET 185
1184#define ASN1_F_ASN1_GENERATE_V3 178
1185#define ASN1_F_ASN1_GET_OBJECT 114
1186#define ASN1_F_ASN1_HEADER_NEW 115
1187#define ASN1_F_ASN1_I2D_BIO 116
1188#define ASN1_F_ASN1_I2D_FP 117
1189#define ASN1_F_ASN1_INTEGER_SET 118
1190#define ASN1_F_ASN1_INTEGER_TO_BN 119
1191#define ASN1_F_ASN1_ITEM_D2I_FP 206
1192#define ASN1_F_ASN1_ITEM_DUP 191
1193#define ASN1_F_ASN1_ITEM_EX_COMBINE_NEW 121
1194#define ASN1_F_ASN1_ITEM_EX_D2I 120
1195#define ASN1_F_ASN1_ITEM_I2D_BIO 192
1196#define ASN1_F_ASN1_ITEM_I2D_FP 193
1197#define ASN1_F_ASN1_ITEM_PACK 198
1198#define ASN1_F_ASN1_ITEM_SIGN 195
1199#define ASN1_F_ASN1_ITEM_UNPACK 199
1200#define ASN1_F_ASN1_ITEM_VERIFY 197
1201#define ASN1_F_ASN1_MBSTRING_NCOPY 122
1202#define ASN1_F_ASN1_OBJECT_NEW 123
1203#define ASN1_F_ASN1_OUTPUT_DATA 214
1204#define ASN1_F_ASN1_PACK_STRING 124
1205#define ASN1_F_ASN1_PCTX_NEW 205
1206#define ASN1_F_ASN1_PKCS5_PBE_SET 125
1207#define ASN1_F_ASN1_SEQ_PACK 126
1208#define ASN1_F_ASN1_SEQ_UNPACK 127
1209#define ASN1_F_ASN1_SIGN 128
1210#define ASN1_F_ASN1_STR2TYPE 179
1211#define ASN1_F_ASN1_STRING_SET 186
1212#define ASN1_F_ASN1_STRING_TABLE_ADD 129
1213#define ASN1_F_ASN1_STRING_TYPE_NEW 130
1214#define ASN1_F_ASN1_TEMPLATE_EX_D2I 132
1215#define ASN1_F_ASN1_TEMPLATE_NEW 133
1216#define ASN1_F_ASN1_TEMPLATE_NOEXP_D2I 131
1217#define ASN1_F_ASN1_TIME_ADJ 217
1218#define ASN1_F_ASN1_TIME_SET 175
1219#define ASN1_F_ASN1_TYPE_GET_INT_OCTETSTRING 134
1220#define ASN1_F_ASN1_TYPE_GET_OCTETSTRING 135
1221#define ASN1_F_ASN1_UNPACK_STRING 136
1222#define ASN1_F_ASN1_UTCTIME_ADJ 218
1223#define ASN1_F_ASN1_UTCTIME_SET 187
1224#define ASN1_F_ASN1_VERIFY 137
1225#define ASN1_F_B64_READ_ASN1 209
1226#define ASN1_F_B64_WRITE_ASN1 210
1227#define ASN1_F_BIO_NEW_NDEF 208
1228#define ASN1_F_BITSTR_CB 180
1229#define ASN1_F_BN_TO_ASN1_ENUMERATED 138
1230#define ASN1_F_BN_TO_ASN1_INTEGER 139
1231#define ASN1_F_C2I_ASN1_BIT_STRING 189
1232#define ASN1_F_C2I_ASN1_INTEGER 194
1233#define ASN1_F_C2I_ASN1_OBJECT 196
1234#define ASN1_F_COLLECT_DATA 140
1235#define ASN1_F_D2I_ASN1_BIT_STRING 141
1236#define ASN1_F_D2I_ASN1_BOOLEAN 142
1237#define ASN1_F_D2I_ASN1_BYTES 143
1238#define ASN1_F_D2I_ASN1_GENERALIZEDTIME 144
1239#define ASN1_F_D2I_ASN1_HEADER 145
1240#define ASN1_F_D2I_ASN1_INTEGER 146
1241#define ASN1_F_D2I_ASN1_OBJECT 147
1242#define ASN1_F_D2I_ASN1_SET 148
1243#define ASN1_F_D2I_ASN1_TYPE_BYTES 149
1244#define ASN1_F_D2I_ASN1_UINTEGER 150
1245#define ASN1_F_D2I_ASN1_UTCTIME 151
1246#define ASN1_F_D2I_AUTOPRIVATEKEY 207
1247#define ASN1_F_D2I_NETSCAPE_RSA 152
1248#define ASN1_F_D2I_NETSCAPE_RSA_2 153
1249#define ASN1_F_D2I_PRIVATEKEY 154
1250#define ASN1_F_D2I_PUBLICKEY 155
1251#define ASN1_F_D2I_RSA_NET 200
1252#define ASN1_F_D2I_RSA_NET_2 201
1253#define ASN1_F_D2I_X509 156
1254#define ASN1_F_D2I_X509_CINF 157
1255#define ASN1_F_D2I_X509_PKEY 159
1256#define ASN1_F_I2D_ASN1_BIO_STREAM 211
1257#define ASN1_F_I2D_ASN1_SET 188
1258#define ASN1_F_I2D_ASN1_TIME 160
1259#define ASN1_F_I2D_DSA_PUBKEY 161
1260#define ASN1_F_I2D_EC_PUBKEY 181
1261#define ASN1_F_I2D_PRIVATEKEY 163
1262#define ASN1_F_I2D_PUBLICKEY 164
1263#define ASN1_F_I2D_RSA_NET 162
1264#define ASN1_F_I2D_RSA_PUBKEY 165
1265#define ASN1_F_LONG_C2I 166
1266#define ASN1_F_OID_MODULE_INIT 174
1267#define ASN1_F_PARSE_TAGGING 182
1268#define ASN1_F_PKCS5_PBE2_SET_IV 167
1269#define ASN1_F_PKCS5_PBE_SET 202
1270#define ASN1_F_PKCS5_PBE_SET0_ALGOR 215
1271#define ASN1_F_SMIME_READ_ASN1 212
1272#define ASN1_F_SMIME_TEXT 213
1273#define ASN1_F_X509_CINF_NEW 168
1274#define ASN1_F_X509_CRL_ADD0_REVOKED 169
1275#define ASN1_F_X509_INFO_NEW 170
1276#define ASN1_F_X509_NAME_ENCODE 203
1277#define ASN1_F_X509_NAME_EX_D2I 158
1278#define ASN1_F_X509_NAME_EX_NEW 171
1279#define ASN1_F_X509_NEW 172
1280#define ASN1_F_X509_PKEY_NEW 173
1281
1282/* Reason codes. */
1283#define ASN1_R_ADDING_OBJECT 171
1284#define ASN1_R_ASN1_PARSE_ERROR 203
1285#define ASN1_R_ASN1_SIG_PARSE_ERROR 204
1286#define ASN1_R_AUX_ERROR 100
1287#define ASN1_R_BAD_CLASS 101
1288#define ASN1_R_BAD_OBJECT_HEADER 102
1289#define ASN1_R_BAD_PASSWORD_READ 103
1290#define ASN1_R_BAD_TAG 104
1291#define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 214
1292#define ASN1_R_BN_LIB 105
1293#define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106
1294#define ASN1_R_BUFFER_TOO_SMALL 107
1295#define ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER 108
1296#define ASN1_R_DATA_IS_WRONG 109
1297#define ASN1_R_DECODE_ERROR 110
1298#define ASN1_R_DECODING_ERROR 111
1299#define ASN1_R_DEPTH_EXCEEDED 174
1300#define ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 198
1301#define ASN1_R_ENCODE_ERROR 112
1302#define ASN1_R_ERROR_GETTING_TIME 173
1303#define ASN1_R_ERROR_LOADING_SECTION 172
1304#define ASN1_R_ERROR_PARSING_SET_ELEMENT 113
1305#define ASN1_R_ERROR_SETTING_CIPHER_PARAMS 114
1306#define ASN1_R_EXPECTING_AN_INTEGER 115
1307#define ASN1_R_EXPECTING_AN_OBJECT 116
1308#define ASN1_R_EXPECTING_A_BOOLEAN 117
1309#define ASN1_R_EXPECTING_A_TIME 118
1310#define ASN1_R_EXPLICIT_LENGTH_MISMATCH 119
1311#define ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED 120
1312#define ASN1_R_FIELD_MISSING 121
1313#define ASN1_R_FIRST_NUM_TOO_LARGE 122
1314#define ASN1_R_HEADER_TOO_LONG 123
1315#define ASN1_R_ILLEGAL_BITSTRING_FORMAT 175
1316#define ASN1_R_ILLEGAL_BOOLEAN 176
1317#define ASN1_R_ILLEGAL_CHARACTERS 124
1318#define ASN1_R_ILLEGAL_FORMAT 177
1319#define ASN1_R_ILLEGAL_HEX 178
1320#define ASN1_R_ILLEGAL_IMPLICIT_TAG 179
1321#define ASN1_R_ILLEGAL_INTEGER 180
1322#define ASN1_R_ILLEGAL_NESTED_TAGGING 181
1323#define ASN1_R_ILLEGAL_NULL 125
1324#define ASN1_R_ILLEGAL_NULL_VALUE 182
1325#define ASN1_R_ILLEGAL_OBJECT 183
1326#define ASN1_R_ILLEGAL_OPTIONAL_ANY 126
1327#define ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE 170
1328#define ASN1_R_ILLEGAL_TAGGED_ANY 127
1329#define ASN1_R_ILLEGAL_TIME_VALUE 184
1330#define ASN1_R_INTEGER_NOT_ASCII_FORMAT 185
1331#define ASN1_R_INTEGER_TOO_LARGE_FOR_LONG 128
1332#define ASN1_R_INVALID_BMPSTRING_LENGTH 129
1333#define ASN1_R_INVALID_DIGIT 130
1334#define ASN1_R_INVALID_MIME_TYPE 205
1335#define ASN1_R_INVALID_MODIFIER 186
1336#define ASN1_R_INVALID_NUMBER 187
1337#define ASN1_R_INVALID_OBJECT_ENCODING 216
1338#define ASN1_R_INVALID_SEPARATOR 131
1339#define ASN1_R_INVALID_TIME_FORMAT 132
1340#define ASN1_R_INVALID_UNIVERSALSTRING_LENGTH 133
1341#define ASN1_R_INVALID_UTF8STRING 134
1342#define ASN1_R_IV_TOO_LARGE 135
1343#define ASN1_R_LENGTH_ERROR 136
1344#define ASN1_R_LIST_ERROR 188
1345#define ASN1_R_MIME_NO_CONTENT_TYPE 206
1346#define ASN1_R_MIME_PARSE_ERROR 207
1347#define ASN1_R_MIME_SIG_PARSE_ERROR 208
1348#define ASN1_R_MISSING_EOC 137
1349#define ASN1_R_MISSING_SECOND_NUMBER 138
1350#define ASN1_R_MISSING_VALUE 189
1351#define ASN1_R_MSTRING_NOT_UNIVERSAL 139
1352#define ASN1_R_MSTRING_WRONG_TAG 140
1353#define ASN1_R_NESTED_ASN1_STRING 197
1354#define ASN1_R_NON_HEX_CHARACTERS 141
1355#define ASN1_R_NOT_ASCII_FORMAT 190
1356#define ASN1_R_NOT_ENOUGH_DATA 142
1357#define ASN1_R_NO_CONTENT_TYPE 209
1358#define ASN1_R_NO_DEFAULT_DIGEST 201
1359#define ASN1_R_NO_MATCHING_CHOICE_TYPE 143
1360#define ASN1_R_NO_MULTIPART_BODY_FAILURE 210
1361#define ASN1_R_NO_MULTIPART_BOUNDARY 211
1362#define ASN1_R_NO_SIG_CONTENT_TYPE 212
1363#define ASN1_R_NULL_IS_WRONG_LENGTH 144
1364#define ASN1_R_OBJECT_NOT_ASCII_FORMAT 191
1365#define ASN1_R_ODD_NUMBER_OF_CHARS 145
1366#define ASN1_R_PRIVATE_KEY_HEADER_MISSING 146
1367#define ASN1_R_SECOND_NUMBER_TOO_LARGE 147
1368#define ASN1_R_SEQUENCE_LENGTH_MISMATCH 148
1369#define ASN1_R_SEQUENCE_NOT_CONSTRUCTED 149
1370#define ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG 192
1371#define ASN1_R_SHORT_LINE 150
1372#define ASN1_R_SIG_INVALID_MIME_TYPE 213
1373#define ASN1_R_STREAMING_NOT_SUPPORTED 202
1374#define ASN1_R_STRING_TOO_LONG 151
1375#define ASN1_R_STRING_TOO_SHORT 152
1376#define ASN1_R_TAG_VALUE_TOO_HIGH 153
1377#define ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 154
1378#define ASN1_R_TIME_NOT_ASCII_FORMAT 193
1379#define ASN1_R_TOO_LONG 155
1380#define ASN1_R_TYPE_NOT_CONSTRUCTED 156
1381#define ASN1_R_UNABLE_TO_DECODE_RSA_KEY 157
1382#define ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY 158
1383#define ASN1_R_UNEXPECTED_EOC 159
1384#define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 215
1385#define ASN1_R_UNKNOWN_FORMAT 160
1386#define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 161
1387#define ASN1_R_UNKNOWN_OBJECT_TYPE 162
1388#define ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE 163
1389#define ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM 199
1390#define ASN1_R_UNKNOWN_TAG 194
1391#define ASN1_R_UNKOWN_FORMAT 195
1392#define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 164
1393#define ASN1_R_UNSUPPORTED_CIPHER 165
1394#define ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM 166
1395#define ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE 167
1396#define ASN1_R_UNSUPPORTED_TYPE 196
1397#define ASN1_R_WRONG_PUBLIC_KEY_TYPE 200
1398#define ASN1_R_WRONG_TAG 168
1399#define ASN1_R_WRONG_TYPE 169
1400
1401#ifdef __cplusplus
1402}
1403#endif
1404#endif