base64.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * RFC 1521 base64 encoding/decoding
  3. *
  4. * Copyright (C) 2018, Nordic Semiconductor ASA
  5. * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
  6. * SPDX-License-Identifier: Apache-2.0
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License"); you may
  9. * not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  16. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. *
  20. * Adapted for Zephyr by Carles Cufi (carles.cufi@nordicsemi.no)
  21. * - Removed mbedtls_ prefixes
  22. * - Reworked coding style
  23. */
  24. #ifndef ZEPHYR_INCLUDE_SYS_BASE64_H_
  25. #define ZEPHYR_INCLUDE_SYS_BASE64_H_
  26. #include <stddef.h>
  27. #include <zephyr/types.h>
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. /**
  32. * @brief Encode a buffer into base64 format
  33. *
  34. * @param dst destination buffer
  35. * @param dlen size of the destination buffer
  36. * @param olen number of bytes written
  37. * @param src source buffer
  38. * @param slen amount of data to be encoded
  39. *
  40. * @return 0 if successful, or -ENOMEM if the buffer is too small.
  41. * *olen is always updated to reflect the amount
  42. * of data that has (or would have) been written.
  43. * If that length cannot be represented, then no data is
  44. * written to the buffer and *olen is set to the maximum
  45. * length representable as a size_t.
  46. *
  47. * @note Call this function with dlen = 0 to obtain the
  48. * required buffer size in *olen
  49. */
  50. int base64_encode(uint8_t *dst, size_t dlen, size_t *olen, const uint8_t *src,
  51. size_t slen);
  52. /**
  53. * @brief Decode a base64-formatted buffer
  54. *
  55. * @param dst destination buffer (can be NULL for checking size)
  56. * @param dlen size of the destination buffer
  57. * @param olen number of bytes written
  58. * @param src source buffer
  59. * @param slen amount of data to be decoded
  60. *
  61. * @return 0 if successful, -ENOMEM, or -EINVAL if the input data is
  62. * not correct. *olen is always updated to reflect the amount
  63. * of data that has (or would have) been written.
  64. *
  65. * @note Call this function with *dst = NULL or dlen = 0 to obtain
  66. * the required buffer size in *olen
  67. */
  68. int base64_decode(uint8_t *dst, size_t dlen, size_t *olen, const uint8_t *src,
  69. size_t slen);
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. #endif /* ZEPHYR_INCLUDE_SYS_BASE64_H_ */