base64.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Copyright (C) 1999 Masanao Izumo <iz@onicos.co.jp>
  2. * Version: 1.0
  3. * LastModified: Dec 25 1999
  4. * This library is free. You can redistribute it and/or modify it.
  5. */
  6. /*
  7. * Interfaces:
  8. * b64 = base64encode(data);
  9. * data = base64decode(b64);
  10. */
  11. (function() {
  12. var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  13. var base64DecodeChars = new Array(
  14. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  15. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  16. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
  17. 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
  18. -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  19. 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
  20. -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  21. 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1);
  22. function base64encode(str) {
  23. var out, i, len;
  24. var c1, c2, c3;
  25. len = str.length;
  26. i = 0;
  27. out = "";
  28. while(i < len) {
  29. c1 = str.charCodeAt(i++) & 0xff;
  30. if(i == len)
  31. {
  32. out += base64EncodeChars.charAt(c1 >> 2);
  33. out += base64EncodeChars.charAt((c1 & 0x3) << 4);
  34. out += "==";
  35. break;
  36. }
  37. c2 = str.charCodeAt(i++);
  38. if(i == len)
  39. {
  40. out += base64EncodeChars.charAt(c1 >> 2);
  41. out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  42. out += base64EncodeChars.charAt((c2 & 0xF) << 2);
  43. out += "=";
  44. break;
  45. }
  46. c3 = str.charCodeAt(i++);
  47. out += base64EncodeChars.charAt(c1 >> 2);
  48. out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  49. out += base64EncodeChars.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6));
  50. out += base64EncodeChars.charAt(c3 & 0x3F);
  51. }
  52. return out;
  53. }
  54. function base64decode(str) {
  55. var c1, c2, c3, c4;
  56. var i, len, out;
  57. len = str.length;
  58. i = 0;
  59. out = "";
  60. while(i < len) {
  61. /* c1 */
  62. do {
  63. c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
  64. } while(i < len && c1 == -1);
  65. if(c1 == -1)
  66. break;
  67. /* c2 */
  68. do {
  69. c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
  70. } while(i < len && c2 == -1);
  71. if(c2 == -1)
  72. break;
  73. out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));
  74. /* c3 */
  75. do {
  76. c3 = str.charCodeAt(i++) & 0xff;
  77. if(c3 == 61)
  78. return out;
  79. c3 = base64DecodeChars[c3];
  80. } while(i < len && c3 == -1);
  81. if(c3 == -1)
  82. break;
  83. out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
  84. /* c4 */
  85. do {
  86. c4 = str.charCodeAt(i++) & 0xff;
  87. if(c4 == 61)
  88. return out;
  89. c4 = base64DecodeChars[c4];
  90. } while(i < len && c4 == -1);
  91. if(c4 == -1)
  92. break;
  93. out += String.fromCharCode(((c3 & 0x03) << 6) | c4);
  94. }
  95. return out;
  96. }
  97. if (!window.btoa) window.btoa = base64encode;
  98. if (!window.atob) window.atob = base64decode;
  99. })();