Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

1300 linhas
50 KiB

  1. /* 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. #ifndef HEADER_ASN1_H
  59. #define HEADER_ASN1_H
  60. #include <openssl/base.h>
  61. #include <time.h>
  62. #ifndef OPENSSL_NO_BIO
  63. #include <openssl/bio.h>
  64. #endif
  65. #include <openssl/stack.h>
  66. #include <openssl/bn.h>
  67. #ifdef __cplusplus
  68. extern "C" {
  69. #endif
  70. #define V_ASN1_UNIVERSAL 0x00
  71. #define V_ASN1_APPLICATION 0x40
  72. #define V_ASN1_CONTEXT_SPECIFIC 0x80
  73. #define V_ASN1_PRIVATE 0xc0
  74. #define V_ASN1_CONSTRUCTED 0x20
  75. #define V_ASN1_PRIMITIVE_TAG 0x1f
  76. #define V_ASN1_PRIMATIVE_TAG 0x1f
  77. #define V_ASN1_APP_CHOOSE -2 /* let the recipient choose */
  78. #define V_ASN1_OTHER -3 /* used in ASN1_TYPE */
  79. #define V_ASN1_ANY -4 /* used in ASN1 template code */
  80. #define V_ASN1_NEG 0x100 /* negative flag */
  81. #define V_ASN1_UNDEF -1
  82. #define V_ASN1_EOC 0
  83. #define V_ASN1_BOOLEAN 1 /**/
  84. #define V_ASN1_INTEGER 2
  85. #define V_ASN1_NEG_INTEGER (2 | V_ASN1_NEG)
  86. #define V_ASN1_BIT_STRING 3
  87. #define V_ASN1_OCTET_STRING 4
  88. #define V_ASN1_NULL 5
  89. #define V_ASN1_OBJECT 6
  90. #define V_ASN1_OBJECT_DESCRIPTOR 7
  91. #define V_ASN1_EXTERNAL 8
  92. #define V_ASN1_REAL 9
  93. #define V_ASN1_ENUMERATED 10
  94. #define V_ASN1_NEG_ENUMERATED (10 | V_ASN1_NEG)
  95. #define V_ASN1_UTF8STRING 12
  96. #define V_ASN1_SEQUENCE 16
  97. #define V_ASN1_SET 17
  98. #define V_ASN1_NUMERICSTRING 18 /**/
  99. #define V_ASN1_PRINTABLESTRING 19
  100. #define V_ASN1_T61STRING 20
  101. #define V_ASN1_TELETEXSTRING 20 /* alias */
  102. #define V_ASN1_VIDEOTEXSTRING 21 /**/
  103. #define V_ASN1_IA5STRING 22
  104. #define V_ASN1_UTCTIME 23
  105. #define V_ASN1_GENERALIZEDTIME 24 /**/
  106. #define V_ASN1_GRAPHICSTRING 25 /**/
  107. #define V_ASN1_ISO64STRING 26 /**/
  108. #define V_ASN1_VISIBLESTRING 26 /* alias */
  109. #define V_ASN1_GENERALSTRING 27 /**/
  110. #define V_ASN1_UNIVERSALSTRING 28 /**/
  111. #define V_ASN1_BMPSTRING 30
  112. /* For use with d2i_ASN1_type_bytes() */
  113. #define B_ASN1_NUMERICSTRING 0x0001
  114. #define B_ASN1_PRINTABLESTRING 0x0002
  115. #define B_ASN1_T61STRING 0x0004
  116. #define B_ASN1_TELETEXSTRING 0x0004
  117. #define B_ASN1_VIDEOTEXSTRING 0x0008
  118. #define B_ASN1_IA5STRING 0x0010
  119. #define B_ASN1_GRAPHICSTRING 0x0020
  120. #define B_ASN1_ISO64STRING 0x0040
  121. #define B_ASN1_VISIBLESTRING 0x0040
  122. #define B_ASN1_GENERALSTRING 0x0080
  123. #define B_ASN1_UNIVERSALSTRING 0x0100
  124. #define B_ASN1_OCTET_STRING 0x0200
  125. #define B_ASN1_BIT_STRING 0x0400
  126. #define B_ASN1_BMPSTRING 0x0800
  127. #define B_ASN1_UNKNOWN 0x1000
  128. #define B_ASN1_UTF8STRING 0x2000
  129. #define B_ASN1_UTCTIME 0x4000
  130. #define B_ASN1_GENERALIZEDTIME 0x8000
  131. #define B_ASN1_SEQUENCE 0x10000
  132. /* For use with ASN1_mbstring_copy() */
  133. #define MBSTRING_FLAG 0x1000
  134. #define MBSTRING_UTF8 (MBSTRING_FLAG)
  135. #define MBSTRING_ASC (MBSTRING_FLAG|1)
  136. #define MBSTRING_BMP (MBSTRING_FLAG|2)
  137. #define MBSTRING_UNIV (MBSTRING_FLAG|4)
  138. #define SMIME_OLDMIME 0x400
  139. #define SMIME_CRLFEOL 0x800
  140. #define SMIME_STREAM 0x1000
  141. #define DECLARE_ASN1_SET_OF(type) /* filled in by mkstack.pl */
  142. #define IMPLEMENT_ASN1_SET_OF(type) /* nothing, no longer needed */
  143. /* We MUST make sure that, except for constness, asn1_ctx_st and
  144. asn1_const_ctx are exactly the same. Fortunately, as soon as
  145. the old ASN1 parsing macros are gone, we can throw this away
  146. as well... */
  147. typedef struct asn1_ctx_st
  148. {
  149. unsigned char *p;/* work char pointer */
  150. int eos; /* end of sequence read for indefinite encoding */
  151. int error; /* error code to use when returning an error */
  152. int inf; /* constructed if 0x20, indefinite is 0x21 */
  153. int tag; /* tag from last 'get object' */
  154. int xclass; /* class from last 'get object' */
  155. long slen; /* length of last 'get object' */
  156. unsigned char *max; /* largest value of p allowed */
  157. unsigned char *q;/* temporary variable */
  158. unsigned char **pp;/* variable */
  159. int line; /* used in error processing */
  160. } ASN1_CTX;
  161. typedef struct asn1_const_ctx_st
  162. {
  163. const unsigned char *p;/* work char pointer */
  164. int eos; /* end of sequence read for indefinite encoding */
  165. int error; /* error code to use when returning an error */
  166. int inf; /* constructed if 0x20, indefinite is 0x21 */
  167. int tag; /* tag from last 'get object' */
  168. int xclass; /* class from last 'get object' */
  169. long slen; /* length of last 'get object' */
  170. const unsigned char *max; /* largest value of p allowed */
  171. const unsigned char *q;/* temporary variable */
  172. const unsigned char **pp;/* variable */
  173. int line; /* used in error processing */
  174. } ASN1_const_CTX;
  175. /* These are used internally in the ASN1_OBJECT to keep track of
  176. * whether the names and data need to be free()ed */
  177. #define ASN1_OBJECT_FLAG_DYNAMIC 0x01 /* internal use */
  178. #define ASN1_OBJECT_FLAG_CRITICAL 0x02 /* critical x509v3 object id */
  179. #define ASN1_OBJECT_FLAG_DYNAMIC_STRINGS 0x04 /* internal use */
  180. #define ASN1_OBJECT_FLAG_DYNAMIC_DATA 0x08 /* internal use */
  181. struct asn1_object_st
  182. {
  183. const char *sn,*ln;
  184. int nid;
  185. int length;
  186. const unsigned char *data; /* data remains const after init */
  187. int flags; /* Should we free this one */
  188. };
  189. #define ASN1_STRING_FLAG_BITS_LEFT 0x08 /* Set if 0x07 has bits left value */
  190. /* This indicates that the ASN1_STRING is not a real value but just a place
  191. * holder for the location where indefinite length constructed data should
  192. * be inserted in the memory buffer
  193. */
  194. #define ASN1_STRING_FLAG_NDEF 0x010
  195. /* This flag is used by the CMS code to indicate that a string is not
  196. * complete and is a place holder for content when it had all been
  197. * accessed. The flag will be reset when content has been written to it.
  198. */
  199. #define ASN1_STRING_FLAG_CONT 0x020
  200. /* This flag is used by ASN1 code to indicate an ASN1_STRING is an MSTRING
  201. * type.
  202. */
  203. #define ASN1_STRING_FLAG_MSTRING 0x040
  204. /* This is the base type that holds just about everything :-) */
  205. struct asn1_string_st
  206. {
  207. int length;
  208. int type;
  209. unsigned char *data;
  210. /* The value of the following field depends on the type being
  211. * held. It is mostly being used for BIT_STRING so if the
  212. * input data has a non-zero 'unused bits' value, it will be
  213. * handled correctly */
  214. long flags;
  215. };
  216. /* ASN1_ENCODING structure: this is used to save the received
  217. * encoding of an ASN1 type. This is useful to get round
  218. * problems with invalid encodings which can break signatures.
  219. */
  220. typedef struct ASN1_ENCODING_st
  221. {
  222. unsigned char *enc; /* DER encoding */
  223. long len; /* Length of encoding */
  224. int modified; /* set to 1 if 'enc' is invalid */
  225. } ASN1_ENCODING;
  226. /* Used with ASN1 LONG type: if a long is set to this it is omitted */
  227. #define ASN1_LONG_UNDEF 0x7fffffffL
  228. #define STABLE_FLAGS_MALLOC 0x01
  229. #define STABLE_NO_MASK 0x02
  230. #define DIRSTRING_TYPE \
  231. (B_ASN1_PRINTABLESTRING|B_ASN1_T61STRING|B_ASN1_BMPSTRING|B_ASN1_UTF8STRING)
  232. #define PKCS9STRING_TYPE (DIRSTRING_TYPE|B_ASN1_IA5STRING)
  233. typedef struct asn1_string_table_st {
  234. int nid;
  235. long minsize;
  236. long maxsize;
  237. unsigned long mask;
  238. unsigned long flags;
  239. } ASN1_STRING_TABLE;
  240. /* size limits: this stuff is taken straight from RFC2459 */
  241. #define ub_name 32768
  242. #define ub_common_name 64
  243. #define ub_locality_name 128
  244. #define ub_state_name 128
  245. #define ub_organization_name 64
  246. #define ub_organization_unit_name 64
  247. #define ub_title 64
  248. #define ub_email_address 128
  249. /* Declarations for template structures: for full definitions
  250. * see asn1t.h
  251. */
  252. typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
  253. typedef struct ASN1_TLC_st ASN1_TLC;
  254. /* This is just an opaque pointer */
  255. typedef struct ASN1_VALUE_st ASN1_VALUE;
  256. /* Declare ASN1 functions: the implement macro in in asn1t.h */
  257. #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
  258. #define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
  259. DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
  260. #define DECLARE_ASN1_FUNCTIONS_name(type, name) \
  261. DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
  262. DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
  263. #define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \
  264. DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
  265. DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)
  266. #define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \
  267. OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, long len); \
  268. OPENSSL_EXPORT int i2d_##name(type *a, unsigned char **out); \
  269. DECLARE_ASN1_ITEM(itname)
  270. #define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \
  271. OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, long len); \
  272. OPENSSL_EXPORT int i2d_##name(const type *a, unsigned char **out); \
  273. DECLARE_ASN1_ITEM(name)
  274. #define DECLARE_ASN1_NDEF_FUNCTION(name) \
  275. OPENSSL_EXPORT int i2d_##name##_NDEF(name *a, unsigned char **out);
  276. #define DECLARE_ASN1_FUNCTIONS_const(name) \
  277. DECLARE_ASN1_ALLOC_FUNCTIONS(name) \
  278. DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name)
  279. #define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
  280. OPENSSL_EXPORT type *name##_new(void); \
  281. OPENSSL_EXPORT void name##_free(type *a);
  282. #define DECLARE_ASN1_PRINT_FUNCTION(stname) \
  283. DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname)
  284. #define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \
  285. OPENSSL_EXPORT int fname##_print_ctx(BIO *out, stname *x, int indent, \
  286. const ASN1_PCTX *pctx);
  287. #define D2I_OF(type) type *(*)(type **,const unsigned char **,long)
  288. #define I2D_OF(type) int (*)(type *,unsigned char **)
  289. #define I2D_OF_const(type) int (*)(const type *,unsigned char **)
  290. #define CHECKED_D2I_OF(type, d2i) \
  291. ((d2i_of_void*) (1 ? d2i : ((D2I_OF(type))0)))
  292. #define CHECKED_I2D_OF(type, i2d) \
  293. ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
  294. #define CHECKED_NEW_OF(type, xnew) \
  295. ((void *(*)(void)) (1 ? xnew : ((type *(*)(void))0)))
  296. #define CHECKED_PPTR_OF(type, p) \
  297. ((void**) (1 ? p : (type**)0))
  298. #define TYPEDEF_D2I_OF(type) typedef type *d2i_of_##type(type **,const unsigned char **,long)
  299. #define TYPEDEF_I2D_OF(type) typedef int i2d_of_##type(const type *,unsigned char **)
  300. #define TYPEDEF_D2I2D_OF(type) TYPEDEF_D2I_OF(type); TYPEDEF_I2D_OF(type)
  301. TYPEDEF_D2I2D_OF(void);
  302. /* The following macros and typedefs allow an ASN1_ITEM
  303. * to be embedded in a structure and referenced. Since
  304. * the ASN1_ITEM pointers need to be globally accessible
  305. * (possibly from shared libraries) they may exist in
  306. * different forms. On platforms that support it the
  307. * ASN1_ITEM structure itself will be globally exported.
  308. * Other platforms will export a function that returns
  309. * an ASN1_ITEM pointer.
  310. *
  311. * To handle both cases transparently the macros below
  312. * should be used instead of hard coding an ASN1_ITEM
  313. * pointer in a structure.
  314. *
  315. * The structure will look like this:
  316. *
  317. * typedef struct SOMETHING_st {
  318. * ...
  319. * ASN1_ITEM_EXP *iptr;
  320. * ...
  321. * } SOMETHING;
  322. *
  323. * It would be initialised as e.g.:
  324. *
  325. * SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...};
  326. *
  327. * and the actual pointer extracted with:
  328. *
  329. * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
  330. *
  331. * Finally an ASN1_ITEM pointer can be extracted from an
  332. * appropriate reference with: ASN1_ITEM_rptr(X509). This
  333. * would be used when a function takes an ASN1_ITEM * argument.
  334. *
  335. */
  336. #ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION
  337. /* ASN1_ITEM pointer exported type */
  338. typedef const ASN1_ITEM ASN1_ITEM_EXP;
  339. /* Macro to obtain ASN1_ITEM pointer from exported type */
  340. #define ASN1_ITEM_ptr(iptr) (iptr)
  341. /* Macro to include ASN1_ITEM pointer from base type */
  342. #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
  343. #define ASN1_ITEM_rptr(ref) (&(ref##_it))
  344. #define DECLARE_ASN1_ITEM(name) \
  345. extern const ASN1_ITEM name##_it;
  346. #else
  347. /* Platforms that can't easily handle shared global variables are declared
  348. * as functions returning ASN1_ITEM pointers.
  349. */
  350. /* ASN1_ITEM pointer exported type */
  351. typedef const ASN1_ITEM * ASN1_ITEM_EXP(void);
  352. /* Macro to obtain ASN1_ITEM pointer from exported type */
  353. #define ASN1_ITEM_ptr(iptr) (iptr())
  354. /* Macro to include ASN1_ITEM pointer from base type */
  355. #define ASN1_ITEM_ref(iptr) (iptr##_it)
  356. #define ASN1_ITEM_rptr(ref) (ref##_it())
  357. #define DECLARE_ASN1_ITEM(name) \
  358. OPENSSL_EXPORT const ASN1_ITEM * name##_it(void);
  359. #endif
  360. /* Parameters used by ASN1_STRING_print_ex() */
  361. /* These determine which characters to escape:
  362. * RFC2253 special characters, control characters and
  363. * MSB set characters
  364. */
  365. #define ASN1_STRFLGS_ESC_2253 1
  366. #define ASN1_STRFLGS_ESC_CTRL 2
  367. #define ASN1_STRFLGS_ESC_MSB 4
  368. /* This flag determines how we do escaping: normally
  369. * RC2253 backslash only, set this to use backslash and
  370. * quote.
  371. */
  372. #define ASN1_STRFLGS_ESC_QUOTE 8
  373. /* These three flags are internal use only. */
  374. /* Character is a valid PrintableString character */
  375. #define CHARTYPE_PRINTABLESTRING 0x10
  376. /* Character needs escaping if it is the first character */
  377. #define CHARTYPE_FIRST_ESC_2253 0x20
  378. /* Character needs escaping if it is the last character */
  379. #define CHARTYPE_LAST_ESC_2253 0x40
  380. /* NB the internal flags are safely reused below by flags
  381. * handled at the top level.
  382. */
  383. /* If this is set we convert all character strings
  384. * to UTF8 first
  385. */
  386. #define ASN1_STRFLGS_UTF8_CONVERT 0x10
  387. /* If this is set we don't attempt to interpret content:
  388. * just assume all strings are 1 byte per character. This
  389. * will produce some pretty odd looking output!
  390. */
  391. #define ASN1_STRFLGS_IGNORE_TYPE 0x20
  392. /* If this is set we include the string type in the output */
  393. #define ASN1_STRFLGS_SHOW_TYPE 0x40
  394. /* This determines which strings to display and which to
  395. * 'dump' (hex dump of content octets or DER encoding). We can
  396. * only dump non character strings or everything. If we
  397. * don't dump 'unknown' they are interpreted as character
  398. * strings with 1 octet per character and are subject to
  399. * the usual escaping options.
  400. */
  401. #define ASN1_STRFLGS_DUMP_ALL 0x80
  402. #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
  403. /* These determine what 'dumping' does, we can dump the
  404. * content octets or the DER encoding: both use the
  405. * RFC2253 #XXXXX notation.
  406. */
  407. #define ASN1_STRFLGS_DUMP_DER 0x200
  408. /* All the string flags consistent with RFC2253,
  409. * escaping control characters isn't essential in
  410. * RFC2253 but it is advisable anyway.
  411. */
  412. #define ASN1_STRFLGS_RFC2253 (ASN1_STRFLGS_ESC_2253 | \
  413. ASN1_STRFLGS_ESC_CTRL | \
  414. ASN1_STRFLGS_ESC_MSB | \
  415. ASN1_STRFLGS_UTF8_CONVERT | \
  416. ASN1_STRFLGS_DUMP_UNKNOWN | \
  417. ASN1_STRFLGS_DUMP_DER)
  418. DECLARE_ASN1_SET_OF(ASN1_INTEGER)
  419. typedef struct asn1_type_st
  420. {
  421. int type;
  422. union {
  423. char *ptr;
  424. ASN1_BOOLEAN boolean;
  425. ASN1_STRING * asn1_string;
  426. ASN1_OBJECT * object;
  427. ASN1_INTEGER * integer;
  428. ASN1_ENUMERATED * enumerated;
  429. ASN1_BIT_STRING * bit_string;
  430. ASN1_OCTET_STRING * octet_string;
  431. ASN1_PRINTABLESTRING * printablestring;
  432. ASN1_T61STRING * t61string;
  433. ASN1_IA5STRING * ia5string;
  434. ASN1_GENERALSTRING * generalstring;
  435. ASN1_BMPSTRING * bmpstring;
  436. ASN1_UNIVERSALSTRING * universalstring;
  437. ASN1_UTCTIME * utctime;
  438. ASN1_GENERALIZEDTIME * generalizedtime;
  439. ASN1_VISIBLESTRING * visiblestring;
  440. ASN1_UTF8STRING * utf8string;
  441. /* set and sequence are left complete and still
  442. * contain the set or sequence bytes */
  443. ASN1_STRING * set;
  444. ASN1_STRING * sequence;
  445. ASN1_VALUE * asn1_value;
  446. } value;
  447. } ASN1_TYPE;
  448. DECLARE_ASN1_SET_OF(ASN1_TYPE)
  449. typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
  450. DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
  451. DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
  452. struct X509_algor_st
  453. {
  454. ASN1_OBJECT *algorithm;
  455. ASN1_TYPE *parameter;
  456. } /* X509_ALGOR */;
  457. DEFINE_STACK_OF(X509_ALGOR);
  458. DECLARE_ASN1_FUNCTIONS(X509_ALGOR);
  459. typedef struct NETSCAPE_X509_st
  460. {
  461. ASN1_OCTET_STRING *header;
  462. X509 *cert;
  463. } NETSCAPE_X509;
  464. /* This is used to contain a list of bit names */
  465. typedef struct BIT_STRING_BITNAME_st {
  466. int bitnum;
  467. const char *lname;
  468. const char *sname;
  469. } BIT_STRING_BITNAME;
  470. #define M_ASN1_STRING_length(x) ((x)->length)
  471. #define M_ASN1_STRING_length_set(x, n) ((x)->length = (n))
  472. #define M_ASN1_STRING_type(x) ((x)->type)
  473. #define M_ASN1_STRING_data(x) ((x)->data)
  474. /* Macros for string operations */
  475. #define M_ASN1_BIT_STRING_new() (ASN1_BIT_STRING *)\
  476. ASN1_STRING_type_new(V_ASN1_BIT_STRING)
  477. #define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  478. #define M_ASN1_BIT_STRING_dup(a) (ASN1_BIT_STRING *)\
  479. ASN1_STRING_dup((const ASN1_STRING *)a)
  480. #define M_ASN1_BIT_STRING_cmp(a,b) ASN1_STRING_cmp(\
  481. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  482. #define M_ASN1_BIT_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  483. #define M_ASN1_INTEGER_new() (ASN1_INTEGER *)\
  484. ASN1_STRING_type_new(V_ASN1_INTEGER)
  485. #define M_ASN1_INTEGER_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  486. #define M_ASN1_INTEGER_dup(a) (ASN1_INTEGER *)\
  487. ASN1_STRING_dup((const ASN1_STRING *)a)
  488. #define M_ASN1_INTEGER_cmp(a,b) ASN1_STRING_cmp(\
  489. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  490. #define M_ASN1_ENUMERATED_new() (ASN1_ENUMERATED *)\
  491. ASN1_STRING_type_new(V_ASN1_ENUMERATED)
  492. #define M_ASN1_ENUMERATED_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  493. #define M_ASN1_ENUMERATED_dup(a) (ASN1_ENUMERATED *)\
  494. ASN1_STRING_dup((const ASN1_STRING *)a)
  495. #define M_ASN1_ENUMERATED_cmp(a,b) ASN1_STRING_cmp(\
  496. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  497. #define M_ASN1_OCTET_STRING_new() (ASN1_OCTET_STRING *)\
  498. ASN1_STRING_type_new(V_ASN1_OCTET_STRING)
  499. #define M_ASN1_OCTET_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  500. #define M_ASN1_OCTET_STRING_dup(a) (ASN1_OCTET_STRING *)\
  501. ASN1_STRING_dup((const ASN1_STRING *)a)
  502. #define M_ASN1_OCTET_STRING_cmp(a,b) ASN1_STRING_cmp(\
  503. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  504. #define M_ASN1_OCTET_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  505. #define M_ASN1_OCTET_STRING_print(a,b) ASN1_STRING_print(a,(ASN1_STRING *)b)
  506. #define M_i2d_ASN1_OCTET_STRING(a,pp) \
  507. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_OCTET_STRING,\
  508. V_ASN1_UNIVERSAL)
  509. #define B_ASN1_TIME \
  510. B_ASN1_UTCTIME | \
  511. B_ASN1_GENERALIZEDTIME
  512. #define B_ASN1_PRINTABLE \
  513. B_ASN1_NUMERICSTRING| \
  514. B_ASN1_PRINTABLESTRING| \
  515. B_ASN1_T61STRING| \
  516. B_ASN1_IA5STRING| \
  517. B_ASN1_BIT_STRING| \
  518. B_ASN1_UNIVERSALSTRING|\
  519. B_ASN1_BMPSTRING|\
  520. B_ASN1_UTF8STRING|\
  521. B_ASN1_SEQUENCE|\
  522. B_ASN1_UNKNOWN
  523. #define B_ASN1_DIRECTORYSTRING \
  524. B_ASN1_PRINTABLESTRING| \
  525. B_ASN1_TELETEXSTRING|\
  526. B_ASN1_BMPSTRING|\
  527. B_ASN1_UNIVERSALSTRING|\
  528. B_ASN1_UTF8STRING
  529. #define B_ASN1_DISPLAYTEXT \
  530. B_ASN1_IA5STRING| \
  531. B_ASN1_VISIBLESTRING| \
  532. B_ASN1_BMPSTRING|\
  533. B_ASN1_UTF8STRING
  534. #define M_ASN1_PRINTABLE_new() ASN1_STRING_type_new(V_ASN1_T61STRING)
  535. #define M_ASN1_PRINTABLE_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  536. #define M_i2d_ASN1_PRINTABLE(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  537. pp,a->type,V_ASN1_UNIVERSAL)
  538. #define M_d2i_ASN1_PRINTABLE(a,pp,l) \
  539. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  540. B_ASN1_PRINTABLE)
  541. #define M_DIRECTORYSTRING_new() ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
  542. #define M_DIRECTORYSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  543. #define M_i2d_DIRECTORYSTRING(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  544. pp,a->type,V_ASN1_UNIVERSAL)
  545. #define M_d2i_DIRECTORYSTRING(a,pp,l) \
  546. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  547. B_ASN1_DIRECTORYSTRING)
  548. #define M_DISPLAYTEXT_new() ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  549. #define M_DISPLAYTEXT_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  550. #define M_i2d_DISPLAYTEXT(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  551. pp,a->type,V_ASN1_UNIVERSAL)
  552. #define M_d2i_DISPLAYTEXT(a,pp,l) \
  553. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  554. B_ASN1_DISPLAYTEXT)
  555. #define M_ASN1_PRINTABLESTRING_new() (ASN1_PRINTABLESTRING *)\
  556. ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
  557. #define M_ASN1_PRINTABLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  558. #define M_i2d_ASN1_PRINTABLESTRING(a,pp) \
  559. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_PRINTABLESTRING,\
  560. V_ASN1_UNIVERSAL)
  561. #define M_d2i_ASN1_PRINTABLESTRING(a,pp,l) \
  562. (ASN1_PRINTABLESTRING *)d2i_ASN1_type_bytes\
  563. ((ASN1_STRING **)a,pp,l,B_ASN1_PRINTABLESTRING)
  564. #define M_ASN1_T61STRING_new() (ASN1_T61STRING *)\
  565. ASN1_STRING_type_new(V_ASN1_T61STRING)
  566. #define M_ASN1_T61STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  567. #define M_i2d_ASN1_T61STRING(a,pp) \
  568. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_T61STRING,\
  569. V_ASN1_UNIVERSAL)
  570. #define M_d2i_ASN1_T61STRING(a,pp,l) \
  571. (ASN1_T61STRING *)d2i_ASN1_type_bytes\
  572. ((ASN1_STRING **)a,pp,l,B_ASN1_T61STRING)
  573. #define M_ASN1_IA5STRING_new() (ASN1_IA5STRING *)\
  574. ASN1_STRING_type_new(V_ASN1_IA5STRING)
  575. #define M_ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  576. #define M_ASN1_IA5STRING_dup(a) \
  577. (ASN1_IA5STRING *)ASN1_STRING_dup((const ASN1_STRING *)a)
  578. #define M_i2d_ASN1_IA5STRING(a,pp) \
  579. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_IA5STRING,\
  580. V_ASN1_UNIVERSAL)
  581. #define M_d2i_ASN1_IA5STRING(a,pp,l) \
  582. (ASN1_IA5STRING *)d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l,\
  583. B_ASN1_IA5STRING)
  584. #define M_ASN1_UTCTIME_new() (ASN1_UTCTIME *)\
  585. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  586. #define M_ASN1_UTCTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  587. #define M_ASN1_UTCTIME_dup(a) (ASN1_UTCTIME *)\
  588. ASN1_STRING_dup((const ASN1_STRING *)a)
  589. #define M_ASN1_GENERALIZEDTIME_new() (ASN1_GENERALIZEDTIME *)\
  590. ASN1_STRING_type_new(V_ASN1_GENERALIZEDTIME)
  591. #define M_ASN1_GENERALIZEDTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  592. #define M_ASN1_GENERALIZEDTIME_dup(a) (ASN1_GENERALIZEDTIME *)ASN1_STRING_dup(\
  593. (const ASN1_STRING *)a)
  594. #define M_ASN1_TIME_new() (ASN1_TIME *)\
  595. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  596. #define M_ASN1_TIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  597. #define M_ASN1_TIME_dup(a) (ASN1_TIME *)\
  598. ASN1_STRING_dup((const ASN1_STRING *)a)
  599. #define M_ASN1_GENERALSTRING_new() (ASN1_GENERALSTRING *)\
  600. ASN1_STRING_type_new(V_ASN1_GENERALSTRING)
  601. #define M_ASN1_GENERALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  602. #define M_i2d_ASN1_GENERALSTRING(a,pp) \
  603. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_GENERALSTRING,\
  604. V_ASN1_UNIVERSAL)
  605. #define M_d2i_ASN1_GENERALSTRING(a,pp,l) \
  606. (ASN1_GENERALSTRING *)d2i_ASN1_type_bytes\
  607. ((ASN1_STRING **)a,pp,l,B_ASN1_GENERALSTRING)
  608. #define M_ASN1_UNIVERSALSTRING_new() (ASN1_UNIVERSALSTRING *)\
  609. ASN1_STRING_type_new(V_ASN1_UNIVERSALSTRING)
  610. #define M_ASN1_UNIVERSALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  611. #define M_i2d_ASN1_UNIVERSALSTRING(a,pp) \
  612. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UNIVERSALSTRING,\
  613. V_ASN1_UNIVERSAL)
  614. #define M_d2i_ASN1_UNIVERSALSTRING(a,pp,l) \
  615. (ASN1_UNIVERSALSTRING *)d2i_ASN1_type_bytes\
  616. ((ASN1_STRING **)a,pp,l,B_ASN1_UNIVERSALSTRING)
  617. #define M_ASN1_BMPSTRING_new() (ASN1_BMPSTRING *)\
  618. ASN1_STRING_type_new(V_ASN1_BMPSTRING)
  619. #define M_ASN1_BMPSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  620. #define M_i2d_ASN1_BMPSTRING(a,pp) \
  621. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_BMPSTRING,\
  622. V_ASN1_UNIVERSAL)
  623. #define M_d2i_ASN1_BMPSTRING(a,pp,l) \
  624. (ASN1_BMPSTRING *)d2i_ASN1_type_bytes\
  625. ((ASN1_STRING **)a,pp,l,B_ASN1_BMPSTRING)
  626. #define M_ASN1_VISIBLESTRING_new() (ASN1_VISIBLESTRING *)\
  627. ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  628. #define M_ASN1_VISIBLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  629. #define M_i2d_ASN1_VISIBLESTRING(a,pp) \
  630. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_VISIBLESTRING,\
  631. V_ASN1_UNIVERSAL)
  632. #define M_d2i_ASN1_VISIBLESTRING(a,pp,l) \
  633. (ASN1_VISIBLESTRING *)d2i_ASN1_type_bytes\
  634. ((ASN1_STRING **)a,pp,l,B_ASN1_VISIBLESTRING)
  635. #define M_ASN1_UTF8STRING_new() (ASN1_UTF8STRING *)\
  636. ASN1_STRING_type_new(V_ASN1_UTF8STRING)
  637. #define M_ASN1_UTF8STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  638. #define M_i2d_ASN1_UTF8STRING(a,pp) \
  639. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UTF8STRING,\
  640. V_ASN1_UNIVERSAL)
  641. #define M_d2i_ASN1_UTF8STRING(a,pp,l) \
  642. (ASN1_UTF8STRING *)d2i_ASN1_type_bytes\
  643. ((ASN1_STRING **)a,pp,l,B_ASN1_UTF8STRING)
  644. /* for the is_set parameter to i2d_ASN1_SET */
  645. #define IS_SEQUENCE 0
  646. #define IS_SET 1
  647. DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
  648. OPENSSL_EXPORT int ASN1_TYPE_get(ASN1_TYPE *a);
  649. OPENSSL_EXPORT void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
  650. OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
  651. OPENSSL_EXPORT int ASN1_TYPE_cmp(ASN1_TYPE *a, ASN1_TYPE *b);
  652. OPENSSL_EXPORT ASN1_OBJECT * ASN1_OBJECT_new(void );
  653. OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
  654. OPENSSL_EXPORT int i2d_ASN1_OBJECT(ASN1_OBJECT *a,unsigned char **pp);
  655. OPENSSL_EXPORT ASN1_OBJECT * c2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  656. long length);
  657. OPENSSL_EXPORT ASN1_OBJECT * d2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  658. long length);
  659. DECLARE_ASN1_ITEM(ASN1_OBJECT)
  660. DECLARE_ASN1_SET_OF(ASN1_OBJECT)
  661. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_new(void);
  662. OPENSSL_EXPORT void ASN1_STRING_free(ASN1_STRING *a);
  663. OPENSSL_EXPORT int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
  664. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_dup(const ASN1_STRING *a);
  665. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_type_new(int type );
  666. OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
  667. /* Since this is used to store all sorts of things, via macros, for now, make
  668. its data void * */
  669. OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
  670. OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
  671. OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *x);
  672. OPENSSL_EXPORT void ASN1_STRING_length_set(ASN1_STRING *x, int n);
  673. OPENSSL_EXPORT int ASN1_STRING_type(ASN1_STRING *x);
  674. OPENSSL_EXPORT unsigned char * ASN1_STRING_data(ASN1_STRING *x);
  675. DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
  676. OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a,unsigned char **pp);
  677. OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,const unsigned char **pp, long length);
  678. OPENSSL_EXPORT int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length );
  679. OPENSSL_EXPORT int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
  680. OPENSSL_EXPORT int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *a, int n);
  681. OPENSSL_EXPORT int ASN1_BIT_STRING_check(ASN1_BIT_STRING *a, unsigned char *flags, int flags_len);
  682. #ifndef OPENSSL_NO_BIO
  683. OPENSSL_EXPORT int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent);
  684. #endif
  685. OPENSSL_EXPORT int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl);
  686. OPENSSL_EXPORT int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value, BIT_STRING_BITNAME *tbl);
  687. OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a,unsigned char **pp);
  688. OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a,const unsigned char **pp,long length);
  689. DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
  690. OPENSSL_EXPORT int i2c_ASN1_INTEGER(ASN1_INTEGER *a,unsigned char **pp);
  691. OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  692. OPENSSL_EXPORT ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  693. OPENSSL_EXPORT ASN1_INTEGER * ASN1_INTEGER_dup(const ASN1_INTEGER *x);
  694. OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);
  695. DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
  696. OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
  697. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s,time_t t);
  698. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec);
  699. OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
  700. OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
  701. #if 0
  702. time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
  703. #endif
  704. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
  705. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,time_t t);
  706. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
  707. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
  708. OPENSSL_EXPORT int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to);
  709. DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
  710. OPENSSL_EXPORT ASN1_OCTET_STRING * ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a);
  711. OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, const ASN1_OCTET_STRING *b);
  712. OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
  713. DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
  714. DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
  715. DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
  716. DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
  717. DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
  718. OPENSSL_EXPORT int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
  719. OPENSSL_EXPORT int UTF8_putc(unsigned char *str, int len, unsigned long value);
  720. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
  721. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
  722. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
  723. DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
  724. DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
  725. DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
  726. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
  727. DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
  728. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
  729. DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
  730. DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF)
  731. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s,time_t t);
  732. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s,time_t t, int offset_day, long offset_sec);
  733. OPENSSL_EXPORT int ASN1_TIME_check(ASN1_TIME *t);
  734. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
  735. OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
  736. OPENSSL_EXPORT int i2d_ASN1_SET(STACK_OF(OPENSSL_BLOCK) *a, unsigned char **pp, i2d_of_void *i2d, int ex_tag, int ex_class, int is_set);
  737. OPENSSL_EXPORT STACK_OF(OPENSSL_BLOCK) *d2i_ASN1_SET(STACK_OF(OPENSSL_BLOCK) **a,
  738. const unsigned char **pp,
  739. long length, d2i_of_void *d2i,
  740. void (*free_func)(OPENSSL_BLOCK), int ex_tag,
  741. int ex_class);
  742. #ifndef OPENSSL_NO_BIO
  743. OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
  744. OPENSSL_EXPORT int a2i_ASN1_INTEGER(BIO *bp,ASN1_INTEGER *bs,char *buf,int size);
  745. OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
  746. OPENSSL_EXPORT int a2i_ASN1_ENUMERATED(BIO *bp,ASN1_ENUMERATED *bs,char *buf,int size);
  747. OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
  748. OPENSSL_EXPORT int a2i_ASN1_STRING(BIO *bp,ASN1_STRING *bs,char *buf,int size);
  749. OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
  750. #endif
  751. OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf,int buf_len,ASN1_OBJECT *a);
  752. OPENSSL_EXPORT int a2d_ASN1_OBJECT(unsigned char *out,int olen, const char *buf, int num);
  753. OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
  754. OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
  755. OPENSSL_EXPORT long ASN1_INTEGER_get(const ASN1_INTEGER *a);
  756. OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
  757. OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
  758. OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
  759. OPENSSL_EXPORT long ASN1_ENUMERATED_get(ASN1_ENUMERATED *a);
  760. OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
  761. OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);
  762. /* General */
  763. /* given a string, return the correct type, max is the maximum length */
  764. OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int max);
  765. OPENSSL_EXPORT int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass);
  766. OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, const unsigned char **pp, long length, int Ptag, int Pclass);
  767. OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
  768. /* type is one or more of the B_ASN1_ values. */
  769. OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a,const unsigned char **pp, long length,int type);
  770. /* PARSING */
  771. OPENSSL_EXPORT int asn1_Finish(ASN1_CTX *c);
  772. OPENSSL_EXPORT int asn1_const_Finish(ASN1_const_CTX *c);
  773. /* SPECIALS */
  774. OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax);
  775. OPENSSL_EXPORT int ASN1_check_infinite_end(unsigned char **p,long len);
  776. OPENSSL_EXPORT int ASN1_const_check_infinite_end(const unsigned char **p,long len);
  777. OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, int xclass);
  778. OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
  779. OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
  780. /* Used to implement other functions */
  781. OPENSSL_EXPORT void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
  782. #define ASN1_dup_of(type,i2d,d2i,x) \
  783. ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
  784. CHECKED_D2I_OF(type, d2i), \
  785. CHECKED_PTR_OF(type, x)))
  786. #define ASN1_dup_of_const(type,i2d,d2i,x) \
  787. ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
  788. CHECKED_D2I_OF(type, d2i), \
  789. CHECKED_PTR_OF(const type, x)))
  790. OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
  791. /* ASN1 alloc/free macros for when a type is only used internally */
  792. #define M_ASN1_new_of(type) (type *)ASN1_item_new(ASN1_ITEM_rptr(type))
  793. #define M_ASN1_free_of(x, type) \
  794. ASN1_item_free(CHECKED_PTR_OF(type, x), ASN1_ITEM_rptr(type))
  795. #ifndef OPENSSL_NO_FP_API
  796. OPENSSL_EXPORT void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x);
  797. #define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \
  798. ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
  799. CHECKED_D2I_OF(type, d2i), \
  800. in, \
  801. CHECKED_PPTR_OF(type, x)))
  802. OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
  803. OPENSSL_EXPORT int ASN1_i2d_fp(i2d_of_void *i2d,FILE *out,void *x);
  804. #define ASN1_i2d_fp_of(type,i2d,out,x) \
  805. (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
  806. out, \
  807. CHECKED_PTR_OF(type, x)))
  808. #define ASN1_i2d_fp_of_const(type,i2d,out,x) \
  809. (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \
  810. out, \
  811. CHECKED_PTR_OF(const type, x)))
  812. OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
  813. OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags);
  814. #endif
  815. OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in);
  816. #ifndef OPENSSL_NO_BIO
  817. OPENSSL_EXPORT void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x);
  818. #define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \
  819. ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \
  820. CHECKED_D2I_OF(type, d2i), \
  821. in, \
  822. CHECKED_PPTR_OF(type, x)))
  823. OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
  824. OPENSSL_EXPORT int ASN1_i2d_bio(i2d_of_void *i2d,BIO *out, unsigned char *x);
  825. #define ASN1_i2d_bio_of(type,i2d,out,x) \
  826. (ASN1_i2d_bio(CHECKED_I2D_OF(type, i2d), \
  827. out, \
  828. CHECKED_PTR_OF(type, x)))
  829. #define ASN1_i2d_bio_of_const(type,i2d,out,x) \
  830. (ASN1_i2d_bio(CHECKED_I2D_OF(const type, i2d), \
  831. out, \
  832. CHECKED_PTR_OF(const type, x)))
  833. OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
  834. OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
  835. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
  836. OPENSSL_EXPORT int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
  837. OPENSSL_EXPORT int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
  838. OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags);
  839. OPENSSL_EXPORT int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *buf, int off);
  840. OPENSSL_EXPORT int ASN1_parse(BIO *bp,const unsigned char *pp,long len,int indent);
  841. OPENSSL_EXPORT int ASN1_parse_dump(BIO *bp,const unsigned char *pp,long len,int indent,int dump);
  842. #endif
  843. OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
  844. /* Used to load and write netscape format cert */
  845. DECLARE_ASN1_FUNCTIONS(NETSCAPE_X509)
  846. int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s);
  847. OPENSSL_EXPORT STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len, d2i_of_void *d2i, void (*free_func)(OPENSSL_BLOCK));
  848. OPENSSL_EXPORT unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d, unsigned char **buf, int *len );
  849. OPENSSL_EXPORT void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i);
  850. OPENSSL_EXPORT void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it);
  851. OPENSSL_EXPORT ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_OCTET_STRING **oct);
  852. #define ASN1_pack_string_of(type,obj,i2d,oct) \
  853. (ASN1_pack_string(CHECKED_PTR_OF(type, obj), \
  854. CHECKED_I2D_OF(type, i2d), \
  855. oct))
  856. OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct);
  857. OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
  858. OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
  859. OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
  860. OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask);
  861. OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask, long minsize, long maxsize);
  862. OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid);
  863. OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
  864. OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long);
  865. OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
  866. /* ASN1 template functions */
  867. /* Old API compatible functions */
  868. OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
  869. OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
  870. OPENSSL_EXPORT ASN1_VALUE * ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it);
  871. OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  872. OPENSSL_EXPORT int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  873. OPENSSL_EXPORT void ASN1_add_oid_module(void);
  874. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
  875. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);
  876. /* ASN1 Print flags */
  877. /* Indicate missing OPTIONAL fields */
  878. #define ASN1_PCTX_FLAGS_SHOW_ABSENT 0x001
  879. /* Mark start and end of SEQUENCE */
  880. #define ASN1_PCTX_FLAGS_SHOW_SEQUENCE 0x002
  881. /* Mark start and end of SEQUENCE/SET OF */
  882. #define ASN1_PCTX_FLAGS_SHOW_SSOF 0x004
  883. /* Show the ASN1 type of primitives */
  884. #define ASN1_PCTX_FLAGS_SHOW_TYPE 0x008
  885. /* Don't show ASN1 type of ANY */
  886. #define ASN1_PCTX_FLAGS_NO_ANY_TYPE 0x010
  887. /* Don't show ASN1 type of MSTRINGs */
  888. #define ASN1_PCTX_FLAGS_NO_MSTRING_TYPE 0x020
  889. /* Don't show field names in SEQUENCE */
  890. #define ASN1_PCTX_FLAGS_NO_FIELD_NAME 0x040
  891. /* Show structure names of each SEQUENCE field */
  892. #define ASN1_PCTX_FLAGS_SHOW_FIELD_STRUCT_NAME 0x080
  893. /* Don't show structure name even at top level */
  894. #define ASN1_PCTX_FLAGS_NO_STRUCT_NAME 0x100
  895. OPENSSL_EXPORT int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, const ASN1_ITEM *it, const ASN1_PCTX *pctx);
  896. OPENSSL_EXPORT ASN1_PCTX *ASN1_PCTX_new(void);
  897. OPENSSL_EXPORT void ASN1_PCTX_free(ASN1_PCTX *p);
  898. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_flags(ASN1_PCTX *p);
  899. OPENSSL_EXPORT void ASN1_PCTX_set_flags(ASN1_PCTX *p, unsigned long flags);
  900. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_nm_flags(ASN1_PCTX *p);
  901. OPENSSL_EXPORT void ASN1_PCTX_set_nm_flags(ASN1_PCTX *p, unsigned long flags);
  902. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_cert_flags(ASN1_PCTX *p);
  903. OPENSSL_EXPORT void ASN1_PCTX_set_cert_flags(ASN1_PCTX *p, unsigned long flags);
  904. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_oid_flags(ASN1_PCTX *p);
  905. OPENSSL_EXPORT void ASN1_PCTX_set_oid_flags(ASN1_PCTX *p, unsigned long flags);
  906. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_str_flags(ASN1_PCTX *p);
  907. OPENSSL_EXPORT void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags);
  908. OPENSSL_EXPORT BIO_METHOD *BIO_f_asn1(void);
  909. OPENSSL_EXPORT BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it);
  910. OPENSSL_EXPORT int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const ASN1_ITEM *it);
  911. OPENSSL_EXPORT int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const char *hdr, const ASN1_ITEM *it);
  912. OPENSSL_EXPORT ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it);
  913. OPENSSL_EXPORT int SMIME_crlf_copy(BIO *in, BIO *out, int flags);
  914. OPENSSL_EXPORT int SMIME_text(BIO *in, BIO *out);
  915. /* BEGIN ERROR CODES */
  916. /* The following lines are auto generated by the script mkerr.pl. Any changes
  917. * made after this point may be overwritten when the script is next run.
  918. */
  919. void ERR_load_ASN1_strings(void);
  920. typedef int asn1_ps_func(BIO *b, unsigned char **pbuf, int *plen, void *parg);
  921. OPENSSL_EXPORT int BIO_asn1_set_prefix(BIO *b, asn1_ps_func *prefix, asn1_ps_func *prefix_free);
  922. OPENSSL_EXPORT int BIO_asn1_get_prefix(BIO *b, asn1_ps_func **pprefix, asn1_ps_func **pprefix_free);
  923. OPENSSL_EXPORT int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix, asn1_ps_func *suffix_free);
  924. OPENSSL_EXPORT int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix, asn1_ps_func **psuffix_free);
  925. #ifdef __cplusplus
  926. }
  927. #endif
  928. #define ASN1_F_asn1_template_ex_d2i 100
  929. #define ASN1_F_ASN1_dup 101
  930. #define ASN1_F_a2i_ASN1_STRING 102
  931. #define ASN1_F_ASN1_d2i_fp 103
  932. #define ASN1_F_d2i_ASN1_OBJECT 104
  933. #define ASN1_F_asn1_item_ex_combine_new 105
  934. #define ASN1_F_ASN1_template_new 106
  935. #define ASN1_F_asn1_do_adb 107
  936. #define ASN1_F_asn1_d2i_read_bio 108
  937. #define ASN1_F_asn1_ex_c2i 109
  938. #define ASN1_F_c2i_ASN1_INTEGER 110
  939. #define ASN1_F_ASN1_PCTX_new 111
  940. #define ASN1_F_ASN1_item_unpack 112
  941. #define ASN1_F_d2i_ASN1_type_bytes 113
  942. #define ASN1_F_a2i_ASN1_INTEGER 114
  943. #define ASN1_F_asn1_collect 115
  944. #define ASN1_F_ASN1_item_dup 116
  945. #define ASN1_F_ASN1_ENUMERATED_set 117
  946. #define ASN1_F_c2i_ASN1_OBJECT 118
  947. #define ASN1_F_ASN1_unpack_string 119
  948. #define ASN1_F_d2i_ASN1_UINTEGER 120
  949. #define ASN1_F_long_c2i 121
  950. #define ASN1_F_ASN1_seq_pack 122
  951. #define ASN1_F_a2d_ASN1_OBJECT 123
  952. #define ASN1_F_ASN1_STRING_type_new 124
  953. #define ASN1_F_ASN1_INTEGER_set 125
  954. #define ASN1_F_BN_to_ASN1_INTEGER 126
  955. #define ASN1_F_BIO_new_NDEF 127
  956. #define ASN1_F_ASN1_ENUMERATED_to_BN 128
  957. #define ASN1_F_ASN1_item_ex_d2i 129
  958. #define ASN1_F_ASN1_INTEGER_to_BN 130
  959. #define ASN1_F_i2d_ASN1_TIME 131
  960. #define ASN1_F_ASN1_TIME_adj 132
  961. #define ASN1_F_ASN1_BIT_STRING_set_bit 133
  962. #define ASN1_F_ASN1_seq_unpack 134
  963. #define ASN1_F_ASN1_item_pack 135
  964. #define ASN1_F_ASN1_STRING_set 136
  965. #define ASN1_F_ASN1_UTCTIME_adj 137
  966. #define ASN1_F_ASN1_mbstring_ncopy 138
  967. #define ASN1_F_d2i_ASN1_BOOLEAN 139
  968. #define ASN1_F_ASN1_OBJECT_new 140
  969. #define ASN1_F_asn1_template_noexp_d2i 141
  970. #define ASN1_F_c2i_ASN1_BIT_STRING 142
  971. #define ASN1_F_BN_to_ASN1_ENUMERATED 143
  972. #define ASN1_F_asn1_d2i_ex_primitive 144
  973. #define ASN1_F_ASN1_i2d_bio 145
  974. #define ASN1_F_ASN1_item_i2d_bio 146
  975. #define ASN1_F_d2i_ASN1_UTCTIME 147
  976. #define ASN1_F_ASN1_STRING_TABLE_add 148
  977. #define ASN1_F_asn1_find_end 149
  978. #define ASN1_F_ASN1_item_d2i_fp 150
  979. #define ASN1_F_collect_data 151
  980. #define ASN1_F_asn1_check_tlen 152
  981. #define ASN1_F_ASN1_i2d_fp 153
  982. #define ASN1_F_ASN1_item_i2d_fp 154
  983. #define ASN1_F_ASN1_GENERALIZEDTIME_adj 155
  984. #define ASN1_F_asn1_collate_primitive 156
  985. #define ASN1_F_ASN1_pack_string 157
  986. #define ASN1_F_ASN1_get_object 158
  987. #define ASN1_F_d2i_ASN1_bytes 159
  988. #define ASN1_F_a2i_ASN1_ENUMERATED 160
  989. #define ASN1_R_ASN1_SIG_PARSE_ERROR 100
  990. #define ASN1_R_ADDING_OBJECT 101
  991. #define ASN1_R_MIME_NO_CONTENT_TYPE 102
  992. #define ASN1_R_UNKNOWN_OBJECT_TYPE 103
  993. #define ASN1_R_ILLEGAL_FORMAT 104
  994. #define ASN1_R_HEADER_TOO_LONG 105
  995. #define ASN1_R_INVALID_UTF8STRING 106
  996. #define ASN1_R_EXPLICIT_LENGTH_MISMATCH 107
  997. #define ASN1_R_ILLEGAL_TAGGED_ANY 108
  998. #define ASN1_R_DATA_IS_WRONG 109
  999. #define ASN1_R_NOT_ASCII_FORMAT 110
  1000. #define ASN1_R_NOT_ENOUGH_DATA 111
  1001. #define ASN1_R_MSTRING_NOT_UNIVERSAL 112
  1002. #define ASN1_R_UNKOWN_FORMAT 113
  1003. #define ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM 114
  1004. #define ASN1_R_BAD_PASSWORD_READ 115
  1005. #define ASN1_R_BAD_OBJECT_HEADER 116
  1006. #define ASN1_R_ILLEGAL_CHARACTERS 117
  1007. #define ASN1_R_CONTEXT_NOT_INITIALISED 118
  1008. #define ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG 119
  1009. #define ASN1_R_BN_LIB 120
  1010. #define ASN1_R_NO_MATCHING_CHOICE_TYPE 121
  1011. #define ASN1_R_SEQUENCE_NOT_CONSTRUCTED 122
  1012. #define ASN1_R_ASN1_PARSE_ERROR 123
  1013. #define ASN1_R_NO_MULTIPART_BOUNDARY 124
  1014. #define ASN1_R_INVALID_SEPARATOR 125
  1015. #define ASN1_R_MALLOC_FAILURE 126
  1016. #define ASN1_R_ILLEGAL_NULL 127
  1017. #define ASN1_R_INVALID_MIME_TYPE 128
  1018. #define ASN1_R_INVALID_NUMBER 129
  1019. #define ASN1_R_STRING_TOO_LONG 130
  1020. #define ASN1_R_BAD_GET_ASN1_OBJECT_CALL 131
  1021. #define ASN1_R_UNABLE_TO_DECODE_RSA_KEY 132
  1022. #define ASN1_R_EXPECTING_A_TIME 133
  1023. #define ASN1_R_TAG_VALUE_TOO_HIGH 134
  1024. #define ASN1_R_NESTED_ASN1_STRING 135
  1025. #define ASN1_R_ILLEGAL_BITSTRING_FORMAT 136
  1026. #define ASN1_R_MISSING_SECOND_NUMBER 137
  1027. #define ASN1_R_TIME_NOT_ASCII_FORMAT 138
  1028. #define ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 139
  1029. #define ASN1_R_WRONG_TYPE 140
  1030. #define ASN1_R_EXPECTING_AN_INTEGER 141
  1031. #define ASN1_R_DEPTH_EXCEEDED 142
  1032. #define ASN1_R_ILLEGAL_OBJECT 143
  1033. #define ASN1_R_UNKNOWN_TAG 144
  1034. #define ASN1_R_ILLEGAL_IMPLICIT_TAG 145
  1035. #define ASN1_R_AUX_ERROR 146
  1036. #define ASN1_R_SEQUENCE_LENGTH_MISMATCH 147
  1037. #define ASN1_R_FIELD_MISSING 148
  1038. #define ASN1_R_TYPE_NOT_CONSTRUCTED 149
  1039. #define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 150
  1040. #define ASN1_R_FIRST_NUM_TOO_LARGE 151
  1041. #define ASN1_R_INVALID_DIGIT 152
  1042. #define ASN1_R_MSTRING_WRONG_TAG 153
  1043. #define ASN1_R_OBJECT_NOT_ASCII_FORMAT 154
  1044. #define ASN1_R_UNSUPPORTED_TYPE 155
  1045. #define ASN1_R_ERROR_LOADING_SECTION 156
  1046. #define ASN1_R_ODD_NUMBER_OF_CHARS 157
  1047. #define ASN1_R_ASN1_LENGTH_MISMATCH 158
  1048. #define ASN1_R_MISSING_EOC 159
  1049. #define ASN1_R_ILLEGAL_INTEGER 160
  1050. #define ASN1_R_ILLEGAL_HEX 161
  1051. #define ASN1_R_NESTED_ASN1_ERROR 162
  1052. #define ASN1_R_TOO_LONG 163
  1053. #define ASN1_R_LENGTH_ERROR 164
  1054. #define ASN1_R_DECODING_ERROR 165
  1055. #define ASN1_R_MIME_SIG_PARSE_ERROR 166
  1056. #define ASN1_R_ILLEGAL_NULL_VALUE 167
  1057. #define ASN1_R_EXPECTING_A_BOOLEAN 168
  1058. #define ASN1_R_STREAMING_NOT_SUPPORTED 169
  1059. #define ASN1_R_INVALID_BMPSTRING_LENGTH 170
  1060. #define ASN1_R_INTEGER_NOT_ASCII_FORMAT 171
  1061. #define ASN1_R_INVALID_MODIFIER 172
  1062. #define ASN1_R_UNEXPECTED_EOC 173
  1063. #define ASN1_R_ILLEGAL_NESTED_TAGGING 174
  1064. #define ASN1_R_IV_TOO_LARGE 175
  1065. #define ASN1_R_INTEGER_TOO_LARGE_FOR_LONG 176
  1066. #define ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE 177
  1067. #define ASN1_R_BUFFER_TOO_SMALL 178
  1068. #define ASN1_R_INVALID_UNIVERSALSTRING_LENGTH 179
  1069. #define ASN1_R_WRONG_PUBLIC_KEY_TYPE 180
  1070. #define ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM 181
  1071. #define ASN1_R_MIME_PARSE_ERROR 182
  1072. #define ASN1_R_INVALID_OBJECT_ENCODING 183
  1073. #define ASN1_R_PRIVATE_KEY_HEADER_MISSING 184
  1074. #define ASN1_R_UNSUPPORTED_CIPHER 185
  1075. #define ASN1_R_NO_MULTIPART_BODY_FAILURE 186
  1076. #define ASN1_R_NO_CONTENT_TYPE 187
  1077. #define ASN1_R_SECOND_NUMBER_TOO_LARGE 188
  1078. #define ASN1_R_INVALID_TIME_FORMAT 189
  1079. #define ASN1_R_NO_DEFAULT_DIGEST 190
  1080. #define ASN1_R_ERROR_SETTING_CIPHER_PARAMS 191
  1081. #define ASN1_R_EXPECTING_AN_OBJECT 192
  1082. #define ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE 193
  1083. #define ASN1_R_ERROR_GETTING_TIME 194
  1084. #define ASN1_R_MISSING_VALUE 195
  1085. #define ASN1_R_LIST_ERROR 196
  1086. #define ASN1_R_DECODE_ERROR 197
  1087. #define ASN1_R_NON_HEX_CHARACTERS 198
  1088. #define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 199
  1089. #define ASN1_R_UNKNOWN_FORMAT 200
  1090. #define ASN1_R_EXPECTING_AN_ASN1_SEQUENCE 201
  1091. #define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 202
  1092. #define ASN1_R_STRING_TOO_SHORT 203
  1093. #define ASN1_R_ILLEGAL_OPTIONAL_ANY 204
  1094. #define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 205
  1095. #define ASN1_R_NO_SIG_CONTENT_TYPE 206
  1096. #define ASN1_R_ENCODE_ERROR 207
  1097. #define ASN1_R_SHORT_LINE 208
  1098. #define ASN1_R_ILLEGAL_TIME_VALUE 209
  1099. #define ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY 210
  1100. #define ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER 211
  1101. #define ASN1_R_BAD_CLASS 212
  1102. #define ASN1_R_BAD_TAG 213
  1103. #define ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE 214
  1104. #define ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED 215
  1105. #define ASN1_R_ILLEGAL_BOOLEAN 216
  1106. #define ASN1_R_SIG_INVALID_MIME_TYPE 217
  1107. #define ASN1_R_NULL_IS_WRONG_LENGTH 218
  1108. #define ASN1_R_MISSING_ASN1_EOS 219
  1109. #define ASN1_R_ERROR_PARSING_SET_ELEMENT 220
  1110. #define ASN1_R_WRONG_TAG 221
  1111. #define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 222
  1112. #define ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 223
  1113. #endif