MD5加密算法

function coreMD5(x)    
    {    
      var a =  1732584193    
      var b = -271733879    
      var c = -1732584194    
      var d =  271733878    
        
      for(var i = 0; i < x.length; i += 16)    
      {    
        var olda = a    
        var oldb = b    
        var oldc = c    
        var oldd = d    
        
        a = ff(a, b, c, d, x[i+ 0], 7 , -680876936)    
        d = ff(d, a, b, c, x[i+ 1], 12, -389564586)    
        c = ff(c, d, a, b, x[i+ 2], 17,  606105819)    
        b = ff(b, c, d, a, x[i+ 3], 22, -1044525330)    
        a = ff(a, b, c, d, x[i+ 4], 7 , -176418897)    
        d = ff(d, a, b, c, x[i+ 5], 12,  1200080426)    
        c = ff(c, d, a, b, x[i+ 6], 17, -1473231341)    
        b = ff(b, c, d, a, x[i+ 7], 22, -45705983)    
        a = ff(a, b, c, d, x[i+ 8], 7 ,  1770035416)    
        d = ff(d, a, b, c, x[i+ 9], 12, -1958414417)    
        c = ff(c, d, a, b, x[i+10], 17, -42063)    
        b = ff(b, c, d, a, x[i+11], 22, -1990404162)    
        a = ff(a, b, c, d, x[i+12], 7 ,  1804603682)    
        d = ff(d, a, b, c, x[i+13], 12, -40341101)    
        c = ff(c, d, a, b, x[i+14], 17, -1502002290)    
        b = ff(b, c, d, a, x[i+15], 22,  1236535329)    
        
        a = gg(a, b, c, d, x[i+ 1], 5 , -165796510)    
        d = gg(d, a, b, c, x[i+ 6], 9 , -1069501632)    
        c = gg(c, d, a, b, x[i+11], 14,  643717713)    
        b = gg(b, c, d, a, x[i+ 0], 20, -373897302)    
        a = gg(a, b, c, d, x[i+ 5], 5 , -701558691)    
        d = gg(d, a, b, c, x[i+10], 9 ,  38016083)    
        c = gg(c, d, a, b, x[i+15], 14, -660478335)    
        b = gg(b, c, d, a, x[i+ 4], 20, -405537848)    
        a = gg(a, b, c, d, x[i+ 9], 5 ,  568446438)    
        d = gg(d, a, b, c, x[i+14], 9 , -1019803690)    
        c = gg(c, d, a, b, x[i+ 3], 14, -187363961)    
        b = gg(b, c, d, a, x[i+ 8], 20,  1163531501)    
        a = gg(a, b, c, d, x[i+13], 5 , -1444681467)    
        d = gg(d, a, b, c, x[i+ 2], 9 , -51403784)    
        c = gg(c, d, a, b, x[i+ 7], 14,  1735328473)    
        b = gg(b, c, d, a, x[i+12], 20, -1926607734)    
        
        a = hh(a, b, c, d, x[i+ 5], 4 , -378558)    
        d = hh(d, a, b, c, x[i+ 8], 11, -2022574463)    
        c = hh(c, d, a, b, x[i+11], 16,  1839030562)    
        b = hh(b, c, d, a, x[i+14], 23, -35309556)    
        a = hh(a, b, c, d, x[i+ 1], 4 , -1530992060)    
        d = hh(d, a, b, c, x[i+ 4], 11,  1272893353)    
        c = hh(c, d, a, b, x[i+ 7], 16, -155497632)    
        b = hh(b, c, d, a, x[i+10], 23, -1094730640)    
        a = hh(a, b, c, d, x[i+13], 4 ,  681279174)    
        d = hh(d, a, b, c, x[i+ 0], 11, -358537222)    
        c = hh(c, d, a, b, x[i+ 3], 16, -722521979)    
        b = hh(b, c, d, a, x[i+ 6], 23,  76029189)    
        a = hh(a, b, c, d, x[i+ 9], 4 , -640364487)    
        d = hh(d, a, b, c, x[i+12], 11, -421815835)    
        c = hh(c, d, a, b, x[i+15], 16,  530742520)    
        b = hh(b, c, d, a, x[i+ 2], 23, -995338651)    
        
        a = ii(a, b, c, d, x[i+ 0], 6 , -198630844)    
        d = ii(d, a, b, c, x[i+ 7], 10,  1126891415)    
        c = ii(c, d, a, b, x[i+14], 15, -1416354905)    
        b = ii(b, c, d, a, x[i+ 5], 21, -57434055)    
        a = ii(a, b, c, d, x[i+12], 6 ,  1700485571)    
        d = ii(d, a, b, c, x[i+ 3], 10, -1894986606)    
        c = ii(c, d, a, b, x[i+10], 15, -1051523)    
        b = ii(b, c, d, a, x[i+ 1], 21, -2054922799)    
        a = ii(a, b, c, d, x[i+ 8], 6 ,  1873313359)    
        d = ii(d, a, b, c, x[i+15], 10, -30611744)    
        c = ii(c, d, a, b, x[i+ 6], 15, -1560198380)    
        b = ii(b, c, d, a, x[i+13], 21,  1309151649)    
        a = ii(a, b, c, d, x[i+ 4], 6 , -145523070)    
        d = ii(d, a, b, c, x[i+11], 10, -1120210379)    
        c = ii(c, d, a, b, x[i+ 2], 15,  718787259)    
        b = ii(b, c, d, a, x[i+ 9], 21, -343485551)    
        
        a = safe_add(a, olda)    
        b = safe_add(b, oldb)    
        c = safe_add(c, oldc)    
        d = safe_add(d, oldd)    
      }    
      return [a, b, c, d]    
    }    
        
    /*  
     * Convert an array of little-endian words to a hex string.  
     */    
    function binl2hex(binarray)    
    {    
      var hex_tab = "0123456789abcdef"    
      var str = ""    
      for(var i = 0; i < binarray.length * 4; i++)    
      {    
        str += hex_tab.charAt((binarray[i>>2] >> ((i%4)*8+4)) & 0xF) +    
               hex_tab.charAt((binarray[i>>2] >> ((i%4)*8)) & 0xF)    
      }    
      return str    
    }    
        
    /*  
     * Convert an array of little-endian words to a base64 encoded string.  
     */    
    function binl2b64(binarray)    
    {    
      var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"    
      var str = ""    
      for(var i = 0; i < binarray.length * 32; i += 6)    
      {    
        str += tab.charAt(((binarray[i>>5] << (i%32)) & 0x3F) |    
                          ((binarray[i>>5+1] >> (32-i%32)) & 0x3F))    
      }    
      return str    
    }    
        
    /*  
     * Convert an 8-bit character string to a sequence of 16-word blocks, stored  
     * as an array, and append appropriate padding for MD4/5 calculation.  
     * If any of the characters are >255, the high byte is silently ignored.  
     */    
    function str2binl(str)    
    {    
      var nblk = ((str.length + 8) >> 6) + 1 // number of 16-word blocks    
      var blks = new Array(nblk * 16)    
      for(var i = 0; i < nblk * 16; i++) blks[i] = 0    
      for(var i = 0; i < str.length; i++)    
        blks[i>>2] |= (str.charCodeAt(i) & 0xFF) << ((i%4) * 8)    
      blks[i>>2] |= 0x80 << ((i%4) * 8)    
      blks[nblk*16-2] = str.length * 8    
      return blks    
    }    
        
    /*  
     * Convert a wide-character string to a sequence of 16-word blocks, stored as  
     * an array, and append appropriate padding for MD4/5 calculation.  
     */    
    function strw2binl(str)    
    {    
      var nblk = ((str.length + 4) >> 5) + 1 // number of 16-word blocks    
      var blks = new Array(nblk * 16)    
      for(var i = 0; i < nblk * 16; i++) blks[i] = 0    
      for(var i = 0; i < str.length; i++)    
        blks[i>>1] |= str.charCodeAt(i) << ((i%2) * 16)    
      blks[i>>1] |= 0x80 << ((i%2) * 16)    
      blks[nblk*16-2] = str.length * 16    
      return blks    
    }    
        
    /*  
     * External interface  
     */    
    function hexMD5 (str) { return binl2hex(coreMD5( str2binl(str))) }    
    function hexMD5w(str) { return binl2hex(coreMD5(strw2binl(str))) }    
    function b64MD5 (str) { return binl2b64(coreMD5( str2binl(str))) }    
    function b64MD5w(str) { return binl2b64(coreMD5(strw2binl(str))) }    
    /* Backward compatibility */    
    function calcMD5(str) { return binl2hex(coreMD5( str2binl(str))) }    
    module.exports = {    
      hexMD5: hexMD5    
    }    

