You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1047 regels
39 KiB

  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.]
  56. */
  57. #ifndef HEADER_ASN1_H
  58. #define HEADER_ASN1_H
  59. #include <openssl/base.h>
  60. #include <time.h>
  61. #include <openssl/bio.h>
  62. #include <openssl/stack.h>
  63. #include <openssl/bn.h>
  64. #ifdef __cplusplus
  65. extern "C" {
  66. #endif
  67. #define V_ASN1_UNIVERSAL 0x00
  68. #define V_ASN1_APPLICATION 0x40
  69. #define V_ASN1_CONTEXT_SPECIFIC 0x80
  70. #define V_ASN1_PRIVATE 0xc0
  71. #define V_ASN1_CONSTRUCTED 0x20
  72. #define V_ASN1_PRIMITIVE_TAG 0x1f
  73. #define V_ASN1_PRIMATIVE_TAG 0x1f
  74. #define V_ASN1_APP_CHOOSE -2 /* let the recipient choose */
  75. #define V_ASN1_OTHER -3 /* used in ASN1_TYPE */
  76. #define V_ASN1_ANY -4 /* used in ASN1 template code */
  77. #define V_ASN1_NEG 0x100 /* negative flag */
  78. /* No supported universal tags may exceed this value, to avoid ambiguity with
  79. * V_ASN1_NEG. */
  80. #define V_ASN1_MAX_UNIVERSAL 0xff
  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. DECLARE_STACK_OF(ASN1_OBJECT)
  190. #define ASN1_STRING_FLAG_BITS_LEFT 0x08 /* Set if 0x07 has bits left value */
  191. /* This indicates that the ASN1_STRING is not a real value but just a place
  192. * holder for the location where indefinite length constructed data should
  193. * be inserted in the memory buffer
  194. */
  195. #define ASN1_STRING_FLAG_NDEF 0x010
  196. /* This flag is used by the CMS code to indicate that a string is not
  197. * complete and is a place holder for content when it had all been
  198. * accessed. The flag will be reset when content has been written to it.
  199. */
  200. #define ASN1_STRING_FLAG_CONT 0x020
  201. /* This flag is used by ASN1 code to indicate an ASN1_STRING is an MSTRING
  202. * type.
  203. */
  204. #define ASN1_STRING_FLAG_MSTRING 0x040
  205. /* This is the base type that holds just about everything :-) */
  206. struct asn1_string_st
  207. {
  208. int length;
  209. int type;
  210. unsigned char *data;
  211. /* The value of the following field depends on the type being
  212. * held. It is mostly being used for BIT_STRING so if the
  213. * input data has a non-zero 'unused bits' value, it will be
  214. * handled correctly */
  215. long flags;
  216. };
  217. /* ASN1_ENCODING structure: this is used to save the received
  218. * encoding of an ASN1 type. This is useful to get round
  219. * problems with invalid encodings which can break signatures.
  220. */
  221. typedef struct ASN1_ENCODING_st
  222. {
  223. unsigned char *enc; /* DER encoding */
  224. long len; /* Length of encoding */
  225. int modified; /* set to 1 if 'enc' is invalid */
  226. /* alias_only is zero if |enc| owns the buffer that it points to
  227. * (although |enc| may still be NULL). If one, |enc| points into a
  228. * buffer that is owned elsewhere. */
  229. unsigned alias_only:1;
  230. /* alias_only_on_next_parse is one iff the next parsing operation
  231. * should avoid taking a copy of the input and rather set
  232. * |alias_only|. */
  233. unsigned alias_only_on_next_parse:1;
  234. } ASN1_ENCODING;
  235. /* Used with ASN1 LONG type: if a long is set to this it is omitted */
  236. #define ASN1_LONG_UNDEF 0x7fffffffL
  237. #define STABLE_FLAGS_MALLOC 0x01
  238. #define STABLE_NO_MASK 0x02
  239. #define DIRSTRING_TYPE \
  240. (B_ASN1_PRINTABLESTRING|B_ASN1_T61STRING|B_ASN1_BMPSTRING|B_ASN1_UTF8STRING)
  241. #define PKCS9STRING_TYPE (DIRSTRING_TYPE|B_ASN1_IA5STRING)
  242. typedef struct asn1_string_table_st {
  243. int nid;
  244. long minsize;
  245. long maxsize;
  246. unsigned long mask;
  247. unsigned long flags;
  248. } ASN1_STRING_TABLE;
  249. /* size limits: this stuff is taken straight from RFC2459 */
  250. #define ub_name 32768
  251. #define ub_common_name 64
  252. #define ub_locality_name 128
  253. #define ub_state_name 128
  254. #define ub_organization_name 64
  255. #define ub_organization_unit_name 64
  256. #define ub_title 64
  257. #define ub_email_address 128
  258. /* Declarations for template structures: for full definitions
  259. * see asn1t.h
  260. */
  261. typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
  262. typedef struct ASN1_TLC_st ASN1_TLC;
  263. /* This is just an opaque pointer */
  264. typedef struct ASN1_VALUE_st ASN1_VALUE;
  265. /* Declare ASN1 functions: the implement macro in in asn1t.h */
  266. #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
  267. #define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
  268. DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
  269. #define DECLARE_ASN1_FUNCTIONS_name(type, name) \
  270. DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
  271. DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
  272. #define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \
  273. DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
  274. DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)
  275. #define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \
  276. OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, long len); \
  277. OPENSSL_EXPORT int i2d_##name(type *a, unsigned char **out); \
  278. DECLARE_ASN1_ITEM(itname)
  279. #define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \
  280. OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, long len); \
  281. OPENSSL_EXPORT int i2d_##name(const type *a, unsigned char **out); \
  282. DECLARE_ASN1_ITEM(name)
  283. #define DECLARE_ASN1_NDEF_FUNCTION(name) \
  284. OPENSSL_EXPORT int i2d_##name##_NDEF(name *a, unsigned char **out);
  285. #define DECLARE_ASN1_FUNCTIONS_const(name) \
  286. DECLARE_ASN1_ALLOC_FUNCTIONS(name) \
  287. DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name)
  288. #define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
  289. OPENSSL_EXPORT type *name##_new(void); \
  290. OPENSSL_EXPORT void name##_free(type *a);
  291. #define DECLARE_ASN1_PRINT_FUNCTION(stname) \
  292. DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname)
  293. #define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \
  294. OPENSSL_EXPORT int fname##_print_ctx(BIO *out, stname *x, int indent, \
  295. const ASN1_PCTX *pctx);
  296. #define D2I_OF(type) type *(*)(type **,const unsigned char **,long)
  297. #define I2D_OF(type) int (*)(type *,unsigned char **)
  298. #define I2D_OF_const(type) int (*)(const type *,unsigned char **)
  299. #define CHECKED_D2I_OF(type, d2i) \
  300. ((d2i_of_void*) (1 ? d2i : ((D2I_OF(type))0)))
  301. #define CHECKED_I2D_OF(type, i2d) \
  302. ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
  303. #define CHECKED_NEW_OF(type, xnew) \
  304. ((void *(*)(void)) (1 ? xnew : ((type *(*)(void))0)))
  305. #define CHECKED_PPTR_OF(type, p) \
  306. ((void**) (1 ? p : (type**)0))
  307. #define TYPEDEF_D2I_OF(type) typedef type *d2i_of_##type(type **,const unsigned char **,long)
  308. #define TYPEDEF_I2D_OF(type) typedef int i2d_of_##type(const type *,unsigned char **)
  309. #define TYPEDEF_D2I2D_OF(type) TYPEDEF_D2I_OF(type); TYPEDEF_I2D_OF(type)
  310. TYPEDEF_D2I2D_OF(void);
  311. /* The following macros and typedefs allow an ASN1_ITEM
  312. * to be embedded in a structure and referenced. Since
  313. * the ASN1_ITEM pointers need to be globally accessible
  314. * (possibly from shared libraries) they may exist in
  315. * different forms. On platforms that support it the
  316. * ASN1_ITEM structure itself will be globally exported.
  317. * Other platforms will export a function that returns
  318. * an ASN1_ITEM pointer.
  319. *
  320. * To handle both cases transparently the macros below
  321. * should be used instead of hard coding an ASN1_ITEM
  322. * pointer in a structure.
  323. *
  324. * The structure will look like this:
  325. *
  326. * typedef struct SOMETHING_st {
  327. * ...
  328. * ASN1_ITEM_EXP *iptr;
  329. * ...
  330. * } SOMETHING;
  331. *
  332. * It would be initialised as e.g.:
  333. *
  334. * SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...};
  335. *
  336. * and the actual pointer extracted with:
  337. *
  338. * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
  339. *
  340. * Finally an ASN1_ITEM pointer can be extracted from an
  341. * appropriate reference with: ASN1_ITEM_rptr(X509). This
  342. * would be used when a function takes an ASN1_ITEM * argument.
  343. *
  344. */
  345. /* ASN1_ITEM pointer exported type */
  346. typedef const ASN1_ITEM ASN1_ITEM_EXP;
  347. /* Macro to obtain ASN1_ITEM pointer from exported type */
  348. #define ASN1_ITEM_ptr(iptr) (iptr)
  349. /* Macro to include ASN1_ITEM pointer from base type */
  350. #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
  351. #define ASN1_ITEM_rptr(ref) (&(ref##_it))
  352. #define DECLARE_ASN1_ITEM(name) \
  353. extern OPENSSL_EXPORT const ASN1_ITEM name##_it;
  354. /* Parameters used by ASN1_STRING_print_ex() */
  355. /* These determine which characters to escape:
  356. * RFC2253 special characters, control characters and
  357. * MSB set characters
  358. */
  359. #define ASN1_STRFLGS_ESC_2253 1
  360. #define ASN1_STRFLGS_ESC_CTRL 2
  361. #define ASN1_STRFLGS_ESC_MSB 4
  362. /* This flag determines how we do escaping: normally
  363. * RC2253 backslash only, set this to use backslash and
  364. * quote.
  365. */
  366. #define ASN1_STRFLGS_ESC_QUOTE 8
  367. /* These three flags are internal use only. */
  368. /* Character is a valid PrintableString character */
  369. #define CHARTYPE_PRINTABLESTRING 0x10
  370. /* Character needs escaping if it is the first character */
  371. #define CHARTYPE_FIRST_ESC_2253 0x20
  372. /* Character needs escaping if it is the last character */
  373. #define CHARTYPE_LAST_ESC_2253 0x40
  374. /* NB the internal flags are safely reused below by flags
  375. * handled at the top level.
  376. */
  377. /* If this is set we convert all character strings
  378. * to UTF8 first
  379. */
  380. #define ASN1_STRFLGS_UTF8_CONVERT 0x10
  381. /* If this is set we don't attempt to interpret content:
  382. * just assume all strings are 1 byte per character. This
  383. * will produce some pretty odd looking output!
  384. */
  385. #define ASN1_STRFLGS_IGNORE_TYPE 0x20
  386. /* If this is set we include the string type in the output */
  387. #define ASN1_STRFLGS_SHOW_TYPE 0x40
  388. /* This determines which strings to display and which to
  389. * 'dump' (hex dump of content octets or DER encoding). We can
  390. * only dump non character strings or everything. If we
  391. * don't dump 'unknown' they are interpreted as character
  392. * strings with 1 octet per character and are subject to
  393. * the usual escaping options.
  394. */
  395. #define ASN1_STRFLGS_DUMP_ALL 0x80
  396. #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
  397. /* These determine what 'dumping' does, we can dump the
  398. * content octets or the DER encoding: both use the
  399. * RFC2253 #XXXXX notation.
  400. */
  401. #define ASN1_STRFLGS_DUMP_DER 0x200
  402. /* All the string flags consistent with RFC2253,
  403. * escaping control characters isn't essential in
  404. * RFC2253 but it is advisable anyway.
  405. */
  406. #define ASN1_STRFLGS_RFC2253 (ASN1_STRFLGS_ESC_2253 | \
  407. ASN1_STRFLGS_ESC_CTRL | \
  408. ASN1_STRFLGS_ESC_MSB | \
  409. ASN1_STRFLGS_UTF8_CONVERT | \
  410. ASN1_STRFLGS_DUMP_UNKNOWN | \
  411. ASN1_STRFLGS_DUMP_DER)
  412. DECLARE_ASN1_SET_OF(ASN1_INTEGER)
  413. struct asn1_type_st
  414. {
  415. int type;
  416. union {
  417. char *ptr;
  418. ASN1_BOOLEAN boolean;
  419. ASN1_STRING * asn1_string;
  420. ASN1_OBJECT * object;
  421. ASN1_INTEGER * integer;
  422. ASN1_ENUMERATED * enumerated;
  423. ASN1_BIT_STRING * bit_string;
  424. ASN1_OCTET_STRING * octet_string;
  425. ASN1_PRINTABLESTRING * printablestring;
  426. ASN1_T61STRING * t61string;
  427. ASN1_IA5STRING * ia5string;
  428. ASN1_GENERALSTRING * generalstring;
  429. ASN1_BMPSTRING * bmpstring;
  430. ASN1_UNIVERSALSTRING * universalstring;
  431. ASN1_UTCTIME * utctime;
  432. ASN1_GENERALIZEDTIME * generalizedtime;
  433. ASN1_VISIBLESTRING * visiblestring;
  434. ASN1_UTF8STRING * utf8string;
  435. /* set and sequence are left complete and still
  436. * contain the set or sequence bytes */
  437. ASN1_STRING * set;
  438. ASN1_STRING * sequence;
  439. ASN1_VALUE * asn1_value;
  440. } value;
  441. };
  442. DECLARE_ASN1_SET_OF(ASN1_TYPE)
  443. typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
  444. DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
  445. DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
  446. struct X509_algor_st
  447. {
  448. ASN1_OBJECT *algorithm;
  449. ASN1_TYPE *parameter;
  450. } /* X509_ALGOR */;
  451. DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
  452. typedef struct NETSCAPE_X509_st
  453. {
  454. ASN1_OCTET_STRING *header;
  455. X509 *cert;
  456. } NETSCAPE_X509;
  457. /* This is used to contain a list of bit names */
  458. typedef struct BIT_STRING_BITNAME_st {
  459. int bitnum;
  460. const char *lname;
  461. const char *sname;
  462. } BIT_STRING_BITNAME;
  463. #define M_ASN1_STRING_length(x) ((x)->length)
  464. #define M_ASN1_STRING_length_set(x, n) ((x)->length = (n))
  465. #define M_ASN1_STRING_type(x) ((x)->type)
  466. #define M_ASN1_STRING_data(x) ((x)->data)
  467. /* Macros for string operations */
  468. #define M_ASN1_BIT_STRING_new() (ASN1_BIT_STRING *)\
  469. ASN1_STRING_type_new(V_ASN1_BIT_STRING)
  470. #define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  471. #define M_ASN1_BIT_STRING_dup(a) (ASN1_BIT_STRING *)\
  472. ASN1_STRING_dup((const ASN1_STRING *)a)
  473. #define M_ASN1_BIT_STRING_cmp(a,b) ASN1_STRING_cmp(\
  474. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  475. #define M_ASN1_BIT_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  476. #define M_ASN1_INTEGER_new() (ASN1_INTEGER *)\
  477. ASN1_STRING_type_new(V_ASN1_INTEGER)
  478. #define M_ASN1_INTEGER_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  479. #define M_ASN1_INTEGER_dup(a) (ASN1_INTEGER *)\
  480. ASN1_STRING_dup((const ASN1_STRING *)a)
  481. #define M_ASN1_INTEGER_cmp(a,b) ASN1_STRING_cmp(\
  482. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  483. #define M_ASN1_ENUMERATED_new() (ASN1_ENUMERATED *)\
  484. ASN1_STRING_type_new(V_ASN1_ENUMERATED)
  485. #define M_ASN1_ENUMERATED_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  486. #define M_ASN1_ENUMERATED_dup(a) (ASN1_ENUMERATED *)\
  487. ASN1_STRING_dup((const ASN1_STRING *)a)
  488. #define M_ASN1_ENUMERATED_cmp(a,b) ASN1_STRING_cmp(\
  489. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  490. #define M_ASN1_OCTET_STRING_new() (ASN1_OCTET_STRING *)\
  491. ASN1_STRING_type_new(V_ASN1_OCTET_STRING)
  492. #define M_ASN1_OCTET_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  493. #define M_ASN1_OCTET_STRING_dup(a) (ASN1_OCTET_STRING *)\
  494. ASN1_STRING_dup((const ASN1_STRING *)a)
  495. #define M_ASN1_OCTET_STRING_cmp(a,b) ASN1_STRING_cmp(\
  496. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  497. #define M_ASN1_OCTET_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  498. #define M_ASN1_OCTET_STRING_print(a,b) ASN1_STRING_print(a,(ASN1_STRING *)b)
  499. #define B_ASN1_TIME \
  500. B_ASN1_UTCTIME | \
  501. B_ASN1_GENERALIZEDTIME
  502. #define B_ASN1_PRINTABLE \
  503. B_ASN1_NUMERICSTRING| \
  504. B_ASN1_PRINTABLESTRING| \
  505. B_ASN1_T61STRING| \
  506. B_ASN1_IA5STRING| \
  507. B_ASN1_BIT_STRING| \
  508. B_ASN1_UNIVERSALSTRING|\
  509. B_ASN1_BMPSTRING|\
  510. B_ASN1_UTF8STRING|\
  511. B_ASN1_SEQUENCE|\
  512. B_ASN1_UNKNOWN
  513. #define B_ASN1_DIRECTORYSTRING \
  514. B_ASN1_PRINTABLESTRING| \
  515. B_ASN1_TELETEXSTRING|\
  516. B_ASN1_BMPSTRING|\
  517. B_ASN1_UNIVERSALSTRING|\
  518. B_ASN1_UTF8STRING
  519. #define B_ASN1_DISPLAYTEXT \
  520. B_ASN1_IA5STRING| \
  521. B_ASN1_VISIBLESTRING| \
  522. B_ASN1_BMPSTRING|\
  523. B_ASN1_UTF8STRING
  524. #define M_ASN1_PRINTABLE_new() ASN1_STRING_type_new(V_ASN1_T61STRING)
  525. #define M_ASN1_PRINTABLE_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  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_DISPLAYTEXT_new() ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  529. #define M_DISPLAYTEXT_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  530. #define M_ASN1_PRINTABLESTRING_new() (ASN1_PRINTABLESTRING *)\
  531. ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
  532. #define M_ASN1_PRINTABLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  533. #define M_ASN1_T61STRING_new() (ASN1_T61STRING *)\
  534. ASN1_STRING_type_new(V_ASN1_T61STRING)
  535. #define M_ASN1_T61STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  536. #define M_ASN1_IA5STRING_new() (ASN1_IA5STRING *)\
  537. ASN1_STRING_type_new(V_ASN1_IA5STRING)
  538. #define M_ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  539. #define M_ASN1_IA5STRING_dup(a) \
  540. (ASN1_IA5STRING *)ASN1_STRING_dup((const ASN1_STRING *)a)
  541. #define M_ASN1_UTCTIME_new() (ASN1_UTCTIME *)\
  542. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  543. #define M_ASN1_UTCTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  544. #define M_ASN1_UTCTIME_dup(a) (ASN1_UTCTIME *)\
  545. ASN1_STRING_dup((const ASN1_STRING *)a)
  546. #define M_ASN1_GENERALIZEDTIME_new() (ASN1_GENERALIZEDTIME *)\
  547. ASN1_STRING_type_new(V_ASN1_GENERALIZEDTIME)
  548. #define M_ASN1_GENERALIZEDTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  549. #define M_ASN1_GENERALIZEDTIME_dup(a) (ASN1_GENERALIZEDTIME *)ASN1_STRING_dup(\
  550. (const ASN1_STRING *)a)
  551. #define M_ASN1_TIME_new() (ASN1_TIME *)\
  552. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  553. #define M_ASN1_TIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  554. #define M_ASN1_TIME_dup(a) (ASN1_TIME *)\
  555. ASN1_STRING_dup((const ASN1_STRING *)a)
  556. #define M_ASN1_GENERALSTRING_new() (ASN1_GENERALSTRING *)\
  557. ASN1_STRING_type_new(V_ASN1_GENERALSTRING)
  558. #define M_ASN1_GENERALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  559. #define M_ASN1_UNIVERSALSTRING_new() (ASN1_UNIVERSALSTRING *)\
  560. ASN1_STRING_type_new(V_ASN1_UNIVERSALSTRING)
  561. #define M_ASN1_UNIVERSALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  562. #define M_ASN1_BMPSTRING_new() (ASN1_BMPSTRING *)\
  563. ASN1_STRING_type_new(V_ASN1_BMPSTRING)
  564. #define M_ASN1_BMPSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  565. #define M_ASN1_VISIBLESTRING_new() (ASN1_VISIBLESTRING *)\
  566. ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  567. #define M_ASN1_VISIBLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  568. #define M_ASN1_UTF8STRING_new() (ASN1_UTF8STRING *)\
  569. ASN1_STRING_type_new(V_ASN1_UTF8STRING)
  570. #define M_ASN1_UTF8STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  571. DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
  572. OPENSSL_EXPORT int ASN1_TYPE_get(ASN1_TYPE *a);
  573. OPENSSL_EXPORT void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
  574. OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
  575. OPENSSL_EXPORT int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
  576. OPENSSL_EXPORT ASN1_OBJECT * ASN1_OBJECT_new(void );
  577. OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
  578. OPENSSL_EXPORT int i2d_ASN1_OBJECT(ASN1_OBJECT *a,unsigned char **pp);
  579. OPENSSL_EXPORT ASN1_OBJECT * c2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  580. long length);
  581. OPENSSL_EXPORT ASN1_OBJECT * d2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  582. long length);
  583. DECLARE_ASN1_ITEM(ASN1_OBJECT)
  584. DECLARE_ASN1_SET_OF(ASN1_OBJECT)
  585. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_new(void);
  586. OPENSSL_EXPORT void ASN1_STRING_free(ASN1_STRING *a);
  587. OPENSSL_EXPORT int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
  588. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_dup(const ASN1_STRING *a);
  589. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_type_new(int type );
  590. OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
  591. /* Since this is used to store all sorts of things, via macros, for now, make
  592. its data void * */
  593. OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
  594. OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
  595. OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *x);
  596. OPENSSL_EXPORT void ASN1_STRING_length_set(ASN1_STRING *x, int n);
  597. OPENSSL_EXPORT int ASN1_STRING_type(ASN1_STRING *x);
  598. OPENSSL_EXPORT unsigned char * ASN1_STRING_data(ASN1_STRING *x);
  599. DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
  600. OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a,unsigned char **pp);
  601. OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,const unsigned char **pp, long length);
  602. OPENSSL_EXPORT int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length );
  603. OPENSSL_EXPORT int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
  604. OPENSSL_EXPORT int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *a, int n);
  605. OPENSSL_EXPORT int ASN1_BIT_STRING_check(ASN1_BIT_STRING *a, unsigned char *flags, int flags_len);
  606. OPENSSL_EXPORT int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent);
  607. OPENSSL_EXPORT int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl);
  608. OPENSSL_EXPORT int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value, BIT_STRING_BITNAME *tbl);
  609. OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a,unsigned char **pp);
  610. OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a,const unsigned char **pp,long length);
  611. DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
  612. OPENSSL_EXPORT int i2c_ASN1_INTEGER(ASN1_INTEGER *a,unsigned char **pp);
  613. OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  614. OPENSSL_EXPORT ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  615. OPENSSL_EXPORT ASN1_INTEGER * ASN1_INTEGER_dup(const ASN1_INTEGER *x);
  616. OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);
  617. DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
  618. OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
  619. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s,time_t t);
  620. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec);
  621. OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
  622. OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
  623. #if 0
  624. time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
  625. #endif
  626. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
  627. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,time_t t);
  628. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
  629. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
  630. OPENSSL_EXPORT int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to);
  631. DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
  632. OPENSSL_EXPORT ASN1_OCTET_STRING * ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a);
  633. OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, const ASN1_OCTET_STRING *b);
  634. OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
  635. DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
  636. DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
  637. DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
  638. DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
  639. DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
  640. OPENSSL_EXPORT int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
  641. OPENSSL_EXPORT int UTF8_putc(unsigned char *str, int len, unsigned long value);
  642. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
  643. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
  644. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
  645. DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
  646. DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
  647. DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
  648. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
  649. DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
  650. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
  651. DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
  652. DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF)
  653. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s,time_t t);
  654. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s,time_t t, int offset_day, long offset_sec);
  655. OPENSSL_EXPORT int ASN1_TIME_check(ASN1_TIME *t);
  656. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
  657. OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
  658. OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
  659. OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
  660. OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
  661. OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
  662. OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf,int buf_len,ASN1_OBJECT *a);
  663. OPENSSL_EXPORT int a2d_ASN1_OBJECT(unsigned char *out,int olen, const char *buf, int num);
  664. OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
  665. OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
  666. OPENSSL_EXPORT long ASN1_INTEGER_get(const ASN1_INTEGER *a);
  667. OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
  668. OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
  669. OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
  670. OPENSSL_EXPORT long ASN1_ENUMERATED_get(ASN1_ENUMERATED *a);
  671. OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
  672. OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);
  673. /* General */
  674. /* given a string, return the correct type, max is the maximum length */
  675. OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int max);
  676. OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
  677. /* PARSING */
  678. OPENSSL_EXPORT int asn1_Finish(ASN1_CTX *c);
  679. OPENSSL_EXPORT int asn1_const_Finish(ASN1_const_CTX *c);
  680. /* SPECIALS */
  681. OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax);
  682. OPENSSL_EXPORT int ASN1_check_infinite_end(unsigned char **p,long len);
  683. OPENSSL_EXPORT int ASN1_const_check_infinite_end(const unsigned char **p,long len);
  684. OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, int xclass);
  685. OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
  686. OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
  687. /* Used to implement other functions */
  688. OPENSSL_EXPORT void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
  689. #define ASN1_dup_of(type,i2d,d2i,x) \
  690. ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
  691. CHECKED_D2I_OF(type, d2i), \
  692. CHECKED_PTR_OF(type, x)))
  693. #define ASN1_dup_of_const(type,i2d,d2i,x) \
  694. ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
  695. CHECKED_D2I_OF(type, d2i), \
  696. CHECKED_PTR_OF(const type, x)))
  697. OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
  698. /* ASN1 alloc/free macros for when a type is only used internally */
  699. #define M_ASN1_new_of(type) (type *)ASN1_item_new(ASN1_ITEM_rptr(type))
  700. #define M_ASN1_free_of(x, type) \
  701. ASN1_item_free(CHECKED_PTR_OF(type, x), ASN1_ITEM_rptr(type))
  702. #ifndef OPENSSL_NO_FP_API
  703. OPENSSL_EXPORT void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x);
  704. #define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \
  705. ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
  706. CHECKED_D2I_OF(type, d2i), \
  707. in, \
  708. CHECKED_PPTR_OF(type, x)))
  709. OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
  710. OPENSSL_EXPORT int ASN1_i2d_fp(i2d_of_void *i2d,FILE *out,void *x);
  711. #define ASN1_i2d_fp_of(type,i2d,out,x) \
  712. (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
  713. out, \
  714. CHECKED_PTR_OF(type, x)))
  715. #define ASN1_i2d_fp_of_const(type,i2d,out,x) \
  716. (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \
  717. out, \
  718. CHECKED_PTR_OF(const type, x)))
  719. OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
  720. OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags);
  721. #endif
  722. OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in);
  723. OPENSSL_EXPORT void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x);
  724. #define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \
  725. ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \
  726. CHECKED_D2I_OF(type, d2i), \
  727. in, \
  728. CHECKED_PPTR_OF(type, x)))
  729. OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
  730. OPENSSL_EXPORT int ASN1_i2d_bio(i2d_of_void *i2d,BIO *out, void *x);
  731. #define ASN1_i2d_bio_of(type,i2d,out,x) \
  732. (ASN1_i2d_bio(CHECKED_I2D_OF(type, i2d), \
  733. out, \
  734. CHECKED_PTR_OF(type, x)))
  735. #define ASN1_i2d_bio_of_const(type,i2d,out,x) \
  736. (ASN1_i2d_bio(CHECKED_I2D_OF(const type, i2d), \
  737. out, \
  738. CHECKED_PTR_OF(const type, x)))
  739. OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
  740. OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
  741. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
  742. OPENSSL_EXPORT int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
  743. OPENSSL_EXPORT int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
  744. OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags);
  745. OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
  746. /* Used to load and write netscape format cert */
  747. DECLARE_ASN1_FUNCTIONS(NETSCAPE_X509)
  748. int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s);
  749. OPENSSL_EXPORT void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it);
  750. OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct);
  751. OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
  752. OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
  753. OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
  754. OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask);
  755. OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask, long minsize, long maxsize);
  756. OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid);
  757. OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
  758. OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long);
  759. OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
  760. /* ASN1 template functions */
  761. /* Old API compatible functions */
  762. OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
  763. OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
  764. OPENSSL_EXPORT ASN1_VALUE * ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it);
  765. OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  766. OPENSSL_EXPORT int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  767. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
  768. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);
  769. #ifdef __cplusplus
  770. }
  771. extern "C++" {
  772. namespace bssl {
  773. BORINGSSL_MAKE_STACK_DELETER(ASN1_OBJECT, ASN1_OBJECT_free)
  774. BORINGSSL_MAKE_DELETER(ASN1_OBJECT, ASN1_OBJECT_free)
  775. BORINGSSL_MAKE_DELETER(ASN1_STRING, ASN1_STRING_free)
  776. BORINGSSL_MAKE_DELETER(ASN1_TYPE, ASN1_TYPE_free)
  777. } // namespace bssl
  778. } /* extern C++ */
  779. #endif
  780. #define ASN1_R_ASN1_LENGTH_MISMATCH 100
  781. #define ASN1_R_AUX_ERROR 101
  782. #define ASN1_R_BAD_GET_ASN1_OBJECT_CALL 102
  783. #define ASN1_R_BAD_OBJECT_HEADER 103
  784. #define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 104
  785. #define ASN1_R_BN_LIB 105
  786. #define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106
  787. #define ASN1_R_BUFFER_TOO_SMALL 107
  788. #define ASN1_R_CONTEXT_NOT_INITIALISED 108
  789. #define ASN1_R_DECODE_ERROR 109
  790. #define ASN1_R_DEPTH_EXCEEDED 110
  791. #define ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 111
  792. #define ASN1_R_ENCODE_ERROR 112
  793. #define ASN1_R_ERROR_GETTING_TIME 113
  794. #define ASN1_R_EXPECTING_AN_ASN1_SEQUENCE 114
  795. #define ASN1_R_EXPECTING_AN_INTEGER 115
  796. #define ASN1_R_EXPECTING_AN_OBJECT 116
  797. #define ASN1_R_EXPECTING_A_BOOLEAN 117
  798. #define ASN1_R_EXPECTING_A_TIME 118
  799. #define ASN1_R_EXPLICIT_LENGTH_MISMATCH 119
  800. #define ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED 120
  801. #define ASN1_R_FIELD_MISSING 121
  802. #define ASN1_R_FIRST_NUM_TOO_LARGE 122
  803. #define ASN1_R_HEADER_TOO_LONG 123
  804. #define ASN1_R_ILLEGAL_BITSTRING_FORMAT 124
  805. #define ASN1_R_ILLEGAL_BOOLEAN 125
  806. #define ASN1_R_ILLEGAL_CHARACTERS 126
  807. #define ASN1_R_ILLEGAL_FORMAT 127
  808. #define ASN1_R_ILLEGAL_HEX 128
  809. #define ASN1_R_ILLEGAL_IMPLICIT_TAG 129
  810. #define ASN1_R_ILLEGAL_INTEGER 130
  811. #define ASN1_R_ILLEGAL_NESTED_TAGGING 131
  812. #define ASN1_R_ILLEGAL_NULL 132
  813. #define ASN1_R_ILLEGAL_NULL_VALUE 133
  814. #define ASN1_R_ILLEGAL_OBJECT 134
  815. #define ASN1_R_ILLEGAL_OPTIONAL_ANY 135
  816. #define ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE 136
  817. #define ASN1_R_ILLEGAL_TAGGED_ANY 137
  818. #define ASN1_R_ILLEGAL_TIME_VALUE 138
  819. #define ASN1_R_INTEGER_NOT_ASCII_FORMAT 139
  820. #define ASN1_R_INTEGER_TOO_LARGE_FOR_LONG 140
  821. #define ASN1_R_INVALID_BIT_STRING_BITS_LEFT 141
  822. #define ASN1_R_INVALID_BMPSTRING_LENGTH 142
  823. #define ASN1_R_INVALID_DIGIT 143
  824. #define ASN1_R_INVALID_MODIFIER 144
  825. #define ASN1_R_INVALID_NUMBER 145
  826. #define ASN1_R_INVALID_OBJECT_ENCODING 146
  827. #define ASN1_R_INVALID_SEPARATOR 147
  828. #define ASN1_R_INVALID_TIME_FORMAT 148
  829. #define ASN1_R_INVALID_UNIVERSALSTRING_LENGTH 149
  830. #define ASN1_R_INVALID_UTF8STRING 150
  831. #define ASN1_R_LIST_ERROR 151
  832. #define ASN1_R_MISSING_ASN1_EOS 152
  833. #define ASN1_R_MISSING_EOC 153
  834. #define ASN1_R_MISSING_SECOND_NUMBER 154
  835. #define ASN1_R_MISSING_VALUE 155
  836. #define ASN1_R_MSTRING_NOT_UNIVERSAL 156
  837. #define ASN1_R_MSTRING_WRONG_TAG 157
  838. #define ASN1_R_NESTED_ASN1_ERROR 158
  839. #define ASN1_R_NESTED_ASN1_STRING 159
  840. #define ASN1_R_NON_HEX_CHARACTERS 160
  841. #define ASN1_R_NOT_ASCII_FORMAT 161
  842. #define ASN1_R_NOT_ENOUGH_DATA 162
  843. #define ASN1_R_NO_MATCHING_CHOICE_TYPE 163
  844. #define ASN1_R_NULL_IS_WRONG_LENGTH 164
  845. #define ASN1_R_OBJECT_NOT_ASCII_FORMAT 165
  846. #define ASN1_R_ODD_NUMBER_OF_CHARS 166
  847. #define ASN1_R_SECOND_NUMBER_TOO_LARGE 167
  848. #define ASN1_R_SEQUENCE_LENGTH_MISMATCH 168
  849. #define ASN1_R_SEQUENCE_NOT_CONSTRUCTED 169
  850. #define ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG 170
  851. #define ASN1_R_SHORT_LINE 171
  852. #define ASN1_R_STREAMING_NOT_SUPPORTED 172
  853. #define ASN1_R_STRING_TOO_LONG 173
  854. #define ASN1_R_STRING_TOO_SHORT 174
  855. #define ASN1_R_TAG_VALUE_TOO_HIGH 175
  856. #define ASN1_R_TIME_NOT_ASCII_FORMAT 176
  857. #define ASN1_R_TOO_LONG 177
  858. #define ASN1_R_TYPE_NOT_CONSTRUCTED 178
  859. #define ASN1_R_TYPE_NOT_PRIMITIVE 179
  860. #define ASN1_R_UNEXPECTED_EOC 180
  861. #define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 181
  862. #define ASN1_R_UNKNOWN_FORMAT 182
  863. #define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 183
  864. #define ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM 184
  865. #define ASN1_R_UNKNOWN_TAG 185
  866. #define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 186
  867. #define ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE 187
  868. #define ASN1_R_UNSUPPORTED_TYPE 188
  869. #define ASN1_R_WRONG_PUBLIC_KEY_TYPE 189
  870. #define ASN1_R_WRONG_TAG 190
  871. #define ASN1_R_WRONG_TYPE 191
  872. #endif