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

Fix various certificate fingerprint issues. By using non-DER or invalid encodings outside the signed portion of a certificate the fingerprint can be changed without breaking the signature. Although no details of the signed portion of the certificate can be changed this can cause problems with some applications: e.g. those using the certificate fingerprint for blacklists. 1. Reject signatures with non zero unused bits. If the BIT STRING containing the signature has non zero unused bits reject the signature. All current signature algorithms require zero unused bits. 2. Check certificate algorithm consistency. Check the AlgorithmIdentifier inside TBS matches the one in the certificate signature. NB: this will result in signature failure errors for some broken certificates. 3. Check DSA/ECDSA signatures use DER. Reencode DSA/ECDSA signatures and compare with the original received signature. Return an error if there is a mismatch. This will reject various cases including garbage after signature (thanks to Antti Karjalainen and Tuomo Untinen from the Codenomicon CROSS program for discovering this case) and use of BER or invalid ASN.1 INTEGERs (negative or with leading zeroes). CVE-2014-8275 (Imported from upstream's 85cfc188c06bd046420ae70dd6e302f9efe022a9 and 4c52816d35681c0533c25fdd3abb4b7c6962302d) Change-Id: Ic901aea8ea6457df27dc542a11c30464561e322b Reviewed-on: https://boringssl-review.googlesource.com/2783 Reviewed-by: David Benjamin <davidben@chromium.org> Reviewed-by: Adam Langley <agl@google.com>
9 anos atrás
Align with upstream's error strings, take two. I messed up a few of these. ASN1_R_UNSUPPORTED_ALGORITHM doesn't exist. X509_R_UNSUPPORTED_ALGORITHM does exist as part of X509_PUBKEY_set, but the SPKI parser doesn't emit this. (I don't mind the legacy code having really weird errors, but since EVP is now limited to things we like, let's try to keep that clean.) To avoid churn in Conscrypt, we'll keep defining X509_R_UNSUPPORTED_ALGORITHM, but not actually do anything with it anymore. Conscrypt was already aware of EVP_R_UNSUPPORTED_ALGORITHM, so this should be fine. (I don't expect EVP_R_UNSUPPORTED_ALGORITHM to go away. The SPKI parsers we like live in EVP now.) A few other ASN1_R_* values didn't quite match upstream, so make those match again. Finally, I got some of the rsa_pss.c values wrong. Each of those corresponds to an (overly specific) RSA_R_* value in upstream. However, those were gone in BoringSSL since even the initial commit. We placed the RSA <-> EVP glue in crypto/evp (so crypto/rsa wouldn't depend on crypto/evp) while upstream placed them in crypto/rsa. Since no one seemed to notice the loss of RSA_R_INVALID_SALT_LENGTH, let's undo all the cross-module errors inserted in crypto/rsa. Instead, since that kind of specificity is not useful, funnel it all into X509_R_INVALID_PSS_PARAMETERS (formerly EVP_R_INVALID_PSS_PARAMETERS, formerly RSA_R_INVALID_PSS_PARAMETERS). Reset the error codes for all affected modules. (That our error code story means error codes are not stable across this kind of refactoring is kind of a problem. Hopefully this will be the last of it.) Change-Id: Ibfb3a0ac340bfc777bc7de6980ef3ddf0a8c84bc Reviewed-on: https://boringssl-review.googlesource.com/7458 Reviewed-by: Emily Stark (Dunn) <estark@google.com> Reviewed-by: David Benjamin <davidben@google.com>
8 anos atrás
Align with upstream's error strings, take two. I messed up a few of these. ASN1_R_UNSUPPORTED_ALGORITHM doesn't exist. X509_R_UNSUPPORTED_ALGORITHM does exist as part of X509_PUBKEY_set, but the SPKI parser doesn't emit this. (I don't mind the legacy code having really weird errors, but since EVP is now limited to things we like, let's try to keep that clean.) To avoid churn in Conscrypt, we'll keep defining X509_R_UNSUPPORTED_ALGORITHM, but not actually do anything with it anymore. Conscrypt was already aware of EVP_R_UNSUPPORTED_ALGORITHM, so this should be fine. (I don't expect EVP_R_UNSUPPORTED_ALGORITHM to go away. The SPKI parsers we like live in EVP now.) A few other ASN1_R_* values didn't quite match upstream, so make those match again. Finally, I got some of the rsa_pss.c values wrong. Each of those corresponds to an (overly specific) RSA_R_* value in upstream. However, those were gone in BoringSSL since even the initial commit. We placed the RSA <-> EVP glue in crypto/evp (so crypto/rsa wouldn't depend on crypto/evp) while upstream placed them in crypto/rsa. Since no one seemed to notice the loss of RSA_R_INVALID_SALT_LENGTH, let's undo all the cross-module errors inserted in crypto/rsa. Instead, since that kind of specificity is not useful, funnel it all into X509_R_INVALID_PSS_PARAMETERS (formerly EVP_R_INVALID_PSS_PARAMETERS, formerly RSA_R_INVALID_PSS_PARAMETERS). Reset the error codes for all affected modules. (That our error code story means error codes are not stable across this kind of refactoring is kind of a problem. Hopefully this will be the last of it.) Change-Id: Ibfb3a0ac340bfc777bc7de6980ef3ddf0a8c84bc Reviewed-on: https://boringssl-review.googlesource.com/7458 Reviewed-by: Emily Stark (Dunn) <estark@google.com> Reviewed-by: David Benjamin <davidben@google.com>
8 anos atrás
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174
  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. #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. DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
  443. typedef struct NETSCAPE_X509_st
  444. {
  445. ASN1_OCTET_STRING *header;
  446. X509 *cert;
  447. } NETSCAPE_X509;
  448. /* This is used to contain a list of bit names */
  449. typedef struct BIT_STRING_BITNAME_st {
  450. int bitnum;
  451. const char *lname;
  452. const char *sname;
  453. } BIT_STRING_BITNAME;
  454. #define M_ASN1_STRING_length(x) ((x)->length)
  455. #define M_ASN1_STRING_length_set(x, n) ((x)->length = (n))
  456. #define M_ASN1_STRING_type(x) ((x)->type)
  457. #define M_ASN1_STRING_data(x) ((x)->data)
  458. /* Macros for string operations */
  459. #define M_ASN1_BIT_STRING_new() (ASN1_BIT_STRING *)\
  460. ASN1_STRING_type_new(V_ASN1_BIT_STRING)
  461. #define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  462. #define M_ASN1_BIT_STRING_dup(a) (ASN1_BIT_STRING *)\
  463. ASN1_STRING_dup((const ASN1_STRING *)a)
  464. #define M_ASN1_BIT_STRING_cmp(a,b) ASN1_STRING_cmp(\
  465. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  466. #define M_ASN1_BIT_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  467. #define M_ASN1_INTEGER_new() (ASN1_INTEGER *)\
  468. ASN1_STRING_type_new(V_ASN1_INTEGER)
  469. #define M_ASN1_INTEGER_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  470. #define M_ASN1_INTEGER_dup(a) (ASN1_INTEGER *)\
  471. ASN1_STRING_dup((const ASN1_STRING *)a)
  472. #define M_ASN1_INTEGER_cmp(a,b) ASN1_STRING_cmp(\
  473. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  474. #define M_ASN1_ENUMERATED_new() (ASN1_ENUMERATED *)\
  475. ASN1_STRING_type_new(V_ASN1_ENUMERATED)
  476. #define M_ASN1_ENUMERATED_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  477. #define M_ASN1_ENUMERATED_dup(a) (ASN1_ENUMERATED *)\
  478. ASN1_STRING_dup((const ASN1_STRING *)a)
  479. #define M_ASN1_ENUMERATED_cmp(a,b) ASN1_STRING_cmp(\
  480. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  481. #define M_ASN1_OCTET_STRING_new() (ASN1_OCTET_STRING *)\
  482. ASN1_STRING_type_new(V_ASN1_OCTET_STRING)
  483. #define M_ASN1_OCTET_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  484. #define M_ASN1_OCTET_STRING_dup(a) (ASN1_OCTET_STRING *)\
  485. ASN1_STRING_dup((const ASN1_STRING *)a)
  486. #define M_ASN1_OCTET_STRING_cmp(a,b) ASN1_STRING_cmp(\
  487. (const ASN1_STRING *)a,(const ASN1_STRING *)b)
  488. #define M_ASN1_OCTET_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
  489. #define M_ASN1_OCTET_STRING_print(a,b) ASN1_STRING_print(a,(ASN1_STRING *)b)
  490. #define M_i2d_ASN1_OCTET_STRING(a,pp) \
  491. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_OCTET_STRING,\
  492. V_ASN1_UNIVERSAL)
  493. #define B_ASN1_TIME \
  494. B_ASN1_UTCTIME | \
  495. B_ASN1_GENERALIZEDTIME
  496. #define B_ASN1_PRINTABLE \
  497. B_ASN1_NUMERICSTRING| \
  498. B_ASN1_PRINTABLESTRING| \
  499. B_ASN1_T61STRING| \
  500. B_ASN1_IA5STRING| \
  501. B_ASN1_BIT_STRING| \
  502. B_ASN1_UNIVERSALSTRING|\
  503. B_ASN1_BMPSTRING|\
  504. B_ASN1_UTF8STRING|\
  505. B_ASN1_SEQUENCE|\
  506. B_ASN1_UNKNOWN
  507. #define B_ASN1_DIRECTORYSTRING \
  508. B_ASN1_PRINTABLESTRING| \
  509. B_ASN1_TELETEXSTRING|\
  510. B_ASN1_BMPSTRING|\
  511. B_ASN1_UNIVERSALSTRING|\
  512. B_ASN1_UTF8STRING
  513. #define B_ASN1_DISPLAYTEXT \
  514. B_ASN1_IA5STRING| \
  515. B_ASN1_VISIBLESTRING| \
  516. B_ASN1_BMPSTRING|\
  517. B_ASN1_UTF8STRING
  518. #define M_ASN1_PRINTABLE_new() ASN1_STRING_type_new(V_ASN1_T61STRING)
  519. #define M_ASN1_PRINTABLE_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  520. #define M_i2d_ASN1_PRINTABLE(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  521. pp,a->type,V_ASN1_UNIVERSAL)
  522. #define M_d2i_ASN1_PRINTABLE(a,pp,l) \
  523. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  524. B_ASN1_PRINTABLE)
  525. #define M_DIRECTORYSTRING_new() ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
  526. #define M_DIRECTORYSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  527. #define M_i2d_DIRECTORYSTRING(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  528. pp,a->type,V_ASN1_UNIVERSAL)
  529. #define M_d2i_DIRECTORYSTRING(a,pp,l) \
  530. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  531. B_ASN1_DIRECTORYSTRING)
  532. #define M_DISPLAYTEXT_new() ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  533. #define M_DISPLAYTEXT_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  534. #define M_i2d_DISPLAYTEXT(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\
  535. pp,a->type,V_ASN1_UNIVERSAL)
  536. #define M_d2i_DISPLAYTEXT(a,pp,l) \
  537. d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
  538. B_ASN1_DISPLAYTEXT)
  539. #define M_ASN1_PRINTABLESTRING_new() (ASN1_PRINTABLESTRING *)\
  540. ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
  541. #define M_ASN1_PRINTABLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  542. #define M_i2d_ASN1_PRINTABLESTRING(a,pp) \
  543. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_PRINTABLESTRING,\
  544. V_ASN1_UNIVERSAL)
  545. #define M_d2i_ASN1_PRINTABLESTRING(a,pp,l) \
  546. (ASN1_PRINTABLESTRING *)d2i_ASN1_type_bytes\
  547. ((ASN1_STRING **)a,pp,l,B_ASN1_PRINTABLESTRING)
  548. #define M_ASN1_T61STRING_new() (ASN1_T61STRING *)\
  549. ASN1_STRING_type_new(V_ASN1_T61STRING)
  550. #define M_ASN1_T61STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  551. #define M_i2d_ASN1_T61STRING(a,pp) \
  552. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_T61STRING,\
  553. V_ASN1_UNIVERSAL)
  554. #define M_d2i_ASN1_T61STRING(a,pp,l) \
  555. (ASN1_T61STRING *)d2i_ASN1_type_bytes\
  556. ((ASN1_STRING **)a,pp,l,B_ASN1_T61STRING)
  557. #define M_ASN1_IA5STRING_new() (ASN1_IA5STRING *)\
  558. ASN1_STRING_type_new(V_ASN1_IA5STRING)
  559. #define M_ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  560. #define M_ASN1_IA5STRING_dup(a) \
  561. (ASN1_IA5STRING *)ASN1_STRING_dup((const ASN1_STRING *)a)
  562. #define M_i2d_ASN1_IA5STRING(a,pp) \
  563. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_IA5STRING,\
  564. V_ASN1_UNIVERSAL)
  565. #define M_d2i_ASN1_IA5STRING(a,pp,l) \
  566. (ASN1_IA5STRING *)d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l,\
  567. B_ASN1_IA5STRING)
  568. #define M_ASN1_UTCTIME_new() (ASN1_UTCTIME *)\
  569. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  570. #define M_ASN1_UTCTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  571. #define M_ASN1_UTCTIME_dup(a) (ASN1_UTCTIME *)\
  572. ASN1_STRING_dup((const ASN1_STRING *)a)
  573. #define M_ASN1_GENERALIZEDTIME_new() (ASN1_GENERALIZEDTIME *)\
  574. ASN1_STRING_type_new(V_ASN1_GENERALIZEDTIME)
  575. #define M_ASN1_GENERALIZEDTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  576. #define M_ASN1_GENERALIZEDTIME_dup(a) (ASN1_GENERALIZEDTIME *)ASN1_STRING_dup(\
  577. (const ASN1_STRING *)a)
  578. #define M_ASN1_TIME_new() (ASN1_TIME *)\
  579. ASN1_STRING_type_new(V_ASN1_UTCTIME)
  580. #define M_ASN1_TIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  581. #define M_ASN1_TIME_dup(a) (ASN1_TIME *)\
  582. ASN1_STRING_dup((const ASN1_STRING *)a)
  583. #define M_ASN1_GENERALSTRING_new() (ASN1_GENERALSTRING *)\
  584. ASN1_STRING_type_new(V_ASN1_GENERALSTRING)
  585. #define M_ASN1_GENERALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  586. #define M_i2d_ASN1_GENERALSTRING(a,pp) \
  587. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_GENERALSTRING,\
  588. V_ASN1_UNIVERSAL)
  589. #define M_d2i_ASN1_GENERALSTRING(a,pp,l) \
  590. (ASN1_GENERALSTRING *)d2i_ASN1_type_bytes\
  591. ((ASN1_STRING **)a,pp,l,B_ASN1_GENERALSTRING)
  592. #define M_ASN1_UNIVERSALSTRING_new() (ASN1_UNIVERSALSTRING *)\
  593. ASN1_STRING_type_new(V_ASN1_UNIVERSALSTRING)
  594. #define M_ASN1_UNIVERSALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  595. #define M_i2d_ASN1_UNIVERSALSTRING(a,pp) \
  596. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UNIVERSALSTRING,\
  597. V_ASN1_UNIVERSAL)
  598. #define M_d2i_ASN1_UNIVERSALSTRING(a,pp,l) \
  599. (ASN1_UNIVERSALSTRING *)d2i_ASN1_type_bytes\
  600. ((ASN1_STRING **)a,pp,l,B_ASN1_UNIVERSALSTRING)
  601. #define M_ASN1_BMPSTRING_new() (ASN1_BMPSTRING *)\
  602. ASN1_STRING_type_new(V_ASN1_BMPSTRING)
  603. #define M_ASN1_BMPSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  604. #define M_i2d_ASN1_BMPSTRING(a,pp) \
  605. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_BMPSTRING,\
  606. V_ASN1_UNIVERSAL)
  607. #define M_d2i_ASN1_BMPSTRING(a,pp,l) \
  608. (ASN1_BMPSTRING *)d2i_ASN1_type_bytes\
  609. ((ASN1_STRING **)a,pp,l,B_ASN1_BMPSTRING)
  610. #define M_ASN1_VISIBLESTRING_new() (ASN1_VISIBLESTRING *)\
  611. ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
  612. #define M_ASN1_VISIBLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  613. #define M_i2d_ASN1_VISIBLESTRING(a,pp) \
  614. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_VISIBLESTRING,\
  615. V_ASN1_UNIVERSAL)
  616. #define M_d2i_ASN1_VISIBLESTRING(a,pp,l) \
  617. (ASN1_VISIBLESTRING *)d2i_ASN1_type_bytes\
  618. ((ASN1_STRING **)a,pp,l,B_ASN1_VISIBLESTRING)
  619. #define M_ASN1_UTF8STRING_new() (ASN1_UTF8STRING *)\
  620. ASN1_STRING_type_new(V_ASN1_UTF8STRING)
  621. #define M_ASN1_UTF8STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
  622. #define M_i2d_ASN1_UTF8STRING(a,pp) \
  623. i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UTF8STRING,\
  624. V_ASN1_UNIVERSAL)
  625. #define M_d2i_ASN1_UTF8STRING(a,pp,l) \
  626. (ASN1_UTF8STRING *)d2i_ASN1_type_bytes\
  627. ((ASN1_STRING **)a,pp,l,B_ASN1_UTF8STRING)
  628. /* for the is_set parameter to i2d_ASN1_SET */
  629. #define IS_SEQUENCE 0
  630. #define IS_SET 1
  631. DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
  632. OPENSSL_EXPORT int ASN1_TYPE_get(ASN1_TYPE *a);
  633. OPENSSL_EXPORT void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
  634. OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
  635. OPENSSL_EXPORT int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
  636. OPENSSL_EXPORT ASN1_OBJECT * ASN1_OBJECT_new(void );
  637. OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
  638. OPENSSL_EXPORT int i2d_ASN1_OBJECT(ASN1_OBJECT *a,unsigned char **pp);
  639. OPENSSL_EXPORT ASN1_OBJECT * c2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  640. long length);
  641. OPENSSL_EXPORT ASN1_OBJECT * d2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
  642. long length);
  643. DECLARE_ASN1_ITEM(ASN1_OBJECT)
  644. DECLARE_ASN1_SET_OF(ASN1_OBJECT)
  645. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_new(void);
  646. OPENSSL_EXPORT void ASN1_STRING_free(ASN1_STRING *a);
  647. OPENSSL_EXPORT int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
  648. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_dup(const ASN1_STRING *a);
  649. OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_type_new(int type );
  650. OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
  651. /* Since this is used to store all sorts of things, via macros, for now, make
  652. its data void * */
  653. OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
  654. OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
  655. OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *x);
  656. OPENSSL_EXPORT void ASN1_STRING_length_set(ASN1_STRING *x, int n);
  657. OPENSSL_EXPORT int ASN1_STRING_type(ASN1_STRING *x);
  658. OPENSSL_EXPORT unsigned char * ASN1_STRING_data(ASN1_STRING *x);
  659. DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
  660. OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a,unsigned char **pp);
  661. OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,const unsigned char **pp, long length);
  662. OPENSSL_EXPORT int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length );
  663. OPENSSL_EXPORT int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
  664. OPENSSL_EXPORT int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *a, int n);
  665. OPENSSL_EXPORT int ASN1_BIT_STRING_check(ASN1_BIT_STRING *a, unsigned char *flags, int flags_len);
  666. OPENSSL_EXPORT int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent);
  667. OPENSSL_EXPORT int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl);
  668. OPENSSL_EXPORT int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value, BIT_STRING_BITNAME *tbl);
  669. OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a,unsigned char **pp);
  670. OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a,const unsigned char **pp,long length);
  671. DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
  672. OPENSSL_EXPORT int i2c_ASN1_INTEGER(ASN1_INTEGER *a,unsigned char **pp);
  673. OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  674. OPENSSL_EXPORT ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
  675. OPENSSL_EXPORT ASN1_INTEGER * ASN1_INTEGER_dup(const ASN1_INTEGER *x);
  676. OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);
  677. DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
  678. OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
  679. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s,time_t t);
  680. OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec);
  681. OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
  682. OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
  683. #if 0
  684. time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
  685. #endif
  686. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
  687. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,time_t t);
  688. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
  689. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
  690. OPENSSL_EXPORT int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to);
  691. DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
  692. OPENSSL_EXPORT ASN1_OCTET_STRING * ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a);
  693. OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, const ASN1_OCTET_STRING *b);
  694. OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
  695. DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
  696. DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
  697. DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
  698. DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
  699. DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
  700. OPENSSL_EXPORT int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
  701. OPENSSL_EXPORT int UTF8_putc(unsigned char *str, int len, unsigned long value);
  702. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
  703. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
  704. DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
  705. DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
  706. DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
  707. DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
  708. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
  709. DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
  710. DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
  711. DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
  712. DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF)
  713. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s,time_t t);
  714. OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s,time_t t, int offset_day, long offset_sec);
  715. OPENSSL_EXPORT int ASN1_TIME_check(ASN1_TIME *t);
  716. OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
  717. OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
  718. 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);
  719. OPENSSL_EXPORT STACK_OF(OPENSSL_BLOCK) *d2i_ASN1_SET(STACK_OF(OPENSSL_BLOCK) **a,
  720. const unsigned char **pp,
  721. long length, d2i_of_void *d2i,
  722. void (*free_func)(OPENSSL_BLOCK), int ex_tag,
  723. int ex_class);
  724. OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
  725. OPENSSL_EXPORT int a2i_ASN1_INTEGER(BIO *bp,ASN1_INTEGER *bs,char *buf,int size);
  726. OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
  727. OPENSSL_EXPORT int a2i_ASN1_ENUMERATED(BIO *bp,ASN1_ENUMERATED *bs,char *buf,int size);
  728. OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
  729. OPENSSL_EXPORT int a2i_ASN1_STRING(BIO *bp,ASN1_STRING *bs,char *buf,int size);
  730. OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
  731. OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf,int buf_len,ASN1_OBJECT *a);
  732. OPENSSL_EXPORT int a2d_ASN1_OBJECT(unsigned char *out,int olen, const char *buf, int num);
  733. OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
  734. OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
  735. OPENSSL_EXPORT long ASN1_INTEGER_get(const ASN1_INTEGER *a);
  736. OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
  737. OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
  738. OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
  739. OPENSSL_EXPORT long ASN1_ENUMERATED_get(ASN1_ENUMERATED *a);
  740. OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
  741. OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);
  742. /* General */
  743. /* given a string, return the correct type, max is the maximum length */
  744. OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int max);
  745. OPENSSL_EXPORT int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass);
  746. OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, const unsigned char **pp, long length, int Ptag, int Pclass);
  747. OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
  748. /* type is one or more of the B_ASN1_ values. */
  749. OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a,const unsigned char **pp, long length,int type);
  750. /* PARSING */
  751. OPENSSL_EXPORT int asn1_Finish(ASN1_CTX *c);
  752. OPENSSL_EXPORT int asn1_const_Finish(ASN1_const_CTX *c);
  753. /* SPECIALS */
  754. OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax);
  755. OPENSSL_EXPORT int ASN1_check_infinite_end(unsigned char **p,long len);
  756. OPENSSL_EXPORT int ASN1_const_check_infinite_end(const unsigned char **p,long len);
  757. OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, int xclass);
  758. OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
  759. OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
  760. /* Used to implement other functions */
  761. OPENSSL_EXPORT void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
  762. #define ASN1_dup_of(type,i2d,d2i,x) \
  763. ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
  764. CHECKED_D2I_OF(type, d2i), \
  765. CHECKED_PTR_OF(type, x)))
  766. #define ASN1_dup_of_const(type,i2d,d2i,x) \
  767. ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
  768. CHECKED_D2I_OF(type, d2i), \
  769. CHECKED_PTR_OF(const type, x)))
  770. OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
  771. /* ASN1 alloc/free macros for when a type is only used internally */
  772. #define M_ASN1_new_of(type) (type *)ASN1_item_new(ASN1_ITEM_rptr(type))
  773. #define M_ASN1_free_of(x, type) \
  774. ASN1_item_free(CHECKED_PTR_OF(type, x), ASN1_ITEM_rptr(type))
  775. #ifndef OPENSSL_NO_FP_API
  776. OPENSSL_EXPORT void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x);
  777. #define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \
  778. ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
  779. CHECKED_D2I_OF(type, d2i), \
  780. in, \
  781. CHECKED_PPTR_OF(type, x)))
  782. OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
  783. OPENSSL_EXPORT int ASN1_i2d_fp(i2d_of_void *i2d,FILE *out,void *x);
  784. #define ASN1_i2d_fp_of(type,i2d,out,x) \
  785. (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
  786. out, \
  787. CHECKED_PTR_OF(type, x)))
  788. #define ASN1_i2d_fp_of_const(type,i2d,out,x) \
  789. (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \
  790. out, \
  791. CHECKED_PTR_OF(const type, x)))
  792. OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
  793. OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags);
  794. #endif
  795. OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in);
  796. OPENSSL_EXPORT void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x);
  797. #define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \
  798. ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \
  799. CHECKED_D2I_OF(type, d2i), \
  800. in, \
  801. CHECKED_PPTR_OF(type, x)))
  802. OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
  803. OPENSSL_EXPORT int ASN1_i2d_bio(i2d_of_void *i2d,BIO *out, void *x);
  804. #define ASN1_i2d_bio_of(type,i2d,out,x) \
  805. (ASN1_i2d_bio(CHECKED_I2D_OF(type, i2d), \
  806. out, \
  807. CHECKED_PTR_OF(type, x)))
  808. #define ASN1_i2d_bio_of_const(type,i2d,out,x) \
  809. (ASN1_i2d_bio(CHECKED_I2D_OF(const type, i2d), \
  810. out, \
  811. CHECKED_PTR_OF(const type, x)))
  812. OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
  813. OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
  814. OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
  815. OPENSSL_EXPORT int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
  816. OPENSSL_EXPORT int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
  817. OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags);
  818. OPENSSL_EXPORT int ASN1_parse(BIO *bp,const unsigned char *pp,long len,int indent);
  819. OPENSSL_EXPORT int ASN1_parse_dump(BIO *bp,const unsigned char *pp,long len,int indent,int dump);
  820. OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
  821. /* Used to load and write netscape format cert */
  822. DECLARE_ASN1_FUNCTIONS(NETSCAPE_X509)
  823. int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s);
  824. OPENSSL_EXPORT STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len, d2i_of_void *d2i, void (*free_func)(OPENSSL_BLOCK));
  825. OPENSSL_EXPORT unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d, unsigned char **buf, int *len );
  826. OPENSSL_EXPORT void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i);
  827. OPENSSL_EXPORT void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it);
  828. OPENSSL_EXPORT ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_OCTET_STRING **oct);
  829. #define ASN1_pack_string_of(type,obj,i2d,oct) \
  830. (ASN1_pack_string(CHECKED_PTR_OF(type, obj), \
  831. CHECKED_I2D_OF(type, i2d), \
  832. oct))
  833. OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct);
  834. OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
  835. OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
  836. OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
  837. OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask);
  838. OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask, long minsize, long maxsize);
  839. OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid);
  840. OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
  841. OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long);
  842. OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
  843. /* ASN1 template functions */
  844. /* Old API compatible functions */
  845. OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
  846. OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
  847. OPENSSL_EXPORT ASN1_VALUE * ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it);
  848. OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  849. OPENSSL_EXPORT int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
  850. OPENSSL_EXPORT void ASN1_add_oid_module(void);
  851. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
  852. OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);
  853. /* ASN1 Print flags */
  854. /* Indicate missing OPTIONAL fields */
  855. #define ASN1_PCTX_FLAGS_SHOW_ABSENT 0x001
  856. /* Mark start and end of SEQUENCE */
  857. #define ASN1_PCTX_FLAGS_SHOW_SEQUENCE 0x002
  858. /* Mark start and end of SEQUENCE/SET OF */
  859. #define ASN1_PCTX_FLAGS_SHOW_SSOF 0x004
  860. /* Show the ASN1 type of primitives */
  861. #define ASN1_PCTX_FLAGS_SHOW_TYPE 0x008
  862. /* Don't show ASN1 type of ANY */
  863. #define ASN1_PCTX_FLAGS_NO_ANY_TYPE 0x010
  864. /* Don't show ASN1 type of MSTRINGs */
  865. #define ASN1_PCTX_FLAGS_NO_MSTRING_TYPE 0x020
  866. /* Don't show field names in SEQUENCE */
  867. #define ASN1_PCTX_FLAGS_NO_FIELD_NAME 0x040
  868. /* Show structure names of each SEQUENCE field */
  869. #define ASN1_PCTX_FLAGS_SHOW_FIELD_STRUCT_NAME 0x080
  870. /* Don't show structure name even at top level */
  871. #define ASN1_PCTX_FLAGS_NO_STRUCT_NAME 0x100
  872. OPENSSL_EXPORT int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, const ASN1_ITEM *it, const ASN1_PCTX *pctx);
  873. OPENSSL_EXPORT ASN1_PCTX *ASN1_PCTX_new(void);
  874. OPENSSL_EXPORT void ASN1_PCTX_free(ASN1_PCTX *p);
  875. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_flags(ASN1_PCTX *p);
  876. OPENSSL_EXPORT void ASN1_PCTX_set_flags(ASN1_PCTX *p, unsigned long flags);
  877. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_nm_flags(ASN1_PCTX *p);
  878. OPENSSL_EXPORT void ASN1_PCTX_set_nm_flags(ASN1_PCTX *p, unsigned long flags);
  879. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_cert_flags(ASN1_PCTX *p);
  880. OPENSSL_EXPORT void ASN1_PCTX_set_cert_flags(ASN1_PCTX *p, unsigned long flags);
  881. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_oid_flags(ASN1_PCTX *p);
  882. OPENSSL_EXPORT void ASN1_PCTX_set_oid_flags(ASN1_PCTX *p, unsigned long flags);
  883. OPENSSL_EXPORT unsigned long ASN1_PCTX_get_str_flags(ASN1_PCTX *p);
  884. OPENSSL_EXPORT void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags);
  885. OPENSSL_EXPORT const BIO_METHOD *BIO_f_asn1(void);
  886. OPENSSL_EXPORT BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it);
  887. OPENSSL_EXPORT int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const ASN1_ITEM *it);
  888. OPENSSL_EXPORT int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const char *hdr, const ASN1_ITEM *it);
  889. OPENSSL_EXPORT ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it);
  890. OPENSSL_EXPORT int SMIME_crlf_copy(BIO *in, BIO *out, int flags);
  891. OPENSSL_EXPORT int SMIME_text(BIO *in, BIO *out);
  892. /* BEGIN ERROR CODES */
  893. /* The following lines are auto generated by the script mkerr.pl. Any changes
  894. * made after this point may be overwritten when the script is next run.
  895. */
  896. void ERR_load_ASN1_strings(void);
  897. typedef int asn1_ps_func(BIO *b, unsigned char **pbuf, int *plen, void *parg);
  898. OPENSSL_EXPORT int BIO_asn1_set_prefix(BIO *b, asn1_ps_func *prefix, asn1_ps_func *prefix_free);
  899. OPENSSL_EXPORT int BIO_asn1_get_prefix(BIO *b, asn1_ps_func **pprefix, asn1_ps_func **pprefix_free);
  900. OPENSSL_EXPORT int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix, asn1_ps_func *suffix_free);
  901. OPENSSL_EXPORT int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix, asn1_ps_func **psuffix_free);
  902. #ifdef __cplusplus
  903. }
  904. #endif
  905. #define ASN1_R_ASN1_LENGTH_MISMATCH 100
  906. #define ASN1_R_AUX_ERROR 101
  907. #define ASN1_R_BAD_GET_ASN1_OBJECT_CALL 102
  908. #define ASN1_R_BAD_OBJECT_HEADER 103
  909. #define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 104
  910. #define ASN1_R_BN_LIB 105
  911. #define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106
  912. #define ASN1_R_BUFFER_TOO_SMALL 107
  913. #define ASN1_R_CONTEXT_NOT_INITIALISED 108
  914. #define ASN1_R_DECODE_ERROR 109
  915. #define ASN1_R_DEPTH_EXCEEDED 110
  916. #define ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 111
  917. #define ASN1_R_ENCODE_ERROR 112
  918. #define ASN1_R_ERROR_GETTING_TIME 113
  919. #define ASN1_R_EXPECTING_AN_ASN1_SEQUENCE 114
  920. #define ASN1_R_EXPECTING_AN_INTEGER 115
  921. #define ASN1_R_EXPECTING_AN_OBJECT 116
  922. #define ASN1_R_EXPECTING_A_BOOLEAN 117
  923. #define ASN1_R_EXPECTING_A_TIME 118
  924. #define ASN1_R_EXPLICIT_LENGTH_MISMATCH 119
  925. #define ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED 120
  926. #define ASN1_R_FIELD_MISSING 121
  927. #define ASN1_R_FIRST_NUM_TOO_LARGE 122
  928. #define ASN1_R_HEADER_TOO_LONG 123
  929. #define ASN1_R_ILLEGAL_BITSTRING_FORMAT 124
  930. #define ASN1_R_ILLEGAL_BOOLEAN 125
  931. #define ASN1_R_ILLEGAL_CHARACTERS 126
  932. #define ASN1_R_ILLEGAL_FORMAT 127
  933. #define ASN1_R_ILLEGAL_HEX 128
  934. #define ASN1_R_ILLEGAL_IMPLICIT_TAG 129
  935. #define ASN1_R_ILLEGAL_INTEGER 130
  936. #define ASN1_R_ILLEGAL_NESTED_TAGGING 131
  937. #define ASN1_R_ILLEGAL_NULL 132
  938. #define ASN1_R_ILLEGAL_NULL_VALUE 133
  939. #define ASN1_R_ILLEGAL_OBJECT 134
  940. #define ASN1_R_ILLEGAL_OPTIONAL_ANY 135
  941. #define ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE 136
  942. #define ASN1_R_ILLEGAL_TAGGED_ANY 137
  943. #define ASN1_R_ILLEGAL_TIME_VALUE 138
  944. #define ASN1_R_INTEGER_NOT_ASCII_FORMAT 139
  945. #define ASN1_R_INTEGER_TOO_LARGE_FOR_LONG 140
  946. #define ASN1_R_INVALID_BIT_STRING_BITS_LEFT 141
  947. #define ASN1_R_INVALID_BMPSTRING_LENGTH 142
  948. #define ASN1_R_INVALID_DIGIT 143
  949. #define ASN1_R_INVALID_MODIFIER 144
  950. #define ASN1_R_INVALID_NUMBER 145
  951. #define ASN1_R_INVALID_OBJECT_ENCODING 146
  952. #define ASN1_R_INVALID_SEPARATOR 147
  953. #define ASN1_R_INVALID_TIME_FORMAT 148
  954. #define ASN1_R_INVALID_UNIVERSALSTRING_LENGTH 149
  955. #define ASN1_R_INVALID_UTF8STRING 150
  956. #define ASN1_R_LIST_ERROR 151
  957. #define ASN1_R_MISSING_ASN1_EOS 152
  958. #define ASN1_R_MISSING_EOC 153
  959. #define ASN1_R_MISSING_SECOND_NUMBER 154
  960. #define ASN1_R_MISSING_VALUE 155
  961. #define ASN1_R_MSTRING_NOT_UNIVERSAL 156
  962. #define ASN1_R_MSTRING_WRONG_TAG 157
  963. #define ASN1_R_NESTED_ASN1_ERROR 158
  964. #define ASN1_R_NESTED_ASN1_STRING 159
  965. #define ASN1_R_NON_HEX_CHARACTERS 160
  966. #define ASN1_R_NOT_ASCII_FORMAT 161
  967. #define ASN1_R_NOT_ENOUGH_DATA 162
  968. #define ASN1_R_NO_MATCHING_CHOICE_TYPE 163
  969. #define ASN1_R_NULL_IS_WRONG_LENGTH 164
  970. #define ASN1_R_OBJECT_NOT_ASCII_FORMAT 165
  971. #define ASN1_R_ODD_NUMBER_OF_CHARS 166
  972. #define ASN1_R_SECOND_NUMBER_TOO_LARGE 167
  973. #define ASN1_R_SEQUENCE_LENGTH_MISMATCH 168
  974. #define ASN1_R_SEQUENCE_NOT_CONSTRUCTED 169
  975. #define ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG 170
  976. #define ASN1_R_SHORT_LINE 171
  977. #define ASN1_R_STREAMING_NOT_SUPPORTED 172
  978. #define ASN1_R_STRING_TOO_LONG 173
  979. #define ASN1_R_STRING_TOO_SHORT 174
  980. #define ASN1_R_TAG_VALUE_TOO_HIGH 175
  981. #define ASN1_R_TIME_NOT_ASCII_FORMAT 176
  982. #define ASN1_R_TOO_LONG 177
  983. #define ASN1_R_TYPE_NOT_CONSTRUCTED 178
  984. #define ASN1_R_TYPE_NOT_PRIMITIVE 179
  985. #define ASN1_R_UNEXPECTED_EOC 180
  986. #define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 181
  987. #define ASN1_R_UNKNOWN_FORMAT 182
  988. #define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 183
  989. #define ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM 184
  990. #define ASN1_R_UNKNOWN_TAG 185
  991. #define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 186
  992. #define ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE 187
  993. #define ASN1_R_UNSUPPORTED_TYPE 188
  994. #define ASN1_R_WRONG_PUBLIC_KEY_TYPE 189
  995. #define ASN1_R_WRONG_TAG 190
  996. #define ASN1_R_WRONG_TYPE 191
  997. #endif