·您当前的位置:首页 > 技术教程 > JavaScript >

[JS]js加密算法的源代码

时间:2014-12-26 14:54酷播
[JS]js加密算法的源代码

[JS]js加密算法的源代码

  1. var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";  
  2. var base64DecodeChars = new Array(  
  3.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  
  4.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  
  5.     -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,  
  6.     52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,  
  7.     -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,  
  8.     15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,  
  9.     -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,  
  10.     41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1);  
  11.  
  12. function base64encode(str) {  
  13.     var out, i, len;  
  14.     var c1, c2, c3;  
  15.  
  16.     len = str.length;  
  17.     i = 0;  
  18.     out = "";  
  19.     while(i < len) {  
  20.     c1 = str.charCodeAt(i++) & 0xff;  
  21.     if(i == len)  
  22.     {  
  23.         out += base64EncodeChars.charAt(c1 >> 2);  
  24.         out += base64EncodeChars.charAt((c1 & 0x3) << 4);  
  25.         out += "==";  
  26.         break;  
  27.     }  
  28.     c2 = str.charCodeAt(i++);  
  29.     if(i == len)  
  30.     {  
  31.         out += base64EncodeChars.charAt(c1 >> 2);  
  32.         out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));  
  33.         out += base64EncodeChars.charAt((c2 & 0xF) << 2);  
  34.         out += "=";  
  35.         break;  
  36.     }  
  37.     c3 = str.charCodeAt(i++);  
  38.     out += base64EncodeChars.charAt(c1 >> 2);  
  39.     out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));  
  40.     out += base64EncodeChars.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6));  
  41.     out += base64EncodeChars.charAt(c3 & 0x3F);  
  42.     }  
  43.     return out;  
  44. }  
  45.  
  46. function base64decode(str) {  
  47.     var c1, c2, c3, c4;  
  48.     var i, len, out;  
  49.  
  50.     len = str.length;  
  51.     i = 0;  
  52.     out = "";  
  53.     while(i < len) {  
  54.     /* c1 */  
  55.     do {  
  56.         c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff];  
  57.     } while(i < len && c1 == -1);  
  58.     if(c1 == -1)  
  59.         break;  
  60.  
  61.     /* c2 */  
  62.     do {  
  63.         c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff];  
  64.     } while(i < len && c2 == -1);  
  65.     if(c2 == -1)  
  66.         break;  
  67.  
  68.     out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));  
  69.  
  70.     /* c3 */  
  71.     do {  
  72.         c3 = str.charCodeAt(i++) & 0xff;  
  73.         if(c3 == 61)  
  74.         return out;  
  75.         c3 = base64DecodeChars[c3];  
  76.     } while(i < len && c3 == -1);  
  77.     if(c3 == -1)  
  78.         break;  
  79.  
  80.     out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));  
  81.  
  82.     /* c4 */  
  83.     do {  
  84.         c4 = str.charCodeAt(i++) & 0xff;  
  85.         if(c4 == 61)  
  86.         return out;  
  87.         c4 = base64DecodeChars[c4];  
  88.     } while(i < len && c4 == -1);  
  89.     if(c4 == -1)  
  90.         break;  
  91.     out += String.fromCharCode(((c3 & 0x03) << 6) | c4);  
  92.     }  
  93.     return out;  
  94. }  
  95.  
  96. function utf16to8(str) {  
  97.     var out, i, len, c;  
  98.  
  99.     out = "";  
  100.     len = str.length;  
  101.     for(i = 0; i < len; i++) {  
  102.     c = str.charCodeAt(i);  
  103.     if ((c >= 0x0001) && (c <= 0x007F)) {  
  104.         out += str.charAt(i);  
  105.     } else if (c > 0x07FF) {  
  106.         out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));  
  107.         out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));  
  108.         out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));  
  109.     } else {  
  110.         out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));  
  111.         out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));  
  112.     }  
  113.     }  
  114.     return out;  
  115. }  
  116.  
  117. function utf8to16(str) {  
  118.     var out, i, len, c;  
  119.     var char2, char3;  
  120.  
  121.     out = "";  
  122.     len = str.length;  
  123.     i = 0;  
  124.     while(i < len) {  
  125.     c = str.charCodeAt(i++);  
  126.     switch(c >> 4)  
  127.     {  
  128.       case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:  
  129.         // 0xxxxxxx  
  130.         out += str.charAt(i-1);  
  131.         break;  
  132.       case 12: case 13:  
  133.         // 110x xxxx 10xx xxxx  
  134.         char2 = str.charCodeAt(i++);  
  135.         out += String.fromCharCode(((c & 0x1F) << 6) | (char2 & 0x3F));  
  136.         break;  
  137.       case 14:  
  138.         // 1110 xxxx 10xx xxxx 10xx xxxx  
  139.         char2 = str.charCodeAt(i++);  
  140.         char3 = str.charCodeAt(i++);  
  141.         out += String.fromCharCode(((c & 0x0F) << 12) |  
  142.                        ((char2 & 0x3F) << 6) |  
  143.                        ((char3 & 0x3F) << 0));  
  144.         break;  
  145.     }  
  146.     }  
  147.  
  148.     return out;  
  149. }  
  150.  
  151.  
  152. function doit() {  
  153.     var f = document.f  
  154.     f.output.value = base64encode(utf16to8(f.source.value))  
  155.     f.decode.value = utf8to16(base64decode(f.output.value))  
  156. }  

 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器