使用方法:1.引入js文件。
2.hexMD5("內(nèi)容");

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末秤涩,一起剝皮案震驚了整個(gè)濱河市闺属,隨后出現(xiàn)的幾起案子村刨,更是在濱河造成了極大的恐慌返咱,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件襟企,死亡現(xiàn)場(chǎng)離奇詭異肪获,居然都是意外死亡寝凌,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門孝赫,熙熙樓的掌柜王于貴愁眉苦臉地迎上來硫兰,“玉大人,你說我怎么就攤上這事寒锚〗儆常” “怎么了违孝?”我有些...
    開封第一講書人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)泳赋。 經(jīng)常有香客問我雌桑,道長(zhǎng),這世上最難降的妖魔是什么祖今? 我笑而不...
    開封第一講書人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任校坑,我火速辦了婚禮,結(jié)果婚禮上千诬,老公的妹妹穿的比我還像新娘耍目。我一直安慰自己,他們只是感情好徐绑,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開白布邪驮。 她就那樣靜靜地躺著,像睡著了一般傲茄。 火紅的嫁衣襯著肌膚如雪毅访。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,772評(píng)論 1 290
  • 那天盘榨,我揣著相機(jī)與錄音喻粹,去河邊找鬼。 笑死草巡,一個(gè)胖子當(dāng)著我的面吹牛守呜,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播山憨,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼查乒,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了萍歉?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤档桃,失蹤者是張志新(化名)和其女友劉穎枪孩,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體藻肄,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蔑舞,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了嘹屯。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片攻询。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖州弟,靈堂內(nèi)的尸體忽然破棺而出钧栖,到底是詐尸還是另有隱情低零,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布拯杠,位于F島的核電站掏婶,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏潭陪。R本人自食惡果不足惜雄妥,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望依溯。 院中可真熱鬧老厌,春花似錦、人聲如沸黎炉。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)拜隧。三九已至宿百,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間洪添,已是汗流浹背垦页。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留干奢,地道東北人痊焊。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像忿峻,于是被迫代替她去往敵國(guó)和親薄啥。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容