非常流行的javascript的md5加密

本文提供了一种使用JavaScript实现的MD5加密方法,通过简单的HTML页面演示如何对输入字符串进行MD5加密,并提供了完整的源代码。
 在网上看到的javascript的MD5加密,看比较好,就摘录了,供参考
  1None.gif<HTML>
  2None.gif
  3None.gif<HEAD>
  4None.gif
  5None.gif<META http-equiv='Content-Type' content='text/html; charset=gb2312'>
  6None.gif
  7None.gif<TITLE>非常流行的JS的md5加密办法</TITLE>
  8None.gif
  9None.gif</HEAD>
 10None.gif
 11None.gif<BODY >
 12None.gif
 13None.gif
 14None.gif
 15None.gif<input id=test value=webasp>
 16None.gif
 17None.gif<input type=button value=md5 onclick="alert(hex_md5(test.value))">
 18None.gif
 19None.gif
 20None.gif
 21ExpandedBlockStart.gifContractedBlock.gif<script>dot.gif
 22InBlock.gif
 23ExpandedSubBlockStart.gifContractedSubBlock.gifvar hexcase = 0;  /**//* hex output format. 0 - lowercase; 1 - uppercase        */
 24InBlock.gif
 25ExpandedSubBlockStart.gifContractedSubBlock.gifvar b64pad  = ""/**//* base-64 pad character. "=" for strict RFC compliance   */
 26InBlock.gif
 27ExpandedSubBlockStart.gifContractedSubBlock.gifvar chrsz   = 8;  /**//* bits per input character. 8 - ASCII; 16 - Unicode      */
 28InBlock.gif
 29InBlock.gif
 30InBlock.gif
 31ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
 32InBlock.gif
 33InBlock.gif * These are the functions you'll usually want to call
 34InBlock.gif
 35InBlock.gif * They take string arguments and return either hex or base-64 encoded strings
 36InBlock.gif
 37ExpandedSubBlockEnd.gif */

 38InBlock.gif
 39ExpandedSubBlockStart.gifContractedSubBlock.giffunction hex_md5(s)dot.gifreturn binl2hex(core_md5(str2binl(s), s.length * chrsz));}
 40InBlock.gif
 41ExpandedSubBlockStart.gifContractedSubBlock.giffunction b64_md5(s)dot.gifreturn binl2b64(core_md5(str2binl(s), s.length * chrsz));}
 42InBlock.gif
 43ExpandedSubBlockStart.gifContractedSubBlock.giffunction hex_hmac_md5(key, data) dot.gifreturn binl2hex(core_hmac_md5(key, data)); }
 44InBlock.gif
 45ExpandedSubBlockStart.gifContractedSubBlock.giffunction b64_hmac_md5(key, data) dot.gifreturn binl2b64(core_hmac_md5(key, data)); }
 46InBlock.gif
 47InBlock.gif
 48InBlock.gif
 49ExpandedSubBlockStart.gifContractedSubBlock.gif/**//* Backwards compatibility - same as hex_md5() */
 50InBlock.gif
 51ExpandedSubBlockStart.gifContractedSubBlock.giffunction calcMD5(s)dot.gifreturn binl2hex(core_md5(str2binl(s), s.length * chrsz));}
 52InBlock.gif
 53InBlock.gif
 54InBlock.gif
 55ExpandedSubBlockStart.gifContractedSubBlock.gif/**//* 
 56InBlock.gif
 57InBlock.gif * Perform a simple self-test to see if the VM is working 
 58InBlock.gif
 59ExpandedSubBlockEnd.gif */

 60InBlock.gif
 61InBlock.giffunction md5_vm_test()
 62InBlock.gif
 63ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
 64InBlock.gif
 65InBlock.gif  return hex_md5("abc"== "900150983cd24fb0d6963f7d28e17f72";
 66InBlock.gif
 67ExpandedSubBlockEnd.gif}

 68InBlock.gif
 69InBlock.gif
 70InBlock.gif
 71ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
 72InBlock.gif
 73InBlock.gif * Calculate the MD5 of an array of little-endian words, and a bit length
 74InBlock.gif
 75ExpandedSubBlockEnd.gif */

 76InBlock.gif
 77InBlock.giffunction core_md5(x, len)
 78InBlock.gif
 79ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
 80InBlock.gif
 81ExpandedSubBlockStart.gifContractedSubBlock.gif  /**//* append padding */
 82InBlock.gif
 83InBlock.gif  x[len >> 5|= 0x80 << ((len) % 32);
 84InBlock.gif
 85InBlock.gif  x[(((len + 64>>> 9<< 4+ 14= len;
 86InBlock.gif
 87InBlock.gif  
 88InBlock.gif
 89InBlock.gif  var a =  1732584193;
 90InBlock.gif
 91InBlock.gif  var b = -271733879;
 92InBlock.gif
 93InBlock.gif  var c = -1732584194;
 94InBlock.gif
 95InBlock.gif  var d =  271733878;
 96InBlock.gif
 97InBlock.gif
 98InBlock.gif
 99InBlock.gif  for(var i = 0; i < x.length; i += 16)
100InBlock.gif
101ExpandedSubBlockStart.gifContractedSubBlock.gif  dot.gif{
102InBlock.gif
103InBlock.gif    var olda = a;
104InBlock.gif
105InBlock.gif    var oldb = b;
106InBlock.gif
107InBlock.gif    var oldc = c;
108InBlock.gif
109InBlock.gif    var oldd = d;
110InBlock.gif
111InBlock.gif 
112InBlock.gif
113InBlock.gif    a = md5_ff(a, b, c, d, x[i+ 0], 7 , -680876936);
114InBlock.gif
115InBlock.gif    d = md5_ff(d, a, b, c, x[i+ 1], 12-389564586);
116InBlock.gif
117InBlock.gif    c = md5_ff(c, d, a, b, x[i+ 2], 17,  606105819);
118InBlock.gif
119InBlock.gif    b = md5_ff(b, c, d, a, x[i+ 3], 22-1044525330);
120InBlock.gif
121InBlock.gif    a = md5_ff(a, b, c, d, x[i+ 4], 7 , -176418897);
122InBlock.gif
123InBlock.gif    d = md5_ff(d, a, b, c, x[i+ 5], 12,  1200080426);
124InBlock.gif
125InBlock.gif    c = md5_ff(c, d, a, b, x[i+ 6], 17-1473231341);
126InBlock.gif
127InBlock.gif    b = md5_ff(b, c, d, a, x[i+ 7], 22-45705983);
128InBlock.gif
129InBlock.gif    a = md5_ff(a, b, c, d, x[i+ 8], 7 ,  1770035416);
130InBlock.gif
131InBlock.gif    d = md5_ff(d, a, b, c, x[i+ 9], 12-1958414417);
132InBlock.gif
133InBlock.gif    c = md5_ff(c, d, a, b, x[i+10], 17-42063);
134InBlock.gif
135InBlock.gif    b = md5_ff(b, c, d, a, x[i+11], 22-1990404162);
136InBlock.gif
137InBlock.gif    a = md5_ff(a, b, c, d, x[i+12], 7 ,  1804603682);
138InBlock.gif
139InBlock.gif    d = md5_ff(d, a, b, c, x[i+13], 12-40341101);
140InBlock.gif
141InBlock.gif    c = md5_ff(c, d, a, b, x[i+14], 17-1502002290);
142InBlock.gif
143InBlock.gif    b = md5_ff(b, c, d, a, x[i+15], 22,  1236535329);
144InBlock.gif
145InBlock.gif
146InBlock.gif
147InBlock.gif    a = md5_gg(a, b, c, d, x[i+ 1], 5 , -165796510);
148InBlock.gif
149InBlock.gif    d = md5_gg(d, a, b, c, x[i+ 6], 9 , -1069501632);
150InBlock.gif
151InBlock.gif    c = md5_gg(c, d, a, b, x[i+11], 14,  643717713);
152InBlock.gif
153InBlock.gif    b = md5_gg(b, c, d, a, x[i+ 0], 20-373897302);
154InBlock.gif
155InBlock.gif    a = md5_gg(a, b, c, d, x[i+ 5], 5 , -701558691);
156InBlock.gif
157InBlock.gif    d = md5_gg(d, a, b, c, x[i+10], 9 ,  38016083);
158InBlock.gif
159InBlock.gif    c = md5_gg(c, d, a, b, x[i+15], 14-660478335);
160InBlock.gif
161InBlock.gif    b = md5_gg(b, c, d, a, x[i+ 4], 20-405537848);
162InBlock.gif
163InBlock.gif    a = md5_gg(a, b, c, d, x[i+ 9], 5 ,  568446438);
164InBlock.gif
165InBlock.gif    d = md5_gg(d, a, b, c, x[i+14], 9 , -1019803690);
166InBlock.gif
167InBlock.gif    c = md5_gg(c, d, a, b, x[i+ 3], 14-187363961);
168InBlock.gif
169InBlock.gif    b = md5_gg(b, c, d, a, x[i+ 8], 20,  1163531501);
170InBlock.gif
171InBlock.gif    a = md5_gg(a, b, c, d, x[i+13], 5 , -1444681467);
172InBlock.gif
173InBlock.gif    d = md5_gg(d, a, b, c, x[i+ 2], 9 , -51403784);
174InBlock.gif
175InBlock.gif    c = md5_gg(c, d, a, b, x[i+ 7], 14,  1735328473);
176InBlock.gif
177InBlock.gif    b = md5_gg(b, c, d, a, x[i+12], 20-1926607734);
178InBlock.gif
179InBlock.gif
180InBlock.gif
181InBlock.gif    a = md5_hh(a, b, c, d, x[i+ 5], 4 , -378558);
182InBlock.gif
183InBlock.gif    d = md5_hh(d, a, b, c, x[i+ 8], 11-2022574463);
184InBlock.gif
185InBlock.gif    c = md5_hh(c, d, a, b, x[i+11], 16,  1839030562);
186InBlock.gif
187InBlock.gif    b = md5_hh(b, c, d, a, x[i+14], 23-35309556);
188InBlock.gif
189InBlock.gif    a = md5_hh(a, b, c, d, x[i+ 1], 4 , -1530992060);
190InBlock.gif
191InBlock.gif    d = md5_hh(d, a, b, c, x[i+ 4], 11,  1272893353);
192InBlock.gif
193InBlock.gif    c = md5_hh(c, d, a, b, x[i+ 7], 16-155497632);
194InBlock.gif
195InBlock.gif    b = md5_hh(b, c, d, a, x[i+10], 23-1094730640);
196InBlock.gif
197InBlock.gif    a = md5_hh(a, b, c, d, x[i+13], 4 ,  681279174);
198InBlock.gif
199InBlock.gif    d = md5_hh(d, a, b, c, x[i+ 0], 11-358537222);
200InBlock.gif
201InBlock.gif    c = md5_hh(c, d, a, b, x[i+ 3], 16-722521979);
202InBlock.gif
203InBlock.gif    b = md5_hh(b, c, d, a, x[i+ 6], 23,  76029189);
204InBlock.gif
205InBlock.gif    a = md5_hh(a, b, c, d, x[i+ 9], 4 , -640364487);
206InBlock.gif
207InBlock.gif    d = md5_hh(d, a, b, c, x[i+12], 11-421815835);
208InBlock.gif
209InBlock.gif    c = md5_hh(c, d, a, b, x[i+15], 16,  530742520);
210InBlock.gif
211InBlock.gif    b = md5_hh(b, c, d, a, x[i+ 2], 23-995338651);
212InBlock.gif
213InBlock.gif
214InBlock.gif
215InBlock.gif    a = md5_ii(a, b, c, d, x[i+ 0], 6 , -198630844);
216InBlock.gif
217InBlock.gif    d = md5_ii(d, a, b, c, x[i+ 7], 10,  1126891415);
218InBlock.gif
219InBlock.gif    c = md5_ii(c, d, a, b, x[i+14], 15-1416354905);
220InBlock.gif
221InBlock.gif    b = md5_ii(b, c, d, a, x[i+ 5], 21-57434055);
222InBlock.gif
223InBlock.gif    a = md5_ii(a, b, c, d, x[i+12], 6 ,  1700485571);
224InBlock.gif
225InBlock.gif    d = md5_ii(d, a, b, c, x[i+ 3], 10-1894986606);
226InBlock.gif
227InBlock.gif    c = md5_ii(c, d, a, b, x[i+10], 15-1051523);
228InBlock.gif
229InBlock.gif    b = md5_ii(b, c, d, a, x[i+ 1], 21-2054922799);
230InBlock.gif
231InBlock.gif    a = md5_ii(a, b, c, d, x[i+ 8], 6 ,  1873313359);
232InBlock.gif
233InBlock.gif    d = md5_ii(d, a, b, c, x[i+15], 10-30611744);
234InBlock.gif
235InBlock.gif    c = md5_ii(c, d, a, b, x[i+ 6], 15-1560198380);
236InBlock.gif
237InBlock.gif    b = md5_ii(b, c, d, a, x[i+13], 21,  1309151649);
238InBlock.gif
239InBlock.gif    a = md5_ii(a, b, c, d, x[i+ 4], 6 , -145523070);
240InBlock.gif
241InBlock.gif    d = md5_ii(d, a, b, c, x[i+11], 10-1120210379);
242InBlock.gif
243InBlock.gif    c = md5_ii(c, d, a, b, x[i+ 2], 15,  718787259);
244InBlock.gif
245InBlock.gif    b = md5_ii(b, c, d, a, x[i+ 9], 21-343485551);
246InBlock.gif
247InBlock.gif
248InBlock.gif
249InBlock.gif    a = safe_add(a, olda);
250InBlock.gif
251InBlock.gif    b = safe_add(b, oldb);
252InBlock.gif
253InBlock.gif    c = safe_add(c, oldc);
254InBlock.gif
255InBlock.gif    d = safe_add(d, oldd);
256InBlock.gif
257ExpandedSubBlockEnd.gif  }

258InBlock.gif
259InBlock.gif  return Array(a, b, c, d);
260InBlock.gif
261InBlock.gif  
262InBlock.gif
263ExpandedSubBlockEnd.gif}

264InBlock.gif
265InBlock.gif
266InBlock.gif
267ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
268InBlock.gif
269InBlock.gif * These functions implement the four basic operations the algorithm uses.
270InBlock.gif
271ExpandedSubBlockEnd.gif */

272InBlock.gif
273InBlock.giffunction md5_cmn(q, a, b, x, s, t)
274InBlock.gif
275ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
276InBlock.gif
277InBlock.gif  return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s),b);
278InBlock.gif
279ExpandedSubBlockEnd.gif}

280InBlock.gif
281InBlock.giffunction md5_ff(a, b, c, d, x, s, t)
282InBlock.gif
283ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
284InBlock.gif
285InBlock.gif  return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t);
286InBlock.gif
287ExpandedSubBlockEnd.gif}

