PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/epan/base64.c

https://github.com/labx-technologies-llc/wireshark
C | 85 lines | 43 code | 13 blank | 29 comment | 5 complexity | 904bf6e465ead4014336600d66fa2cd8 MD5 | raw file
Possible License(s): GPL-2.0, BSD-3-Clause
  1. /* base64.c
  2. * Base-64 conversion
  3. *
  4. * $Id$
  5. *
  6. * Wireshark - Network traffic analyzer
  7. * By Gerald Combs <gerald@wireshark.org>
  8. * Copyright 1998 Gerald Combs
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version 2
  13. * of the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  23. */
  24. #include "config.h"
  25. #include <string.h>
  26. #include "base64.h"
  27. /* Decode a base64 string in-place - simple and slow algorithm.
  28. Return length of result. Taken from rproxy/librsync/base64.c by
  29. Andrew Tridgell. */
  30. size_t epan_base64_decode(char *s)
  31. {
  32. static const char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\r\n";
  33. int bit_offset, byte_offset, idx, i;
  34. unsigned char *d = (unsigned char *)s;
  35. char *p;
  36. int cr_idx;
  37. /* we will allow CR and LF - but ignore them */
  38. cr_idx = (int) (strchr(b64, '\r') - b64);
  39. i=0;
  40. while (*s && (p=strchr(b64, *s))) {
  41. idx = (int)(p - b64);
  42. if(idx < cr_idx) {
  43. byte_offset = (i*6)/8;
  44. bit_offset = (i*6)%8;
  45. d[byte_offset] &= ~((1<<(8-bit_offset))-1);
  46. if (bit_offset < 3) {
  47. d[byte_offset] |= (idx << (2-bit_offset));
  48. } else {
  49. d[byte_offset] |= (idx >> (bit_offset-2));
  50. d[byte_offset+1] = 0;
  51. d[byte_offset+1] |= (idx << (8-(bit_offset-2))) & 0xFF;
  52. }
  53. i++;
  54. }
  55. s++;
  56. }
  57. d[i*3/4] = 0;
  58. return i*3/4;
  59. }
  60. /* Return a tvb that contains the binary representation of a base64
  61. string */
  62. tvbuff_t *
  63. base64_to_tvb(tvbuff_t *parent, const char *base64)
  64. {
  65. tvbuff_t *tvb;
  66. char *data = g_strdup(base64);
  67. gint len;
  68. len = (gint) epan_base64_decode(data);
  69. tvb = tvb_new_child_real_data(parent, (const guint8 *)data, len, len);
  70. tvb_set_free_cb(tvb, g_free);
  71. return tvb;
  72. }