Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

1271 řádky
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. /* ASN1_ITEM pointer exported type */
  337. typedef const ASN1_ITEM ASN1_ITEM_EXP;
  338. /* Macro to obtain ASN1_ITEM pointer from exported type */
  339. #define ASN1_ITEM_ptr(iptr) (iptr)
  340. /* Macro to include ASN1_ITEM pointer from base type */
  341. #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
  342. #define ASN1_ITEM_rptr(ref) (&(ref##_it))
  343. #define DECLARE_ASN1_ITEM(name) \
  344. extern OPENSSL_EXPORT const ASN1_ITEM name##_it;
  345. /* Parameters used by ASN1_STRING_print_ex() */
  346. /* These determine which characters to escape:
  347. * RFC2253 special characters, control characters and
  348. * MSB set characters
  349. */
  350. #define ASN1_STRFLGS_ESC_2253 1
  351. #define ASN1_STRFLGS_ESC_CTRL 2
  352. #define ASN1_STRFLGS_ESC_MSB 4
  353. /* This flag determines how we do escaping: normally
  354. * RC2253 backslash only, set this to use backslash and
  355. * quote.
  356. */
  357. #define ASN1_STRFLGS_ESC_QUOTE 8
  358. /* These three flags are internal use only. */
  359. /* Character is a valid PrintableString character */
  360. #define CHARTYPE_PRINTABLESTRING 0x10
  361. /* Character needs escaping if it is the first character */
  362. #define CHARTYPE_FIRST_ESC_2253 0x20
  363. /* Character needs escaping if it is the last character */
  364. #define CHARTYPE_LAST_ESC_2253 0x40
  365. /* NB the internal flags are safely reused below by flags
  366. * handled at the top level.
  367. */
  368. /* If this is set we convert all character strings
  369. * to UTF8 first
  370. */
  371. #define ASN1_STRFLGS_UTF8_CONVERT 0x10
  372. /* If this is set we don't attempt to interpret content:
  373. * just assume all strings are 1 byte per character. This
  374. * will produce some pretty odd looking output!
  375. */
  376. #define ASN1_STRFLGS_IGNORE_TYPE 0x20
  377. /* If this is set we include the string type in the output */
  378. #define ASN1_STRFLGS_SHOW_TYPE 0x40
  379. /* This determines which strings to display and which to
  380. * 'dump' (hex dump of content octets or DER encoding). We can
  381. * only dump non character strings or everything. If we
  382. * don't dump 'unknown' they are interpreted as character
  383. * strings with 1 octet per character and are subject to
  384. * the usual escaping options.
  385. */
  386. #define ASN1_STRFLGS_DUMP_ALL 0x80
  387. #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
  388. /* These determine what 'dumping' does, we can dump the
  389. * content octets or the DER encoding: both use the
  390. * RFC2253 #XXXXX notation.
  391. */
  392. #define ASN1_STRFLGS_DUMP_DER 0x200
  393. /* All the string flags consistent with RFC2253,
  394. * escaping control characters isn't essential in
  395. * RFC2253 but it is advisable anyway.
  396. */
  397. #define ASN1_STRFLGS_RFC2253 (ASN1_STRFLGS_ESC_2253 | \
  398. ASN1_STRFLGS_ESC_CTRL | \
  399. ASN1_STRFLGS_ESC_MSB | \
  400. ASN1_STRFLGS_UTF8_CONVERT | \
  401. ASN1_STRFLGS_DUMP_UNKNOWN | \
  402. ASN1_STRFLGS_DUMP_DER)
  403. DECLARE_ASN1_SET_OF(ASN1_INTEGER)
  404. typedef struct asn1_type_st
  405. {
  406. int type;
  407. union {
  408. char *ptr;
  409. ASN1_BOOLEAN boolean;
  410. ASN1_STRING * asn1_string;
  411. ASN1_OBJECT * object;
  412. ASN1_INTEGER * integer;
  413. ASN1_ENUMERATED * enumerated;
  414. ASN1_BIT_STRING * bit_string;
  415. ASN1_OCTET_STRING * octet_string;
  416. ASN1_PRINTABLESTRING * printablestring;
  417. ASN1_T61STRING * t61string;
  418. ASN1_IA5STRING * ia5string;
  419. ASN1_GENERALSTRING * generalstring;
  420. ASN1_BMPSTRING * bmpstring;
  421. ASN1_UNIVERSALSTRING * universalstring;
  422. ASN1_UTCTIME * utctime;
  423. ASN1_GENERALIZEDTIME * generalizedtime;
  424. ASN1_VISIBLESTRING * visiblestring;
  425. ASN1_UTF8STRING * utf8string;
  426. /* set and sequence are left complete and still
  427. * contain the set or sequence bytes */
  428. ASN1_STRING * set;
  429. ASN1_STRING * sequence;
  430. ASN1_VALUE * asn1_value;
  431. } value;
  432. } ASN1_TYPE;
  433. DECLARE_ASN1_SET_OF(ASN1_TYPE)
  434. typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
  435. DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
  436. DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
  437. struct X509_algor_st
  438. {
  439. ASN1_OBJECT *algorithm;
  440. ASN1_TYPE *parameter;
  441. } /* X509_ALGOR */;
  442. DEFINE_STACK_OF(X509_ALGOR);
  443. DECLARE_ASN1_FUNCTIONS(X509_ALGOR);
  444. typedef struct NETSCAPE_X509_st
  445. {
  446. ASN1_OCTET_STRING *header;
  447. X509 *cert;
  448. } NETSCAPE_X509;
  449. /* This is used to contain a list of bit names */
  450. typedef struct BIT_STRING_BITNAME_st {
  451. int bitnum;
  452. const char *lname;
  453. const char *sname;
  454. } BIT_STRING_BITNAME;
  455. #define M_ASN1_STRING_length(x) ((x)->length)
  456. #define M_ASN1_STRING_length_set(x, n) ((x)->length = (n))
  457. #define M_ASN1_STRING_type(x) ((x)->type)
  458. #define M_ASN1_STRING_data(x) ((x)->data)
  459. /* Macros for string operations */
  460. #define M_ASN1_BIT_STRING_new() (ASN1_BIT_STRING *)\
  461. ASN1_STRING_type_new(V_ASN1_BIT_STRING)
  462. #define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  463. #define M_ASN1_BIT_STRING_dup(a) (ASN1_BIT_STRING *)\
  464. ASN1_STRING_dup((const ASN1_STRING *)a)
  465. #define M_ASN1_BIT_STRING_cmp(a,b) ASN1_STRING_cmp(\
  466. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  467. #define M_ASN1_BIT_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  468. #define M_ASN1_INTEGER_new() (ASN1_INTEGER *)\
  469. ASN1_STRING_type_new(V_ASN1_INTEGER)
  470. #define M_ASN1_INTEGER_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  471. #define M_ASN1_INTEGER_dup(a) (ASN1_INTEGER *)\
  472. ASN1_STRING_dup((const ASN1_STRING *)a)
  473. #define M_ASN1_INTEGER_cmp(a,b) ASN1_STRING_cmp(\
  474. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  475. #define M_ASN1_ENUMERATED_new() (ASN1_ENUMERATED *)\
  476. ASN1_STRING_type_new(V_ASN1_ENUMERATED)
  477. #define M_ASN1_ENUMERATED_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  478. #define M_ASN1_ENUMERATED_dup(a) (ASN1_ENUMERATED *)\
  479. ASN1_STRING_dup((const ASN1_STRING *)a)
  480. #define M_ASN1_ENUMERATED_cmp(a,b) ASN1_STRING_cmp(\
  481. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  482. #define M_ASN1_OCTET_STRING_new() (ASN1_OCTET_STRING *)\
  483. ASN1_STRING_type_new(V_ASN1_OCTET_STRING)
  484. #define M_ASN1_OCTET_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  485. #define M_ASN1_OCTET_STRING_dup(a) (ASN1_OCTET_STRING *)\
  486. ASN1_STRING_dup((const ASN1_STRING *)a)
  487. #define M_ASN1_OCTET_STRING_cmp(a,b) ASN1_STRING_cmp(\
  488. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  489. #define M_ASN1_OCTET_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  490. #define M_ASN1_OCTET_STRING_print(a,b) ASN1_STRING_print(a,(ASN1_STRING *)b)
  491. #define M_i2d_ASN1_OCTET_STRING(a,pp) \
  492. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_OCTET_STRING,\
  493. V_ASN1_UNIVERSAL)
  494. #define B_ASN1_TIME \
  495. B_ASN1_UTCTIME | \
  496. B_ASN1_GENERALIZEDTIME
  497. #define B_ASN1_PRINTABLE \
  498. B_ASN1_NUMERICSTRING| \
  499. B_ASN1_PRINTABLESTRING| \
  500. B_ASN1_T61STRING| \
  501. B_ASN1_IA5STRING| \
  502. B_ASN1_BIT_STRING| \
  503. B_ASN1_UNIVERSALSTRING|\
  504. B_ASN1_BMPSTRING|\
  505. B_ASN1_UTF8STRING|\
  506. B_ASN1_SEQUENCE|\
  507. B_ASN1_UNKNOWN
  508. #define B_ASN1_DIRECTORYSTRING \
  509. B_ASN1_PRINTABLESTRING| \
  510. B_ASN1_TELETEXSTRING|\
  511. B_ASN1_BMPSTRING|\
  512. B_ASN1_UNIVERSALSTRING|\
  513. B_ASN1_UTF8STRING
  514. #define B_ASN1_DISPLAYTEXT \
  515. B_ASN1_IA5STRING| \
  516. B_ASN1_VISIBLESTRING| \
  517. B_ASN1_BMPSTRING|\
  518. B_ASN1_UTF8STRING
  519. #define M_ASN1_PRINTABLE_new() ASN1_STRING_type_new(V_ASN1_T61STRING)
  520. #define M_ASN1_PRINTABLE_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  521. #define M_i2d_ASN1_PRINTABLE(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  522. pp,a->type,V_ASN1_UNIVERSAL)
  523. #define M_d2i_ASN1_PRINTABLE(a,pp,l) \
  524. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  525. B_ASN1_PRINTABLE)
  526. #define M_DIRECTORYSTRING_new() ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
  527. #define M_DIRECTORYSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  528. #define M_i2d_DIRECTORYSTRING(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  529. pp,a->type,V_ASN1_UNIVERSAL)
  530. #define M_d2i_DIRECTORYSTRING(a,pp,l) \
  531. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  532. B_ASN1_DIRECTORYSTRING)
  533. #define M_DISPLAYTEXT_new() ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  534. #define M_DISPLAYTEXT_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  535. #define M_i2d_DISPLAYTEXT(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  536. pp,a->type,V_ASN1_UNIVERSAL)
  537. #define M_d2i_DISPLAYTEXT(a,pp,l) \
  538. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  539. B_ASN1_DISPLAYTEXT)
  540. #define M_ASN1_PRINTABLESTRING_new() (ASN1_PRINTABLESTRING *)\
  541. ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
  542. #define M_ASN1_PRINTABLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  543. #define M_i2d_ASN1_PRINTABLESTRING(a,pp) \
  544. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_PRINTABLESTRING,\
  545. V_ASN1_UNIVERSAL)
  546. #define M_d2i_ASN1_PRINTABLESTRING(a,pp,l) \
  547. (ASN1_PRINTABLESTRING *)d2i_ASN1_type_bytes\
  548. ((ASN1_STRING **)a,pp,l,B_ASN1_PRINTABLESTRING)
  549. #define M_ASN1_T61STRING_new() (ASN1_T61STRING *)\
  550. ASN1_STRING_type_new(V_ASN1_T61STRING)
  551. #define M_ASN1_T61STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  552. #define M_i2d_ASN1_T61STRING(a,pp) \
  553. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_T61STRING,\
  554. V_ASN1_UNIVERSAL)
  555. #define M_d2i_ASN1_T61STRING(a,pp,l) \
  556. (ASN1_T61STRING *)d2i_ASN1_type_bytes\
  557. ((ASN1_STRING **)a,pp,l,B_ASN1_T61STRING)
  558. #define M_ASN1_IA5STRING_new() (ASN1_IA5STRING *)\
  559. ASN1_STRING_type_new(V_ASN1_IA5STRING)
  560. #define M_ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  561. #define M_ASN1_IA5STRING_dup(a) \
  562. (ASN1_IA5STRING *)ASN1_STRING_dup((const ASN1_STRING *)a)
  563. #define M_i2d_ASN1_IA5STRING(a,pp) \
  564. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_IA5STRING,\
  565. V_ASN1_UNIVERSAL)
  566. #define M_d2i_ASN1_IA5STRING(a,pp,l) \
  567. (ASN1_IA5STRING *)d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l,\
  568. B_ASN1_IA5STRING)
  569. #define M_ASN1_UTCTIME_new() (ASN1_UTCTIME *)\
  570. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  571. #define M_ASN1_UTCTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  572. #define M_ASN1_UTCTIME_dup(a) (ASN1_UTCTIME *)\
  573. ASN1_STRING_dup((const ASN1_STRING *)a)
  574. #define M_ASN1_GENERALIZEDTIME_new() (ASN1_GENERALIZEDTIME *)\
  575. ASN1_STRING_type_new(V_ASN1_GENERALIZEDTIME)
  576. #define M_ASN1_GENERALIZEDTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  577. #define M_ASN1_GENERALIZEDTIME_dup(a) (ASN1_GENERALIZEDTIME *)ASN1_STRING_dup(\
  578. (const ASN1_STRING *)a)
  579. #define M_ASN1_TIME_new() (ASN1_TIME *)\
  580. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  581. #define M_ASN1_TIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  582. #define M_ASN1_TIME_dup(a) (ASN1_TIME *)\
  583. ASN1_STRING_dup((const ASN1_STRING *)a)
  584. #define M_ASN1_GENERALSTRING_new() (ASN1_GENERALSTRING *)\
  585. ASN1_STRING_type_new(V_ASN1_GENERALSTRING)
  586. #define M_ASN1_GENERALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  587. #define M_i2d_ASN1_GENERALSTRING(a,pp) \
  588. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_GENERALSTRING,\
  589. V_ASN1_UNIVERSAL)
  590. #define M_d2i_ASN1_GENERALSTRING(a,pp,l) \
  591. (ASN1_GENERALSTRING *)d2i_ASN1_type_bytes\
  592. ((ASN1_STRING **)a,pp,l,B_ASN1_GENERALSTRING)
  593. #define M_ASN1_UNIVERSALSTRING_new() (ASN1_UNIVERSALSTRING *)\
  594. ASN1_STRING_type_new(V_ASN1_UNIVERSALSTRING)
  595. #define M_ASN1_UNIVERSALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  596. #define M_i2d_ASN1_UNIVERSALSTRING(a,pp) \
  597. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UNIVERSALSTRING,\
  598. V_ASN1_UNIVERSAL)
  599. #define M_d2i_ASN1_UNIVERSALSTRING(a,pp,l) \
  600. (ASN1_UNIVERSALSTRING *)d2i_ASN1_type_bytes\
  601. ((ASN1_STRING **)a,pp,l,B_ASN1_UNIVERSALSTRING)
  602. #define M_ASN1_BMPSTRING_new() (ASN1_BMPSTRING *)\
  603. ASN1_STRING_type_new(V_ASN1_BMPSTRING)
  604. #define M_ASN1_BMPSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  605. #define M_i2d_ASN1_BMPSTRING(a,pp) \
  606. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_BMPSTRING,\
  607. V_ASN1_UNIVERSAL)
  608. #define M_d2i_ASN1_BMPSTRING(a,pp,l) \
  609. (ASN1_BMPSTRING *)d2i_ASN1_type_bytes\
  610. ((ASN1_STRING **)a,pp,l,B_ASN1_BMPSTRING)
  611. #define M_ASN1_VISIBLESTRING_new() (ASN1_VISIBLESTRING *)\
  612. ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  613. #define M_ASN1_VISIBLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  614. #define M_i2d_ASN1_VISIBLESTRING(a,pp) \
  615. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_VISIBLESTRING,\
  616. V_ASN1_UNIVERSAL)
  617. #define M_d2i_ASN1_VISIBLESTRING(a,pp,l) \
  618. (ASN1_VISIBLESTRING *)d2i_ASN1_type_bytes\
  619. ((ASN1_STRING **)a,pp,l,B_ASN1_VISIBLESTRING)
  620. #define M_ASN1_UTF8STRING_new() (ASN1_UTF8STRING *)\
  621. ASN1_STRING_type_new(V_ASN1_UTF8STRING)
  622. #define M_ASN1_UTF8STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  623. #define M_i2d_ASN1_UTF8STRING(a,pp) \
  624. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UTF8STRING,\
  625. V_ASN1_UNIVERSAL)
  626. #define M_d2i_ASN1_UTF8STRING(a,pp,l) \
  627. (ASN1_UTF8STRING *)d2i_ASN1_type_bytes\
  628. ((ASN1_STRING **)a,pp,l,B_ASN1_UTF8STRING)
  629. /* for the is_set parameter to i2d_ASN1_SET */
  630. #define IS_SEQUENCE 0
  631. #define IS_SET 1
  632. DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
  633. OPENSSL_EXPORT int ASN1_TYPE_get(ASN1_TYPE *a);
  634. OPENSSL_EXPORT void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
  635. OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
  636. OPENSSL_EXPORT int ASN1_TYPE_cmp(ASN1_TYPE *a, ASN1_TYPE *b);
  637. OPENSSL_EXPORT ASN1_OBJECT * ASN1_OBJECT_new(void );
  638. OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
  639. OPENSSL_EXPORT int i2d_ASN1_OBJECT(ASN1_OBJECT *a,unsigned char **pp);
  640. OPENSSL_EXPORT ASN1_OBJECT * c2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  641. long length);
  642. OPENSSL_EXPORT ASN1_OBJECT * d2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  643. long length);
  644. DECLARE_ASN1_ITEM(ASN1_OBJECT)
  645. DECLARE_ASN1_SET_OF(ASN1_OBJECT)
  646. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_new(void);
  647. OPENSSL_EXPORT void ASN1_STRING_free(ASN1_STRING *a);
  648. OPENSSL_EXPORT int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
  649. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_dup(const ASN1_STRING *a);
  650. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_type_new(int type );
  651. OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
  652. /* Since this is used to store all sorts of things, via macros, for now, make
  653. its data void * */
  654. OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
  655. OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
  656. OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *x);
  657. OPENSSL_EXPORT void ASN1_STRING_length_set(ASN1_STRING *x, int n);
  658. OPENSSL_EXPORT int ASN1_STRING_type(ASN1_STRING *x);
  659. OPENSSL_EXPORT unsigned char * ASN1_STRING_data(ASN1_STRING *x);
  660. DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
  661. OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a,unsigned char **pp);
  662. OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,const unsigned char **pp, long length);
  663. OPENSSL_EXPORT int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length );
  664. OPENSSL_EXPORT int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
  665. OPENSSL_EXPORT int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *a, int n);
  666. OPENSSL_EXPORT int ASN1_BIT_STRING_check(ASN1_BIT_STRING *a, unsigned char *flags, int flags_len);
  667. #ifndef OPENSSL_NO_BIO
  668. OPENSSL_EXPORT int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent);
  669. #endif
  670. OPENSSL_EXPORT int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl);
  671. OPENSSL_EXPORT int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value, BIT_STRING_BITNAME *tbl);
  672. OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a,unsigned char **pp);
  673. OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a,const unsigned char **pp,long length);
  674. DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
  675. OPENSSL_EXPORT int i2c_ASN1_INTEGER(ASN1_INTEGER *a,unsigned char **pp);
  676. OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  677. OPENSSL_EXPORT ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  678. OPENSSL_EXPORT ASN1_INTEGER * ASN1_INTEGER_dup(const ASN1_INTEGER *x);
  679. OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);
  680. DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
  681. OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
  682. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s,time_t t);
  683. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec);
  684. OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
  685. OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
  686. #if 0
  687. time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
  688. #endif
  689. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
  690. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,time_t t);
  691. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
  692. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
  693. OPENSSL_EXPORT int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to);
  694. DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
  695. OPENSSL_EXPORT ASN1_OCTET_STRING * ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a);
  696. OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, const ASN1_OCTET_STRING *b);
  697. OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
  698. DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
  699. DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
  700. DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
  701. DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
  702. DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
  703. OPENSSL_EXPORT int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
  704. OPENSSL_EXPORT int UTF8_putc(unsigned char *str, int len, unsigned long value);
  705. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
  706. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
  707. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
  708. DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
  709. DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
  710. DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
  711. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
  712. DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
  713. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
  714. DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
  715. DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF)
  716. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s,time_t t);
  717. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s,time_t t, int offset_day, long offset_sec);
  718. OPENSSL_EXPORT int ASN1_TIME_check(ASN1_TIME *t);
  719. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
  720. OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
  721. 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);
  722. OPENSSL_EXPORT STACK_OF(OPENSSL_BLOCK) *d2i_ASN1_SET(STACK_OF(OPENSSL_BLOCK) **a,
  723. const unsigned char **pp,
  724. long length, d2i_of_void *d2i,
  725. void (*free_func)(OPENSSL_BLOCK), int ex_tag,
  726. int ex_class);
  727. #ifndef OPENSSL_NO_BIO
  728. OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
  729. OPENSSL_EXPORT int a2i_ASN1_INTEGER(BIO *bp,ASN1_INTEGER *bs,char *buf,int size);
  730. OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
  731. OPENSSL_EXPORT int a2i_ASN1_ENUMERATED(BIO *bp,ASN1_ENUMERATED *bs,char *buf,int size);
  732. OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
  733. OPENSSL_EXPORT int a2i_ASN1_STRING(BIO *bp,ASN1_STRING *bs,char *buf,int size);
  734. OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
  735. #endif
  736. OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf,int buf_len,ASN1_OBJECT *a);
  737. OPENSSL_EXPORT int a2d_ASN1_OBJECT(unsigned char *out,int olen, const char *buf, int num);
  738. OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
  739. OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
  740. OPENSSL_EXPORT long ASN1_INTEGER_get(const ASN1_INTEGER *a);
  741. OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
  742. OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
  743. OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
  744. OPENSSL_EXPORT long ASN1_ENUMERATED_get(ASN1_ENUMERATED *a);
  745. OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
  746. OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);
  747. /* General */
  748. /* given a string, return the correct type, max is the maximum length */
  749. OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int max);
  750. OPENSSL_EXPORT int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass);
  751. OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, const unsigned char **pp, long length, int Ptag, int Pclass);
  752. OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
  753. /* type is one or more of the B_ASN1_ values. */
  754. OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a,const unsigned char **pp, long length,int type);
  755. /* PARSING */
  756. OPENSSL_EXPORT int asn1_Finish(ASN1_CTX *c);
  757. OPENSSL_EXPORT int asn1_const_Finish(ASN1_const_CTX *c);
  758. /* SPECIALS */
  759. OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax);
  760. OPENSSL_EXPORT int ASN1_check_infinite_end(unsigned char **p,long len);
  761. OPENSSL_EXPORT int ASN1_const_check_infinite_end(const unsigned char **p,long len);
  762. OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, int xclass);
  763. OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
  764. OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
  765. /* Used to implement other functions */
  766. OPENSSL_EXPORT void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
  767. #define ASN1_dup_of(type,i2d,d2i,x) \
  768. ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
  769. CHECKED_D2I_OF(type, d2i), \
  770. CHECKED_PTR_OF(type, x)))
  771. #define ASN1_dup_of_const(type,i2d,d2i,x) \
  772. ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
  773. CHECKED_D2I_OF(type, d2i), \
  774. CHECKED_PTR_OF(const type, x)))
  775. OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
  776. /* ASN1 alloc/free macros for when a type is only used internally */
  777. #define M_ASN1_new_of(type) (type *)ASN1_item_new(ASN1_ITEM_rptr(type))
  778. #define M_ASN1_free_of(x, type) \
  779. ASN1_item_free(CHECKED_PTR_OF(type, x), ASN1_ITEM_rptr(type))
  780. #ifndef OPENSSL_NO_FP_API
  781. OPENSSL_EXPORT void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x);
  782. #define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \
  783. ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
  784. CHECKED_D2I_OF(type, d2i), \
  785. in, \
  786. CHECKED_PPTR_OF(type, x)))
  787. OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
  788. OPENSSL_EXPORT int ASN1_i2d_fp(i2d_of_void *i2d,FILE *out,void *x);
  789. #define ASN1_i2d_fp_of(type,i2d,out,x) \
  790. (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
  791. out, \
  792. CHECKED_PTR_OF(type, x)))
  793. #define ASN1_i2d_fp_of_const(type,i2d,out,x) \
  794. (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \
  795. out, \
  796. CHECKED_PTR_OF(const type, x)))
  797. OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
  798. OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags);
  799. #endif
  800. OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in);
  801. #ifndef OPENSSL_NO_BIO
  802. OPENSSL_EXPORT void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x);
  803. #define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \
  804. ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \
  805. CHECKED_D2I_OF(type, d2i), \
  806. in, \
  807. CHECKED_PPTR_OF(type, x)))
  808. OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
  809. OPENSSL_EXPORT int ASN1_i2d_bio(i2d_of_void *i2d,BIO *out, unsigned char *x);
  810. #define ASN1_i2d_bio_of(type,i2d,out,x) \
  811. (ASN1_i2d_bio(CHECKED_I2D_OF(type, i2d), \
  812. out, \
  813. CHECKED_PTR_OF(type, x)))
  814. #define ASN1_i2d_bio_of_const(type,i2d,out,x) \
  815. (ASN1_i2d_bio(CHECKED_I2D_OF(const type, i2d), \
  816. out, \
  817. CHECKED_PTR_OF(const type, x)))
  818. OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
  819. OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
  820. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
  821. OPENSSL_EXPORT int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
  822. OPENSSL_EXPORT int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
  823. OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags);
  824. OPENSSL_EXPORT int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *buf, int off);
  825. OPENSSL_EXPORT int ASN1_parse(BIO *bp,const unsigned char *pp,long len,int indent);
  826. OPENSSL_EXPORT int ASN1_parse_dump(BIO *bp,const unsigned char *pp,long len,int indent,int dump);
  827. #endif
  828. OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
  829. /* Used to load and write netscape format cert */
  830. DECLARE_ASN1_FUNCTIONS(NETSCAPE_X509)
  831. int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s);
  832. OPENSSL_EXPORT STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len, d2i_of_void *d2i, void (*free_func)(OPENSSL_BLOCK));
  833. OPENSSL_EXPORT unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d, unsigned char **buf, int *len );
  834. OPENSSL_EXPORT void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i);
  835. OPENSSL_EXPORT void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it);
  836. OPENSSL_EXPORT ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_OCTET_STRING **oct);
  837. #define ASN1_pack_string_of(type,obj,i2d,oct) \
  838. (ASN1_pack_string(CHECKED_PTR_OF(type, obj), \
  839. CHECKED_I2D_OF(type, i2d), \
  840. oct))
  841. OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct);
  842. OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
  843. OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
  844. OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
  845. OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask);
  846. OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask, long minsize, long maxsize);
  847. OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid);
  848. OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
  849. OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long);
  850. OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
  851. /* ASN1 template functions */
  852. /* Old API compatible functions */
  853. OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
  854. OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
  855. OPENSSL_EXPORT ASN1_VALUE * ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it);
  856. OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  857. OPENSSL_EXPORT int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  858. OPENSSL_EXPORT void ASN1_add_oid_module(void);
  859. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
  860. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);
  861. /* ASN1 Print flags */
  862. /* Indicate missing OPTIONAL fields */
  863. #define ASN1_PCTX_FLAGS_SHOW_ABSENT 0x001
  864. /* Mark start and end of SEQUENCE */
  865. #define ASN1_PCTX_FLAGS_SHOW_SEQUENCE 0x002
  866. /* Mark start and end of SEQUENCE/SET OF */
  867. #define ASN1_PCTX_FLAGS_SHOW_SSOF 0x004
  868. /* Show the ASN1 type of primitives */
  869. #define ASN1_PCTX_FLAGS_SHOW_TYPE 0x008
  870. /* Don't show ASN1 type of ANY */
  871. #define ASN1_PCTX_FLAGS_NO_ANY_TYPE 0x010
  872. /* Don't show ASN1 type of MSTRINGs */
  873. #define ASN1_PCTX_FLAGS_NO_MSTRING_TYPE 0x020
  874. /* Don't show field names in SEQUENCE */
  875. #define ASN1_PCTX_FLAGS_NO_FIELD_NAME 0x040
  876. /* Show structure names of each SEQUENCE field */
  877. #define ASN1_PCTX_FLAGS_SHOW_FIELD_STRUCT_NAME 0x080
  878. /* Don't show structure name even at top level */
  879. #define ASN1_PCTX_FLAGS_NO_STRUCT_NAME 0x100
  880. OPENSSL_EXPORT int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, const ASN1_ITEM *it, const ASN1_PCTX *pctx);
  881. OPENSSL_EXPORT ASN1_PCTX *ASN1_PCTX_new(void);
  882. OPENSSL_EXPORT void ASN1_PCTX_free(ASN1_PCTX *p);
  883. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_flags(ASN1_PCTX *p);
  884. OPENSSL_EXPORT void ASN1_PCTX_set_flags(ASN1_PCTX *p, unsigned long flags);
  885. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_nm_flags(ASN1_PCTX *p);
  886. OPENSSL_EXPORT void ASN1_PCTX_set_nm_flags(ASN1_PCTX *p, unsigned long flags);
  887. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_cert_flags(ASN1_PCTX *p);
  888. OPENSSL_EXPORT void ASN1_PCTX_set_cert_flags(ASN1_PCTX *p, unsigned long flags);
  889. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_oid_flags(ASN1_PCTX *p);
  890. OPENSSL_EXPORT void ASN1_PCTX_set_oid_flags(ASN1_PCTX *p, unsigned long flags);
  891. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_str_flags(ASN1_PCTX *p);
  892. OPENSSL_EXPORT void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags);
  893. OPENSSL_EXPORT BIO_METHOD *BIO_f_asn1(void);
  894. OPENSSL_EXPORT BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it);
  895. OPENSSL_EXPORT int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const ASN1_ITEM *it);
  896. OPENSSL_EXPORT int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const char *hdr, const ASN1_ITEM *it);
  897. OPENSSL_EXPORT ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it);
  898. OPENSSL_EXPORT int SMIME_crlf_copy(BIO *in, BIO *out, int flags);
  899. OPENSSL_EXPORT int SMIME_text(BIO *in, BIO *out);
  900. /* BEGIN ERROR CODES */
  901. /* The following lines are auto generated by the script mkerr.pl. Any changes
  902. * made after this point may be overwritten when the script is next run.
  903. */
  904. void ERR_load_ASN1_strings(void);
  905. typedef int asn1_ps_func(BIO *b, unsigned char **pbuf, int *plen, void *parg);
  906. OPENSSL_EXPORT int BIO_asn1_set_prefix(BIO *b, asn1_ps_func *prefix, asn1_ps_func *prefix_free);
  907. OPENSSL_EXPORT int BIO_asn1_get_prefix(BIO *b, asn1_ps_func **pprefix, asn1_ps_func **pprefix_free);
  908. OPENSSL_EXPORT int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix, asn1_ps_func *suffix_free);
  909. OPENSSL_EXPORT int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix, asn1_ps_func **psuffix_free);
  910. #ifdef __cplusplus
  911. }
  912. #endif
  913. #define ASN1_F_asn1_template_ex_d2i 100
  914. #define ASN1_F_ASN1_dup 101
  915. #define ASN1_F_a2i_ASN1_STRING 102
  916. #define ASN1_F_ASN1_d2i_fp 103
  917. #define ASN1_F_d2i_ASN1_OBJECT 104
  918. #define ASN1_F_asn1_item_ex_combine_new 105
  919. #define ASN1_F_ASN1_template_new 106
  920. #define ASN1_F_asn1_do_adb 107
  921. #define ASN1_F_asn1_d2i_read_bio 108
  922. #define ASN1_F_asn1_ex_c2i 109
  923. #define ASN1_F_c2i_ASN1_INTEGER 110
  924. #define ASN1_F_ASN1_PCTX_new 111
  925. #define ASN1_F_ASN1_item_unpack 112
  926. #define ASN1_F_d2i_ASN1_type_bytes 113
  927. #define ASN1_F_a2i_ASN1_INTEGER 114
  928. #define ASN1_F_asn1_collect 115
  929. #define ASN1_F_ASN1_item_dup 116
  930. #define ASN1_F_ASN1_ENUMERATED_set 117
  931. #define ASN1_F_c2i_ASN1_OBJECT 118
  932. #define ASN1_F_ASN1_unpack_string 119
  933. #define ASN1_F_d2i_ASN1_UINTEGER 120
  934. #define ASN1_F_long_c2i 121
  935. #define ASN1_F_ASN1_seq_pack 122
  936. #define ASN1_F_a2d_ASN1_OBJECT 123
  937. #define ASN1_F_ASN1_STRING_type_new 124
  938. #define ASN1_F_ASN1_INTEGER_set 125
  939. #define ASN1_F_BN_to_ASN1_INTEGER 126
  940. #define ASN1_F_BIO_new_NDEF 127
  941. #define ASN1_F_ASN1_ENUMERATED_to_BN 128
  942. #define ASN1_F_ASN1_item_ex_d2i 129
  943. #define ASN1_F_ASN1_INTEGER_to_BN 130
  944. #define ASN1_F_i2d_ASN1_TIME 131
  945. #define ASN1_F_ASN1_TIME_adj 132
  946. #define ASN1_F_ASN1_BIT_STRING_set_bit 133
  947. #define ASN1_F_ASN1_seq_unpack 134
  948. #define ASN1_F_ASN1_item_pack 135
  949. #define ASN1_F_ASN1_STRING_set 136
  950. #define ASN1_F_ASN1_UTCTIME_adj 137
  951. #define ASN1_F_ASN1_mbstring_ncopy 138
  952. #define ASN1_F_d2i_ASN1_BOOLEAN 139
  953. #define ASN1_F_ASN1_OBJECT_new 140
  954. #define ASN1_F_asn1_template_noexp_d2i 141
  955. #define ASN1_F_c2i_ASN1_BIT_STRING 142
  956. #define ASN1_F_BN_to_ASN1_ENUMERATED 143
  957. #define ASN1_F_asn1_d2i_ex_primitive 144
  958. #define ASN1_F_ASN1_i2d_bio 145
  959. #define ASN1_F_ASN1_item_i2d_bio 146
  960. #define ASN1_F_d2i_ASN1_UTCTIME 147
  961. #define ASN1_F_ASN1_STRING_TABLE_add 148
  962. #define ASN1_F_asn1_find_end 149
  963. #define ASN1_F_ASN1_item_d2i_fp 150
  964. #define ASN1_F_collect_data 151
  965. #define ASN1_F_asn1_check_tlen 152
  966. #define ASN1_F_ASN1_i2d_fp 153
  967. #define ASN1_F_ASN1_item_i2d_fp 154
  968. #define ASN1_F_ASN1_GENERALIZEDTIME_adj 155
  969. #define ASN1_F_asn1_collate_primitive 156
  970. #define ASN1_F_ASN1_pack_string 157
  971. #define ASN1_F_ASN1_get_object 158
  972. #define ASN1_F_d2i_ASN1_bytes 159
  973. #define ASN1_F_a2i_ASN1_ENUMERATED 160
  974. #define ASN1_R_ASN1_SIG_PARSE_ERROR 100
  975. #define ASN1_R_ADDING_OBJECT 101
  976. #define ASN1_R_MIME_NO_CONTENT_TYPE 102
  977. #define ASN1_R_UNKNOWN_OBJECT_TYPE 103
  978. #define ASN1_R_ILLEGAL_FORMAT 104
  979. #define ASN1_R_HEADER_TOO_LONG 105
  980. #define ASN1_R_INVALID_UTF8STRING 106
  981. #define ASN1_R_EXPLICIT_LENGTH_MISMATCH 107
  982. #define ASN1_R_ILLEGAL_TAGGED_ANY 108
  983. #define ASN1_R_DATA_IS_WRONG 109
  984. #define ASN1_R_NOT_ASCII_FORMAT 110
  985. #define ASN1_R_NOT_ENOUGH_DATA 111
  986. #define ASN1_R_MSTRING_NOT_UNIVERSAL 112
  987. #define ASN1_R_UNKNOWN_FORMAT 113
  988. #define ASN1_R_BAD_PASSWORD_READ 115
  989. #define ASN1_R_BAD_OBJECT_HEADER 116
  990. #define ASN1_R_ILLEGAL_CHARACTERS 117
  991. #define ASN1_R_CONTEXT_NOT_INITIALISED 118
  992. #define ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG 119
  993. #define ASN1_R_BN_LIB 120
  994. #define ASN1_R_NO_MATCHING_CHOICE_TYPE 121
  995. #define ASN1_R_SEQUENCE_NOT_CONSTRUCTED 122
  996. #define ASN1_R_ASN1_PARSE_ERROR 123
  997. #define ASN1_R_NO_MULTIPART_BOUNDARY 124
  998. #define ASN1_R_INVALID_SEPARATOR 125
  999. #define ASN1_R_MALLOC_FAILURE 126
  1000. #define ASN1_R_ILLEGAL_NULL 127
  1001. #define ASN1_R_INVALID_MIME_TYPE 128
  1002. #define ASN1_R_INVALID_NUMBER 129
  1003. #define ASN1_R_STRING_TOO_LONG 130
  1004. #define ASN1_R_BAD_GET_ASN1_OBJECT_CALL 131
  1005. #define ASN1_R_UNABLE_TO_DECODE_RSA_KEY 132
  1006. #define ASN1_R_EXPECTING_A_TIME 133
  1007. #define ASN1_R_TAG_VALUE_TOO_HIGH 134
  1008. #define ASN1_R_NESTED_ASN1_STRING 135
  1009. #define ASN1_R_ILLEGAL_BITSTRING_FORMAT 136
  1010. #define ASN1_R_MISSING_SECOND_NUMBER 137
  1011. #define ASN1_R_TIME_NOT_ASCII_FORMAT 138
  1012. #define ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 139
  1013. #define ASN1_R_WRONG_TYPE 140
  1014. #define ASN1_R_EXPECTING_AN_INTEGER 141
  1015. #define ASN1_R_DEPTH_EXCEEDED 142
  1016. #define ASN1_R_ILLEGAL_OBJECT 143
  1017. #define ASN1_R_UNKNOWN_TAG 144
  1018. #define ASN1_R_ILLEGAL_IMPLICIT_TAG 145
  1019. #define ASN1_R_AUX_ERROR 146
  1020. #define ASN1_R_SEQUENCE_LENGTH_MISMATCH 147
  1021. #define ASN1_R_FIELD_MISSING 148
  1022. #define ASN1_R_TYPE_NOT_CONSTRUCTED 149
  1023. #define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 150
  1024. #define ASN1_R_FIRST_NUM_TOO_LARGE 151
  1025. #define ASN1_R_INVALID_DIGIT 152
  1026. #define ASN1_R_MSTRING_WRONG_TAG 153
  1027. #define ASN1_R_OBJECT_NOT_ASCII_FORMAT 154
  1028. #define ASN1_R_UNSUPPORTED_TYPE 155
  1029. #define ASN1_R_ERROR_LOADING_SECTION 156
  1030. #define ASN1_R_ODD_NUMBER_OF_CHARS 157
  1031. #define ASN1_R_ASN1_LENGTH_MISMATCH 158
  1032. #define ASN1_R_MISSING_EOC 159
  1033. #define ASN1_R_ILLEGAL_INTEGER 160
  1034. #define ASN1_R_ILLEGAL_HEX 161
  1035. #define ASN1_R_NESTED_ASN1_ERROR 162
  1036. #define ASN1_R_TOO_LONG 163
  1037. #define ASN1_R_LENGTH_ERROR 164
  1038. #define ASN1_R_DECODING_ERROR 165
  1039. #define ASN1_R_MIME_SIG_PARSE_ERROR 166
  1040. #define ASN1_R_ILLEGAL_NULL_VALUE 167
  1041. #define ASN1_R_EXPECTING_A_BOOLEAN 168
  1042. #define ASN1_R_STREAMING_NOT_SUPPORTED 169
  1043. #define ASN1_R_INVALID_BMPSTRING_LENGTH 170
  1044. #define ASN1_R_INTEGER_NOT_ASCII_FORMAT 171
  1045. #define ASN1_R_INVALID_MODIFIER 172
  1046. #define ASN1_R_UNEXPECTED_EOC 173
  1047. #define ASN1_R_ILLEGAL_NESTED_TAGGING 174
  1048. #define ASN1_R_IV_TOO_LARGE 175
  1049. #define ASN1_R_INTEGER_TOO_LARGE_FOR_LONG 176
  1050. #define ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE 177
  1051. #define ASN1_R_BUFFER_TOO_SMALL 178
  1052. #define ASN1_R_INVALID_UNIVERSALSTRING_LENGTH 179
  1053. #define ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM 181
  1054. #define ASN1_R_MIME_PARSE_ERROR 182
  1055. #define ASN1_R_INVALID_OBJECT_ENCODING 183
  1056. #define ASN1_R_PRIVATE_KEY_HEADER_MISSING 184
  1057. #define ASN1_R_UNSUPPORTED_CIPHER 185
  1058. #define ASN1_R_NO_MULTIPART_BODY_FAILURE 186
  1059. #define ASN1_R_NO_CONTENT_TYPE 187
  1060. #define ASN1_R_SECOND_NUMBER_TOO_LARGE 188
  1061. #define ASN1_R_INVALID_TIME_FORMAT 189
  1062. #define ASN1_R_NO_DEFAULT_DIGEST 190
  1063. #define ASN1_R_ERROR_SETTING_CIPHER_PARAMS 191
  1064. #define ASN1_R_EXPECTING_AN_OBJECT 192
  1065. #define ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE 193
  1066. #define ASN1_R_ERROR_GETTING_TIME 194
  1067. #define ASN1_R_MISSING_VALUE 195
  1068. #define ASN1_R_LIST_ERROR 196
  1069. #define ASN1_R_DECODE_ERROR 197
  1070. #define ASN1_R_NON_HEX_CHARACTERS 198
  1071. #define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 199
  1072. #define ASN1_R_EXPECTING_AN_ASN1_SEQUENCE 201
  1073. #define ASN1_R_STRING_TOO_SHORT 203
  1074. #define ASN1_R_ILLEGAL_OPTIONAL_ANY 204
  1075. #define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 205
  1076. #define ASN1_R_NO_SIG_CONTENT_TYPE 206
  1077. #define ASN1_R_ENCODE_ERROR 207
  1078. #define ASN1_R_SHORT_LINE 208
  1079. #define ASN1_R_ILLEGAL_TIME_VALUE 209
  1080. #define ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY 210
  1081. #define ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER 211
  1082. #define ASN1_R_BAD_CLASS 212
  1083. #define ASN1_R_BAD_TAG 213
  1084. #define ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE 214
  1085. #define ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED 215
  1086. #define ASN1_R_ILLEGAL_BOOLEAN 216
  1087. #define ASN1_R_SIG_INVALID_MIME_TYPE 217
  1088. #define ASN1_R_NULL_IS_WRONG_LENGTH 218
  1089. #define ASN1_R_MISSING_ASN1_EOS 219
  1090. #define ASN1_R_ERROR_PARSING_SET_ELEMENT 220
  1091. #define ASN1_R_WRONG_TAG 221
  1092. #define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 222
  1093. #endif