288InBlock.gif
289InBlock.giffunction md5_gg(a, b, c, d, x, s, t)
290InBlock.gif
291ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
292InBlock.gif
293InBlock.gif  return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t);
294InBlock.gif
295ExpandedSubBlockEnd.gif}

296InBlock.gif
297InBlock.giffunction md5_hh(a, b, c, d, x, s, t)
298InBlock.gif
299ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
300InBlock.gif
301InBlock.gif  return md5_cmn(b ^ c ^ d, a, b, x, s, t);
302InBlock.gif
303ExpandedSubBlockEnd.gif}

304InBlock.gif
305InBlock.giffunction md5_ii(a, b, c, d, x, s, t)
306InBlock.gif
307ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
308InBlock.gif
309InBlock.gif  return md5_cmn(c ^ (b | (~d)), a, b, x, s, t);
310InBlock.gif
311ExpandedSubBlockEnd.gif}

312InBlock.gif
313InBlock.gif
314InBlock.gif
315ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
316InBlock.gif
317InBlock.gif * Calculate the HMAC-MD5, of a key and some data
318InBlock.gif
319ExpandedSubBlockEnd.gif */

320InBlock.gif
321InBlock.giffunction core_hmac_md5(key, data)
322InBlock.gif
323ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
324InBlock.gif
325InBlock.gif  var bkey = str2binl(key);
326InBlock.gif
327InBlock.gif  if(bkey.length > 16) bkey = core_md5(bkey, key.length * chrsz);
328InBlock.gif
329InBlock.gif
330InBlock.gif
331InBlock.gif  var ipad = Array(16), opad = Array(16);
332InBlock.gif
333InBlock.gif  for(var i = 0; i < 16; i++
334InBlock.gif
335ExpandedSubBlockStart.gifContractedSubBlock.gif  dot.gif{
336InBlock.gif
337InBlock.gif    ipad[i] = bkey[i] ^ 0x36363636;
338InBlock.gif
339InBlock.gif    opad[i] = bkey[i] ^ 0x5C5C5C5C;
340InBlock.gif
341ExpandedSubBlockEnd.gif  }

342InBlock.gif
343InBlock.gif
344InBlock.gif
345InBlock.gif  var hash = core_md5(ipad.concat(str2binl(data)), 512 + data.length * chrsz);
346InBlock.gif
347InBlock.gif  return core_md5(opad.concat(hash), 512 + 128);
348InBlock.gif
349ExpandedSubBlockEnd.gif}

