asn1_local.h 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright 2005-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (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. typedef const ASN1_VALUE const_ASN1_VALUE;
  11. SKM_DEFINE_STACK_OF(const_ASN1_VALUE, const ASN1_VALUE, ASN1_VALUE)
  12. int ossl_asn1_time_to_tm(struct tm *tm, const ASN1_TIME *d);
  13. int ossl_asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d);
  14. /* ASN1 scan context structure */
  15. struct asn1_sctx_st {
  16. /* The ASN1_ITEM associated with this field */
  17. const ASN1_ITEM *it;
  18. /* If ASN1_TEMPLATE associated with this field */
  19. const ASN1_TEMPLATE *tt;
  20. /* Various flags associated with field and context */
  21. unsigned long flags;
  22. /* If SEQUENCE OF or SET OF, field index */
  23. int skidx;
  24. /* ASN1 depth of field */
  25. int depth;
  26. /* Structure and field name */
  27. const char *sname, *fname;
  28. /* If a primitive type the type of underlying field */
  29. int prim_type;
  30. /* The field value itself */
  31. ASN1_VALUE **field;
  32. /* Callback to pass information to */
  33. int (*scan_cb) (ASN1_SCTX *ctx);
  34. /* Context specific application data */
  35. void *app_data;
  36. } /* ASN1_SCTX */ ;
  37. typedef struct mime_param_st MIME_PARAM;
  38. DEFINE_STACK_OF(MIME_PARAM)
  39. typedef struct mime_header_st MIME_HEADER;
  40. DEFINE_STACK_OF(MIME_HEADER)
  41. void ossl_asn1_string_embed_free(ASN1_STRING *a, int embed);
  42. int ossl_asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
  43. int ossl_asn1_get_choice_selector_const(const ASN1_VALUE **pval,
  44. const ASN1_ITEM *it);
  45. int ossl_asn1_set_choice_selector(ASN1_VALUE **pval, int value,
  46. const ASN1_ITEM *it);
  47. ASN1_VALUE **ossl_asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
  48. const ASN1_VALUE **ossl_asn1_get_const_field_ptr(const ASN1_VALUE **pval,
  49. const ASN1_TEMPLATE *tt);
  50. const ASN1_TEMPLATE *ossl_asn1_do_adb(const ASN1_VALUE *val,
  51. const ASN1_TEMPLATE *tt,
  52. int nullerr);
  53. int ossl_asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it);
  54. void ossl_asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it);
  55. void ossl_asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
  56. int ossl_asn1_enc_restore(int *len, unsigned char **out, const ASN1_VALUE **pval,
  57. const ASN1_ITEM *it);
  58. int ossl_asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
  59. const ASN1_ITEM *it);
  60. void ossl_asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
  61. void ossl_asn1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
  62. void ossl_asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
  63. ASN1_OBJECT *ossl_c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
  64. long length);
  65. int ossl_i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp);
  66. ASN1_BIT_STRING *ossl_c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
  67. const unsigned char **pp, long length);
  68. int ossl_i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp);
  69. ASN1_INTEGER *ossl_c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
  70. long length);
  71. /* Internal functions used by x_int64.c */
  72. int ossl_c2i_uint64_int(uint64_t *ret, int *neg, const unsigned char **pp,
  73. long len);
  74. int ossl_i2c_uint64_int(unsigned char *p, uint64_t r, int neg);
  75. ASN1_TIME *ossl_asn1_time_from_tm(ASN1_TIME *s, struct tm *ts, int type);