buffer.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright 1995-2016 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. #ifndef HEADER_BUFFER_H
  10. # define HEADER_BUFFER_H
  11. # include <openssl/ossl_typ.h>
  12. # ifndef HEADER_CRYPTO_H
  13. # include <openssl/crypto.h>
  14. # endif
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. # include <stddef.h>
  19. # include <sys/types.h>
  20. /*
  21. * These names are outdated as of OpenSSL 1.1; a future release
  22. * will move them to be deprecated.
  23. */
  24. # define BUF_strdup(s) OPENSSL_strdup(s)
  25. # define BUF_strndup(s, size) OPENSSL_strndup(s, size)
  26. # define BUF_memdup(data, size) OPENSSL_memdup(data, size)
  27. # define BUF_strlcpy(dst, src, size) OPENSSL_strlcpy(dst, src, size)
  28. # define BUF_strlcat(dst, src, size) OPENSSL_strlcat(dst, src, size)
  29. # define BUF_strnlen(str, maxlen) OPENSSL_strnlen(str, maxlen)
  30. struct buf_mem_st {
  31. size_t length; /* current number of bytes */
  32. char *data;
  33. size_t max; /* size of buffer */
  34. unsigned long flags;
  35. };
  36. # define BUF_MEM_FLAG_SECURE 0x01
  37. BUF_MEM *BUF_MEM_new(void);
  38. BUF_MEM *BUF_MEM_new_ex(unsigned long flags);
  39. void BUF_MEM_free(BUF_MEM *a);
  40. size_t BUF_MEM_grow(BUF_MEM *str, size_t len);
  41. size_t BUF_MEM_grow_clean(BUF_MEM *str, size_t len);
  42. void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz);
  43. /* BEGIN ERROR CODES */
  44. /*
  45. * The following lines are auto generated by the script mkerr.pl. Any changes
  46. * made after this point may be overwritten when the script is next run.
  47. */
  48. int ERR_load_BUF_strings(void);
  49. /* Error codes for the BUF functions. */
  50. /* Function codes. */
  51. # define BUF_F_BUF_MEM_GROW 100
  52. # define BUF_F_BUF_MEM_GROW_CLEAN 105
  53. # define BUF_F_BUF_MEM_NEW 101
  54. /* Reason codes. */
  55. # ifdef __cplusplus
  56. }
  57. # endif
  58. #endif