apr_base64.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2. * contributor license agreements. See the NOTICE file distributed with
  3. * this work for additional information regarding copyright ownership.
  4. * The ASF licenses this file to You under the Apache License, Version 2.0
  5. * (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. * The apr_vsnprintf/apr_snprintf functions are based on, and used with the
  16. * permission of, the SIO stdio-replacement strx_* functions by Panos
  17. * Tsirigotis <panos@alumni.cs.colorado.edu> for xinetd.
  18. */
  19. /**
  20. * @file apr_base64.h
  21. * @brief APR-UTIL Base64 Encoding
  22. */
  23. #ifndef APR_BASE64_H
  24. #define APR_BASE64_H
  25. #include "apu.h"
  26. #include "apr_general.h"
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. /**
  31. * @defgroup APR_Util_Base64 Base64 Encoding
  32. * @ingroup APR_Util
  33. * @{
  34. */
  35. /* Simple BASE64 encode/decode functions.
  36. *
  37. * As we might encode binary strings, hence we require the length of
  38. * the incoming plain source. And return the length of what we decoded.
  39. *
  40. * The decoding function takes any non valid char (i.e. whitespace, \0
  41. * or anything non A-Z,0-9 etc as terminal.
  42. *
  43. * plain strings/binary sequences are not assumed '\0' terminated. Encoded
  44. * strings are neither. But probably should.
  45. *
  46. */
  47. /**
  48. * Given the length of an un-encoded string, get the length of the
  49. * encoded string.
  50. * @param len the length of an unencoded string.
  51. * @return the length of the string after it is encoded, including the
  52. * trailing \0
  53. */
  54. APU_DECLARE(int) apr_base64_encode_len(int len);
  55. /**
  56. * Encode a text string using base64encoding.
  57. * @param coded_dst The destination string for the encoded string.
  58. * @param plain_src The original string in plain text
  59. * @param len_plain_src The length of the plain text string
  60. * @return the length of the encoded string
  61. */
  62. APU_DECLARE(int) apr_base64_encode(char * coded_dst, const char *plain_src,
  63. int len_plain_src);
  64. /**
  65. * Encode an EBCDIC string using base64encoding.
  66. * @param coded_dst The destination string for the encoded string.
  67. * @param plain_src The original string in plain text
  68. * @param len_plain_src The length of the plain text string
  69. * @return the length of the encoded string
  70. */
  71. APU_DECLARE(int) apr_base64_encode_binary(char * coded_dst,
  72. const unsigned char *plain_src,
  73. int len_plain_src);
  74. /**
  75. * Determine the maximum buffer length required to decode the plain text
  76. * string given the encoded string.
  77. * @param coded_src The encoded string
  78. * @return the maximum required buffer length for the plain text string
  79. */
  80. APU_DECLARE(int) apr_base64_decode_len(const char * coded_src);
  81. /**
  82. * Decode a string to plain text
  83. * @param plain_dst The destination string for the plain text
  84. * @param coded_src The encoded string
  85. * @return the length of the plain text string
  86. */
  87. APU_DECLARE(int) apr_base64_decode(char * plain_dst, const char *coded_src);
  88. /**
  89. * Decode an EBCDIC string to plain text
  90. * @param plain_dst The destination string for the plain text
  91. * @param coded_src The encoded string
  92. * @return the length of the plain text string
  93. */
  94. APU_DECLARE(int) apr_base64_decode_binary(unsigned char * plain_dst,
  95. const char *coded_src);
  96. /** @} */
  97. #ifdef __cplusplus
  98. }
  99. #endif
  100. #endif /* !APR_BASE64_H */