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.
 
 
 
 
 
 

76 lines
3.4 KiB

  1. /* Copyright (c) 2014, Google Inc.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  10. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  12. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  14. #ifndef OPENSSL_HEADER_BYTESTRING_INTERNAL_H
  15. #define OPENSSL_HEADER_BYTESTRING_INTERNAL_H
  16. #include <openssl/base.h>
  17. #if defined(__cplusplus)
  18. extern "C" {
  19. #endif
  20. /* CBS_asn1_ber_to_der reads a BER element from |in|. If it finds
  21. * indefinite-length elements or constructed strings then it converts the BER
  22. * data to DER and sets |*out| and |*out_length| to describe a malloced buffer
  23. * containing the DER data. Additionally, |*in| will be advanced over the BER
  24. * element.
  25. *
  26. * If it doesn't find any indefinite-length elements or constructed strings then
  27. * it sets |*out| to NULL and |*in| is unmodified.
  28. *
  29. * This function should successfully process any valid BER input, however it
  30. * will not convert all of BER's deviations from DER. BER is ambiguous between
  31. * implicitly-tagged SEQUENCEs of strings and implicitly-tagged constructed
  32. * strings. Implicitly-tagged strings must be parsed with
  33. * |CBS_get_ber_implicitly_tagged_string| instead of |CBS_get_asn1|. The caller
  34. * must also account for BER variations in the contents of a primitive.
  35. *
  36. * It returns one on success and zero otherwise. */
  37. OPENSSL_EXPORT int CBS_asn1_ber_to_der(CBS *in, uint8_t **out, size_t *out_len);
  38. /* CBS_get_asn1_implicit_string parses a BER string of primitive type
  39. * |inner_tag| implicitly-tagged with |outer_tag|. It sets |out| to the
  40. * contents. If concatenation was needed, it sets |*out_storage| to a buffer
  41. * which the caller must release with |OPENSSL_free|. Otherwise, it sets
  42. * |*out_storage| to NULL.
  43. *
  44. * This function does not parse all of BER. It requires the string be
  45. * definite-length. Constructed strings are allowed, but all children of the
  46. * outermost element must be primitive. The caller should use
  47. * |CBS_asn1_ber_to_der| before running this function.
  48. *
  49. * It returns one on success and zero otherwise. */
  50. OPENSSL_EXPORT int CBS_get_asn1_implicit_string(CBS *in, CBS *out,
  51. uint8_t **out_storage,
  52. unsigned outer_tag,
  53. unsigned inner_tag);
  54. /* CBB_finish_i2d calls |CBB_finish| on |cbb| which must have been initialized
  55. * with |CBB_init|. If |outp| is not NULL then the result is written to |*outp|
  56. * and |*outp| is advanced just past the output. It returns the number of bytes
  57. * in the result, whether written or not, or a negative value on error. On
  58. * error, it calls |CBB_cleanup| on |cbb|.
  59. *
  60. * This function may be used to help implement legacy i2d ASN.1 functions. */
  61. int CBB_finish_i2d(CBB *cbb, uint8_t **outp);
  62. #if defined(__cplusplus)
  63. } /* extern C */
  64. #endif
  65. #endif /* OPENSSL_HEADER_BYTESTRING_INTERNAL_H */