base64Reverse.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. var Base64 = {
  2. // 转码表
  3. table : [
  4. '0', '1', '2', '3', '4','5', '6', '7',
  5. '8', '9', '-', 'a', 'b', 'c', 'd', 'e',
  6. 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
  7. 'n', 'o', 'p', 'q', 'r', 's', 't', 'u',
  8. 'v', 'w', 'x', 'y', 'z', '_', 'A', 'B',
  9. 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
  10. 'K', 'L', 'M', 'N', 'O' ,'P', 'Q', 'R',
  11. 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'
  12. ],
  13. UTF16ToUTF8 : function(str) {
  14. var res = [], len = str.length;
  15. for (var i = 0; i < len; i++) {
  16. var code = str.charCodeAt(i);
  17. if (code > 0x0000 && code <= 0x007F) {
  18. // 单字节,这里并不考虑0x0000,因为它是空字节
  19. // U+00000000 – U+0000007F 0xxxxxxx
  20. res.push(str.charAt(i));
  21. } else if (code >= 0x0080 && code <= 0x07FF) {
  22. // 双字节
  23. // U+00000080 – U+000007FF 110xxxxx 10xxxxxx
  24. // 110xxxxx
  25. var byte1 = 0xC0 | ((code >> 6) & 0x1F);
  26. // 10xxxxxx
  27. var byte2 = 0x80 | (code & 0x3F);
  28. res.push(
  29. String.fromCharCode(byte1),
  30. String.fromCharCode(byte2)
  31. );
  32. } else if (code >= 0x0800 && code <= 0xFFFF) {
  33. // 三字节
  34. // U+00000800 – U+0000FFFF 1110xxxx 10xxxxxx 10xxxxxx
  35. // 1110xxxx
  36. var byte1 = 0xE0 | ((code >> 12) & 0x0F);
  37. // 10xxxxxx
  38. var byte2 = 0x80 | ((code >> 6) & 0x3F);
  39. // 10xxxxxx
  40. var byte3 = 0x80 | (code & 0x3F);
  41. res.push(
  42. String.fromCharCode(byte1),
  43. String.fromCharCode(byte2),
  44. String.fromCharCode(byte3)
  45. );
  46. } else if (code >= 0x00010000 && code <= 0x001FFFFF) {
  47. // 四字节
  48. // U+00010000 – U+001FFFFF 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
  49. } else if (code >= 0x00200000 && code <= 0x03FFFFFF) {
  50. // 五字节
  51. // U+00200000 – U+03FFFFFF 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
  52. } else /** if (code >= 0x04000000 && code <= 0x7FFFFFFF)*/ {
  53. // 六字节
  54. // U+04000000 – U+7FFFFFFF 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
  55. }
  56. }
  57. return res.join('');
  58. },
  59. UTF8ToUTF16 : function(str) {
  60. var res = [], len = str.length;
  61. var i = 0;
  62. for (var i = 0; i < len; i++) {
  63. var code = str.charCodeAt(i);
  64. // 对第一个字节进行判断
  65. if (((code >> 7) & 0xFF) == 0x0) {
  66. // 单字节
  67. // 0xxxxxxx
  68. res.push(str.charAt(i));
  69. } else if (((code >> 5) & 0xFF) == 0x6) {
  70. // 双字节
  71. // 110xxxxx 10xxxxxx
  72. var code2 = str.charCodeAt(++i);
  73. var byte1 = (code & 0x1F) << 6;
  74. var byte2 = code2 & 0x3F;
  75. var utf16 = byte1 | byte2;
  76. res.push(Sting.fromCharCode(utf16));
  77. } else if (((code >> 4) & 0xFF) == 0xE) {
  78. // 三字节
  79. // 1110xxxx 10xxxxxx 10xxxxxx
  80. var code2 = str.charCodeAt(++i);
  81. var code3 = str.charCodeAt(++i);
  82. var byte1 = (code << 4) | ((code2 >> 2) & 0x0F);
  83. var byte2 = ((code2 & 0x03) << 6) | (code3 & 0x3F);
  84. utf16 = ((byte1 & 0x00FF) << 8) | byte2
  85. res.push(String.fromCharCode(utf16));
  86. } else if (((code >> 3) & 0xFF) == 0x1E) {
  87. // 四字节
  88. // 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
  89. } else if (((code >> 2) & 0xFF) == 0x3E) {
  90. // 五字节
  91. // 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
  92. } else /** if (((code >> 1) & 0xFF) == 0x7E)*/ {
  93. // 六字节
  94. // 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
  95. }
  96. }
  97. return res.join('');
  98. },
  99. encode : function(str) {
  100. if (!str) {
  101. return '';
  102. }
  103. var utf8 = this.UTF16ToUTF8(str); // 转成UTF8
  104. var i = 0; // 遍历索引
  105. var len = utf8.length;
  106. var res = [];
  107. while (i < len) {
  108. var c1 = utf8.charCodeAt(i++) & 0xFF;
  109. res.push(this.table[c1 >> 2]);
  110. // 需要补2个=
  111. if (i == len) {
  112. res.push(this.table[(c1 & 0x3) << 4]);
  113. res.push('==');
  114. break;
  115. }
  116. var c2 = utf8.charCodeAt(i++);
  117. // 需要补1个=
  118. if (i == len) {
  119. res.push(this.table[((c1 & 0x3) << 4) | ((c2 >> 4) & 0x0F)]);
  120. res.push(this.table[(c2 & 0x0F) << 2]);
  121. res.push('=');
  122. break;
  123. }
  124. var c3 = utf8.charCodeAt(i++);
  125. res.push(this.table[((c1 & 0x3) << 4) | ((c2 >> 4) & 0x0F)]);
  126. res.push(this.table[((c2 & 0x0F) << 2) | ((c3 & 0xC0) >> 6)]);
  127. res.push(this.table[c3 & 0x3F]);
  128. }
  129. return res.join('');
  130. },
  131. decode : function(str) {
  132. if (!str) {
  133. return '';
  134. }
  135. var len = str.length;
  136. var i = 0;
  137. var res = [];
  138. while (i < len) {
  139. code1 = this.table.indexOf(str.charAt(i++));
  140. code2 = this.table.indexOf(str.charAt(i++));
  141. code3 = this.table.indexOf(str.charAt(i++));
  142. code4 = this.table.indexOf(str.charAt(i++));
  143. c1 = (code1 << 2) | (code2 >> 4);
  144. c2 = ((code2 & 0xF) << 4) | (code3 >> 2);
  145. c3 = ((code3 & 0x3) << 6) | code4;
  146. res.push(String.fromCharCode(c1));
  147. if (code3 != 64) {
  148. res.push(String.fromCharCode(c2));
  149. }
  150. if (code4 != 64) {
  151. res.push(String.fromCharCode(c3));
  152. }
  153. }
  154. return this.UTF8ToUTF16(res.join(''));
  155. }
  156. };
  157. function encodeBase64(temp){
  158. if(temp){
  159. temp=temp.toString();
  160. }else{
  161. temp="";
  162. }
  163. return Base64.encode(temp);
  164. }
  165. //对提交的form表单数据加密
  166. //fId:要加密的表单id
  167. //sfId:要提交隐藏的表单id
  168. function base64Form(fId,sfId){
  169. var values;//接收表单数据
  170. var tempvalue;
  171. var index;
  172. var fhtml = '';
  173. var timestamp=$("#"+sfId).attr("data-timestamp");
  174. var nowTime = new Date().getTime();
  175. var msg;
  176. if((fId==sfId&&timestamp)||(fId!=sfId&&timestamp&&(nowTime-timestamp)<200)){
  177. msg="操作过于频繁,稍后再试";
  178. if(top.layer){
  179. top.layer.msg(msg);
  180. }else{
  181. alert(msg);
  182. }
  183. return;
  184. }else{
  185. $("#"+sfId).attr("data-timestamp",nowTime);
  186. values = $('#'+fId).serializeArray();
  187. for (index = 0; index < values.length; index++){
  188. tempvalue = encodeBase64(values[index].value);
  189. fhtml +='<input type="hidden" name="'+values[index].name+'" value="'+tempvalue+'"/>'
  190. }
  191. $('#'+sfId).html(fhtml);
  192. }
  193. }