350InBlock.gif
351InBlock.gif
352InBlock.gif
353ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
354InBlock.gif
355InBlock.gif * Add integers, wrapping at 2^32. This uses 16-bit operations internally
356InBlock.gif
357InBlock.gif * to work around bugs in some JS interpreters.
358InBlock.gif
359ExpandedSubBlockEnd.gif */

360InBlock.gif
361InBlock.giffunction safe_add(x, y)
362InBlock.gif
363ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
364InBlock.gif
365InBlock.gif  var lsw = (x & 0xFFFF+ (y & 0xFFFF);
366InBlock.gif
367InBlock.gif  var msw = (x >> 16+ (y >> 16+ (lsw >> 16);
368InBlock.gif
369InBlock.gif  return (msw << 16| (lsw & 0xFFFF);
370InBlock.gif
371ExpandedSubBlockEnd.gif}

372InBlock.gif
373InBlock.gif
374InBlock.gif
375ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
376InBlock.gif
377InBlock.gif * Bitwise rotate a 32-bit number to the left.
378InBlock.gif
379ExpandedSubBlockEnd.gif */

380InBlock.gif
381InBlock.giffunction bit_rol(num, cnt)
382InBlock.gif
383ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
384InBlock.gif
385InBlock.gif  return (num << cnt) | (num >>> (32 - cnt));
386InBlock.gif
387ExpandedSubBlockEnd.gif}

388InBlock.gif
389InBlock.gif
390InBlock.gif
391ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
392InBlock.gif
393InBlock.gif * Convert a string to an array of little-endian words
394InBlock.gif
395InBlock.gif * If chrsz is ASCII, characters >255 have their hi-byte silently ignored.
396InBlock.gif
397ExpandedSubBlockEnd.gif */

398InBlock.gif
399InBlock.giffunction str2binl(str)
400InBlock.gif
401ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
402InBlock.gif
403InBlock.gif  var bin = Array();
404InBlock.gif
405InBlock.gif  var mask = (1 << chrsz) - 1;
406InBlock.gif
407InBlock.gif  for(var i = 0; i < str.length * chrsz; i += chrsz)
408InBlock.gif
409InBlock.gif    bin[i>>5|= (str.charCodeAt(i / chrsz) & mask) << (i%32);
410InBlock.gif
411InBlock.gif  return bin;
412InBlock.gif
413ExpandedSubBlockEnd.gif}

414InBlock.gif
415InBlock.gif
416InBlock.gif
417ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
418InBlock.gif
419InBlock.gif * Convert an array of little-endian words to a hex string.
420InBlock.gif
421ExpandedSubBlockEnd.gif */

422InBlock.gif
423InBlock.giffunction binl2hex(binarray)
424InBlock.gif
425ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
426InBlock.gif
427InBlock.gif  var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef";
428InBlock.gif
429InBlock.gif  var str = "";
430InBlock.gif
431InBlock.gif  for(var i = 0; i < binarray.length * 4; i++)
432InBlock.gif
433ExpandedSubBlockStart.gifContractedSubBlock.gif  dot.gif{
434InBlock.gif
435InBlock.gif    str += hex_tab.charAt((binarray[i>>2>> ((i%4)*8+4)) & 0xF+
436InBlock.gif
437InBlock.gif           hex_tab.charAt((binarray[i>>2>> ((i%4)*8  )) & 0xF);
438InBlock.gif
439ExpandedSubBlockEnd.gif  }

440InBlock.gif
441InBlock.gif  return str;
442InBlock.gif
443ExpandedSubBlockEnd.gif}

444InBlock.gif
445InBlock.gif
446InBlock.gif
447ExpandedSubBlockStart.gifContractedSubBlock.gif/**//*
448InBlock.gif
449InBlock.gif * Convert an array of little-endian words to a base-64 string
450InBlock.gif
451ExpandedSubBlockEnd.gif */

452InBlock.gif
453InBlock.giffunction binl2b64(binarray)
454InBlock.gif
455ExpandedSubBlockStart.gifContractedSubBlock.gifdot.gif{
456InBlock.gif
457InBlock.gif  var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
458InBlock.gif
459InBlock.gif  var str = "";
460InBlock.gif
461InBlock.gif  for(var i = 0; i < binarray.length * 4; i += 3)
462InBlock.gif
463ExpandedSubBlockStart.gifContractedSubBlock.gif  dot.gif{
464InBlock.gif
465InBlock.gif    var triplet = (((binarray[i   >> 2>> 8 * ( i   %4)) & 0xFF<< 16)
466InBlock.gif
467InBlock.gif                | (((binarray[i+1 >> 2>> 8 * ((i+1)%4)) & 0xFF<< 8 )
468InBlock.gif
469InBlock.gif                |  ((binarray[i+2 >> 2>> 8 * ((i+2)%4)) & 0xFF);
470InBlock.gif
471InBlock.gif    for(var j = 0; j < 4; j++)
472InBlock.gif
473ExpandedSubBlockStart.gifContractedSubBlock.gif    dot.gif{
474InBlock.gif
475InBlock.gif      if(i * 8 + j * 6 > binarray.length * 32) str += b64pad;
476InBlock.gif
477InBlock.gif      else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F);
478InBlock.gif
479ExpandedSubBlockEnd.gif    }

480InBlock.gif
481ExpandedSubBlockEnd.gif  }

482InBlock.gif
483InBlock.gif  return str;
484InBlock.gif
485ExpandedSubBlockEnd.gif}

486ExpandedBlockEnd.gif
487None.gif
</script> 
488None.gif
489None.gif
490None.gif
491None.gif</BODY></HTML>
492None.gif

转载于:https://www.cnblogs.com/conquer/archive/2006/11/18/564432.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值