asn1_locl.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright 2005-2017 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /* Internal ASN1 structures and functions: not for application use */
  10. int asn1_time_to_tm(struct tm *tm, const ASN1_TIME *d);
  11. int asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d);
  12. int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d);
  13. /* ASN1 scan context structure */
  14. struct asn1_sctx_st {
  15. /* The ASN1_ITEM associated with this field */
  16. const ASN1_ITEM *it;
  17. /* If ASN1_TEMPLATE associated with this field */
  18. const ASN1_TEMPLATE *tt;
  19. /* Various flags associated with field and context */
  20. unsigned long flags;
  21. /* If SEQUENCE OF or SET OF, field index */
  22. int skidx;
  23. /* ASN1 depth of field */
  24. int depth;
  25. /* Structure and field name */
  26. const char *sname, *fname;
  27. /* If a primitive type the type of underlying field */
  28. int prim_type;
  29. /* The field value itself */
  30. ASN1_VALUE **field;
  31. /* Callback to pass information to */
  32. int (*scan_cb) (ASN1_SCTX *ctx);
  33. /* Context specific application data */
  34. void *app_data;
  35. } /* ASN1_SCTX */ ;
  36. typedef struct mime_param_st MIME_PARAM;
  37. DEFINE_STACK_OF(MIME_PARAM)
  38. typedef struct mime_header_st MIME_HEADER;
  39. DEFINE_STACK_OF(MIME_HEADER)
  40. void asn1_string_embed_free(ASN1_STRING *a, int embed);
  41. int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
  42. int asn1_set_choice_selector(ASN1_VALUE **pval, int value,
  43. const ASN1_ITEM *it);
  44. ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
  45. const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
  46. int nullerr);
  47. int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it);
  48. void asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it);
  49. void asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
  50. int asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval,
  51. const ASN1_ITEM *it);
  52. int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
  53. const ASN1_ITEM *it);
  54. void asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
  55. void asn1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
  56. void asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
  57. ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
  58. long length);
  59. int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp);
  60. ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
  61. const unsigned char **pp, long length);
  62. int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp);
  63. ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
  64. long length);
  65. /* Internal functions used by x_int64.c */
  66. int c2i_uint64_int(uint64_t *ret, int *neg, const unsigned char **pp, long len);
  67. int i2c_uint64_int(unsigned char *p, uint64_t r, int neg);
  68. ASN1_TIME *asn1_time_from_tm(ASN1_TIME *s, struct tm *ts, int type);