Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

53 рядки
1.4 KiB

  1. /* Copyright (c) 2016, 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. #include <openssl/bytestring.h>
  15. #include <assert.h>
  16. #include <limits.h>
  17. #include <string.h>
  18. #include <openssl/mem.h>
  19. #include "internal.h"
  20. #include "../internal.h"
  21. int CBB_finish_i2d(CBB *cbb, uint8_t **outp) {
  22. assert(cbb->base->can_resize);
  23. uint8_t *der;
  24. size_t der_len;
  25. if (!CBB_finish(cbb, &der, &der_len)) {
  26. CBB_cleanup(cbb);
  27. return -1;
  28. }
  29. if (der_len > INT_MAX) {
  30. OPENSSL_free(der);
  31. return -1;
  32. }
  33. if (outp != NULL) {
  34. if (*outp == NULL) {
  35. *outp = der;
  36. der = NULL;
  37. } else {
  38. OPENSSL_memcpy(*outp, der, der_len);
  39. *outp += der_len;
  40. }
  41. }
  42. OPENSSL_free(der);
  43. return (int)der_len;
  44. }