base64.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 1996 by Internet Software Consortium.
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
  9. * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
  10. * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
  11. * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  12. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  13. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  14. * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  15. * SOFTWARE.
  16. */
  17. /*
  18. * Portions Copyright (c) 1995 by International Business Machines, Inc.
  19. *
  20. * International Business Machines, Inc. (hereinafter called IBM) grants
  21. * permission under its copyrights to use, copy, modify, and distribute this
  22. * Software with or without fee, provided that the above copyright notice and
  23. * all paragraphs of this notice appear in all copies, and that the name of IBM
  24. * not be used in connection with the marketing of any product incorporating
  25. * the Software or modifications thereof, without specific, written prior
  26. * permission.
  27. *
  28. * To the extent it has a right to do so, IBM grants an immunity from suit
  29. * under its patents, if any, for the use, sale or manufacture of products to
  30. * the extent that such products are used for performing Domain Name System
  31. * dynamic updates in TCP/IP networks by means of the Software. No immunity is
  32. * granted for any product per se or for any other function of any product.
  33. *
  34. * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
  35. * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  36. * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
  37. * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
  38. * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
  39. * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
  40. */
  41. #ifndef _BSD_BASE64_H
  42. #define _BSD_BASE64_H
  43. #include "includes.h"
  44. #ifndef HAVE___B64_NTOP
  45. # ifndef HAVE_B64_NTOP
  46. int b64_ntop(u_char const *src, size_t srclength, char *target,
  47. size_t targsize);
  48. # endif /* !HAVE_B64_NTOP */
  49. # define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d)
  50. #endif /* HAVE___B64_NTOP */
  51. #ifndef HAVE___B64_PTON
  52. # ifndef HAVE_B64_PTON
  53. int b64_pton(char const *src, u_char *target, size_t targsize);
  54. # endif /* !HAVE_B64_PTON */
  55. # define __b64_pton(a,b,c) b64_pton(a,b,c)
  56. #endif /* HAVE___B64_PTON */
  57. #endif /* _BSD_BASE64_H */