Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

base64.c 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (C) 2009 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. #include <stdint.h>
  19. #include <string.h>
  20. #include <assert.h>
  21. #include <gpxe/base64.h>
  22. /** @file
  23. *
  24. * Base64 encoding
  25. *
  26. */
  27. static const char base64[64] =
  28. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  29. /**
  30. * Base64-encode a string
  31. *
  32. * @v raw Raw string
  33. * @v encoded Buffer for encoded string
  34. *
  35. * The buffer must be the correct length for the encoded string. Use
  36. * something like
  37. *
  38. * char buf[ base64_encoded_len ( strlen ( raw ) ) + 1 ];
  39. *
  40. * (the +1 is for the terminating NUL) to provide a buffer of the
  41. * correct size.
  42. */
  43. void base64_encode ( const char *raw, char *encoded ) {
  44. const uint8_t *raw_bytes = ( ( const uint8_t * ) raw );
  45. uint8_t *encoded_bytes = ( ( uint8_t * ) encoded );
  46. size_t raw_bit_len = ( 8 * strlen ( raw ) );
  47. unsigned int bit;
  48. unsigned int tmp;
  49. for ( bit = 0 ; bit < raw_bit_len ; bit += 6 ) {
  50. tmp = ( ( raw_bytes[ bit / 8 ] << ( bit % 8 ) ) |
  51. ( raw_bytes[ bit / 8 + 1 ] >> ( 8 - ( bit % 8 ) ) ) );
  52. tmp = ( ( tmp >> 2 ) & 0x3f );
  53. *(encoded_bytes++) = base64[tmp];
  54. }
  55. for ( ; ( bit % 8 ) != 0 ; bit += 6 )
  56. *(encoded_bytes++) = '=';
  57. *(encoded_bytes++) = '\0';
  58. DBG ( "Base64-encoded \"%s\" as \"%s\"\n", raw, encoded );
  59. assert ( strlen ( encoded ) == base64_encoded_len ( strlen ( raw ) ) );
  60. }