Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

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