C++_使用C++代码进行MD5加密

  1. //MD5.h   
  2. #ifndef BZF_MD5_H  
  3. #define BZF_MD5_H  
  4.   
  5. #include <string>  
  6. #include <iostream>  
  7.   
  8.   
  9. // a small class for calculating MD5 hashes of strings or byte arrays  
  10. // it is not meant to be fast or secure  
  11. //  
  12. // usage: 1) feed it blocks of uchars with update()  
  13. //      2) finalize()  
  14. //      3) get hexdigest() string  
  15. //      or  
  16. //      MD5(std::string).hexdigest()  
  17. //  
  18. // assumes that char is 8 bit and int is 32 bit  
  19. class MD5  
  20. {  
  21. public:  
  22.     typedef unsigned int size_type; // must be 32bit  
  23.   
  24.     MD5();  
  25.     MD5(const std::string& text);  
  26.     void update(const unsigned char *buf, size_type length);  
  27.     void update(const char *buf, size_type length);  
  28.     MD5& finalize();  
  29.     std::string hexdigest() const;  
  30.     friend std::ostream& operator<<(std::ostream&, MD5 md5);  
  31.   
  32. private:  
  33.     void init();  
  34.     typedef unsigned char uint1; //  8bit  
  35.     typedef unsigned int uint4;  // 32bit  
  36.     enum { blocksize = 64 }; // VC6 won't eat a const static int here  
  37.   
  38.     void transform(const uint1 block[blocksize]);  
  39.     static void decode(uint4 output[], const uint1 input[], size_type len);  
  40.     static void encode(uint1 output[], const uint4 input[], size_type len);  
  41.   
  42.     bool finalized;  
  43.     uint1 buffer[blocksize]; // bytes that didn't fit in last 64 byte chunk  
  44.     uint4 count[2];   // 64bit counter for number of bits (lo, hi)  
  45.     uint4 state[4];   // digest so far  
  46.     uint1 digest[16]; // the result  
  47.   
  48.     // low level logic operations  
  49.     static inline uint4 F(uint4 x, uint4 y, uint4 z);  
  50.     static inline uint4 G(uint4 x, uint4 y, uint4 z);  
  51.     static inline uint4 H(uint4 x, uint4 y, uint4 z);  
  52.     static inline uint4 I(uint4 x, uint4 y, uint4 z);  
  53.     static inline uint4 rotate_left(uint4 x, int n);  
  54.     static inline void FF(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  55.     static inline void GG(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  56.     static inline void HH(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  57.     static inline void II(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac);  
  58. };  
  59.   
  60. std::string md5(const std::string str);  
  61.   
  62. #endif  
  1. //MD5.cpp  
  2. /* MD5 
  3. converted to C++ class by Frank Thilo (thilo@unix-ag.org) 
  4. for bzflag (http://www.bzflag.org) 
  5.  
  6. based on: 
  7.  
  8. md5.h and md5.c 
  9. reference implemantion of RFC 1321 
  10.  
  11. Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All 
  12. rights reserved. 
  13.  
  14. License to copy and use this software is granted provided that it 
  15. is identified as the "RSA Data Security, Inc. MD5 Message-Digest 
  16. Algorithm" in all material mentioning or referencing this software 
  17. or this function. 
  18.  
  19. License is also granted to make and use derivative works provided 
  20. that such works are identified as "derived from the RSA Data 
  21. Security, Inc. MD5 Message-Digest Algorithm" in all material 
  22. mentioning or referencing the derived work. 
  23.  
  24. RSA Data Security, Inc. makes no representations concerning either 
  25. the merchantability of this software or the suitability of this 
  26. software for any particular purpose. It is provided "as is" 
  27. without express or implied warranty of any kind. 
  28.  
  29. These notices must be retained in any copies of any part of this 
  30. documentation and/or software. 
  31.  
  32. */  
  33.   
  34. /* interface header */  
  35. #include "MD5.h"  
  36.   
  37. /* system implementation headers */  
  38. #include <stdio.h>  
  39.   
  40.   
  41. // Constants for MD5Transform routine.  
  42. #define S11 7  
  43. #define S12 12  
  44. #define S13 17  
  45. #define S14 22  
  46. #define S21 5  
  47. #define S22 9  
  48. #define S23 14  
  49. #define S24 20  
  50. #define S31 4  
  51. #define S32 11  
  52. #define S33 16  
  53. #define S34 23  
  54. #define S41 6  
  55. #define S42 10  
  56. #define S43 15  
  57. #define S44 21  
  58.   
  59. ///  
  60.   
  61. // F, G, H and I are basic MD5 functions.  
  62. inline MD5::uint4 MD5::F(uint4 x, uint4 y, uint4 z) {  
  63.     return x&y | ~x&z;  
  64. }  
  65.   
  66. inline MD5::uint4 MD5::G(uint4 x, uint4 y, uint4 z) {  
  67.     return x&z | y&~z;  
  68. }  
  69.   
  70. inline MD5::uint4 MD5::H(uint4 x, uint4 y, uint4 z) {  
  71.     return x^y^z;  
  72. }  
  73.   
  74. inline MD5::uint4 MD5::I(uint4 x, uint4 y, uint4 z) {  
  75.     return y ^ (x | ~z);  
  76. }  
  77.   
  78. // rotate_left rotates x left n bits.  
  79. inline MD5::uint4 MD5::rotate_left(uint4 x, int n) {  
  80.     return (x << n) | (x >> (32 - n));  
  81. }  
  82.   
  83. // FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.  
  84. // Rotation is separate from addition to prevent recomputation.  
  85. inline void MD5::FF(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  86.     a = rotate_left(a + F(b, c, d) + x + ac, s) + b;  
  87. }  
  88.   
  89. inline void MD5::GG(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  90.     a = rotate_left(a + G(b, c, d) + x + ac, s) + b;  
  91. }  
  92.   
  93. inline void MD5::HH(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  94.     a = rotate_left(a + H(b, c, d) + x + ac, s) + b;  
  95. }  
  96.   
  97. inline void MD5::II(uint4 &a, uint4 b, uint4 c, uint4 d, uint4 x, uint4 s, uint4 ac) {  
  98.     a = rotate_left(a + I(b, c, d) + x + ac, s) + b;  
  99. }  
  100.   
  101. //  
  102.   
  103. // default ctor, just initailize  
  104. MD5::MD5()  
  105. {  
  106.     init();  
  107. }  
  108.   
  109. //  
  110.   
  111. // nifty shortcut ctor, compute MD5 for string and finalize it right away  
  112. MD5::MD5(const std::string &text)  
  113. {  
  114.     init();  
  115.     update(text.c_str(), text.length());  
  116.     finalize();  
  117. }  
  118.   
  119. //  
  120.   
  121. void MD5::init()  
  122. {  
  123.     finalized = false;  
  124.   
  125.     count[0] = 0;  
  126.     count[1] = 0;  
  127.   
  128.     // load magic initialization constants.  
  129.     state[0] = 0x67452301;  
  130.     state[1] = 0xefcdab89;  
  131.     state[2] = 0x98badcfe;  
  132.     state[3] = 0x10325476;  
  133. }  
  134.   
  135. //  
  136.   
  137. // decodes input (unsigned char) into output (uint4). Assumes len is a multiple of 4.  
  138. void MD5::decode(uint4 output[], const uint1 input[], size_type len)  
  139. {  
  140.     for (unsigned int i = 0, j = 0; j < len; i++, j += 4)  
  141.         output[i] = ((uint4)input[j]) | (((uint4)input[j + 1]) << 8) |  
  142.         (((uint4)input[j + 2]) << 16) | (((uint4)input[j + 3]) << 24);  
  143. }  
  144.   
  145. //  
  146.   
  147. // encodes input (uint4) into output (unsigned char). Assumes len is  
  148. // a multiple of 4.  
  149. void MD5::encode(uint1 output[], const uint4 input[], size_type len)  
  150. {  
  151.     for (size_type i = 0, j = 0; j < len; i++, j += 4) {  
  152.         output[j] = input[i] & 0xff;  
  153.         output[j + 1] = (input[i] >> 8) & 0xff;  
  154.         output[j + 2] = (input[i] >> 16) & 0xff;  
  155.         output[j + 3] = (input[i] >> 24) & 0xff;  
  156.     }  
  157. }  
  158.   
  159. //  
  160.   
  161. // apply MD5 algo on a block  
  162. void MD5::transform(const uint1 block[blocksize])  
  163. {  
  164.     uint4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];  
  165.     decode(x, block, blocksize);  
  166.   
  167.     /* Round 1 */  
  168.     FF(a, b, c, d, x[0], S11, 0xd76aa478); /* 1 */  
  169.     FF(d, a, b, c, x[1], S12, 0xe8c7b756); /* 2 */  
  170.     FF(c, d, a, b, x[2], S13, 0x242070db); /* 3 */  
  171.     FF(b, c, d, a, x[3], S14, 0xc1bdceee); /* 4 */  
  172.     FF(a, b, c, d, x[4], S11, 0xf57c0faf); /* 5 */  
  173.     FF(d, a, b, c, x[5], S12, 0x4787c62a); /* 6 */  
  174.     FF(c, d, a, b, x[6], S13, 0xa8304613); /* 7 */  
  175.     FF(b, c, d, a, x[7], S14, 0xfd469501); /* 8 */  
  176.     FF(a, b, c, d, x[8], S11, 0x698098d8); /* 9 */  
  177.     FF(d, a, b, c, x[9], S12, 0x8b44f7af); /* 10 */  
  178.     FF(c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */  
  179.     FF(b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */  
  180.     FF(a, b, c, d, x[12], S11, 0x6b901122); /* 13 */  
  181.     FF(d, a, b, c, x[13], S12, 0xfd987193); /* 14 */  
  182.     FF(c, d, a, b, x[14], S13, 0xa679438e); /* 15 */  
  183.     FF(b, c, d, a, x[15], S14, 0x49b40821); /* 16 */  
  184.   
  185.     /* Round 2 */  
  186.     GG(a, b, c, d, x[1], S21, 0xf61e2562); /* 17 */  
  187.     GG(d, a, b, c, x[6], S22, 0xc040b340); /* 18 */  
  188.     GG(c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */  
  189.     GG(b, c, d, a, x[0], S24, 0xe9b6c7aa); /* 20 */  
  190.     GG(a, b, c, d, x[5], S21, 0xd62f105d); /* 21 */  
  191.     GG(d, a, b, c, x[10], S22, 0x2441453); /* 22 */  
  192.     GG(c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */  
  193.     GG(b, c, d, a, x[4], S24, 0xe7d3fbc8); /* 24 */  
  194.     GG(a, b, c, d, x[9], S21, 0x21e1cde6); /* 25 */  
  195.     GG(d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */  
  196.     GG(c, d, a, b, x[3], S23, 0xf4d50d87); /* 27 */  
  197.     GG(b, c, d, a, x[8], S24, 0x455a14ed); /* 28 */  
  198.     GG(a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */  
  199.     GG(d, a, b, c, x[2], S22, 0xfcefa3f8); /* 30 */  
  200.     GG(c, d, a, b, x[7], S23, 0x676f02d9); /* 31 */  
  201.     GG(b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */  
  202.   
  203.     /* Round 3 */  
  204.     HH(a, b, c, d, x[5], S31, 0xfffa3942); /* 33 */  
  205.     HH(d, a, b, c, x[8], S32, 0x8771f681); /* 34 */  
  206.     HH(c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */  
  207.     HH(b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */  
  208.     HH(a, b, c, d, x[1], S31, 0xa4beea44); /* 37 */  
  209.     HH(d, a, b, c, x[4], S32, 0x4bdecfa9); /* 38 */  
  210.     HH(c, d, a, b, x[7], S33, 0xf6bb4b60); /* 39 */  
  211.     HH(b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */  
  212.     HH(a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */  
  213.     HH(d, a, b, c, x[0], S32, 0xeaa127fa); /* 42 */  
  214.     HH(c, d, a, b, x[3], S33, 0xd4ef3085); /* 43 */  
  215.     HH(b, c, d, a, x[6], S34, 0x4881d05); /* 44 */  
  216.     HH(a, b, c, d, x[9], S31, 0xd9d4d039); /* 45 */  
  217.     HH(d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */  
  218.     HH(c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */  
  219.     HH(b, c, d, a, x[2], S34, 0xc4ac5665); /* 48 */  
  220.   
  221.     /* Round 4 */  
  222.     II(a, b, c, d, x[0], S41, 0xf4292244); /* 49 */  
  223.     II(d, a, b, c, x[7], S42, 0x432aff97); /* 50 */  
  224.     II(c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */  
  225.     II(b, c, d, a, x[5], S44, 0xfc93a039); /* 52 */  
  226.     II(a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */  
  227.     II(d, a, b, c, x[3], S42, 0x8f0ccc92); /* 54 */  
  228.     II(c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */  
  229.     II(b, c, d, a, x[1], S44, 0x85845dd1); /* 56 */  
  230.     II(a, b, c, d, x[8], S41, 0x6fa87e4f); /* 57 */  
  231.     II(d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */  
  232.     II(c, d, a, b, x[6], S43, 0xa3014314); /* 59 */  
  233.     II(b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */  
  234.     II(a, b, c, d, x[4], S41, 0xf7537e82); /* 61 */  
  235.     II(d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */  
  236.     II(c, d, a, b, x[2], S43, 0x2ad7d2bb); /* 63 */  
  237.     II(b, c, d, a, x[9], S44, 0xeb86d391); /* 64 */  
  238.   
  239.     state[0] += a;  
  240.     state[1] += b;  
  241.     state[2] += c;  
  242.     state[3] += d;  
  243.   
  244.     // Zeroize sensitive information.  
  245.     memset(x, 0, sizeof x);  
  246. }  
  247.   
  248. //  
  249.   
  250. // MD5 block update operation. Continues an MD5 message-digest  
  251. // operation, processing another message block  
  252. void MD5::update(const unsigned char input[], size_type length)  
  253. {  
  254.     // compute number of bytes mod 64  
  255.     size_type index = count[0] / 8 % blocksize;  
  256.   
  257.     // Update number of bits  
  258.     if ((count[0] += (length << 3)) < (length << 3))  
  259.         count[1]++;  
  260.     count[1] += (length >> 29);  
  261.   
  262.     // number of bytes we need to fill in buffer  
  263.     size_type firstpart = 64 - index;  
  264.   
  265.     size_type i;  
  266.   
  267.     // transform as many times as possible.  
  268.     if (length >= firstpart)  
  269.     {  
  270.         // fill buffer first, transform  
  271.         memcpy(&buffer[index], input, firstpart);  
  272.         transform(buffer);  
  273.   
  274.         // transform chunks of blocksize (64 bytes)  
  275.         for (i = firstpart; i + blocksize <= length; i += blocksize)  
  276.             transform(&input[i]);  
  277.   
  278.         index = 0;  
  279.     }  
  280.     else  
  281.         i = 0;  
  282.   
  283.     // buffer remaining input  
  284.     memcpy(&buffer[index], &input[i], length - i);  
  285. }  
  286.   
  287. //  
  288.   
  289. // for convenience provide a verson with signed char  
  290. void MD5::update(const char input[], size_type length)  
  291. {  
  292.     update((const unsigned char*)input, length);  
  293. }  
  294.   
  295. //  
  296.   
  297. // MD5 finalization. Ends an MD5 message-digest operation, writing the  
  298. // the message digest and zeroizing the context.  
  299. MD5& MD5::finalize()  
  300. {  
  301.     static unsigned char padding[64] = {  
  302.         0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,  
  303.         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,  
  304.         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0  
  305.     };  
  306.   
  307.     if (!finalized) {  
  308.         // Save number of bits  
  309.         unsigned char bits[8];  
  310.         encode(bits, count, 8);  
  311.   
  312.         // pad out to 56 mod 64.  
  313.         size_type index = count[0] / 8 % 64;  
  314.         size_type padLen = (index < 56) ? (56 - index) : (120 - index);  
  315.         update(padding, padLen);  
  316.   
  317.         // Append length (before padding)  
  318.         update(bits, 8);  
  319.   
  320.         // Store state in digest  
  321.         encode(digest, state, 16);  
  322.   
  323.         // Zeroize sensitive information.  
  324.         memset(buffer, 0, sizeof buffer);  
  325.         memset(count, 0, sizeof count);  
  326.   
  327.         finalized = true;  
  328.     }  
  329.   
  330.     return *this;  
  331. }  
  332.   
  333. //  
  334.   
  335. // return hex representation of digest as string  
  336. std::string MD5::hexdigest() const  
  337. {  
  338.     if (!finalized)  
  339.         return "";  
  340.   
  341.     char buf[33];  
  342.     for (int i = 0; i < 16; i++)  
  343.         sprintf(buf + i * 2, "%02x", digest[i]);  
  344.     buf[32] = 0;  
  345.   
  346.     return std::string(buf);  
  347. }  
  348.   
  349. //  
  350.   
  351. std::ostream& operator<<(std::ostream& out, MD5 md5)  
  352. {  
  353.     return out << md5.hexdigest();  
  354. }  
  355.   
  356. //  
  357.   
  358. std::string md5(const std::string str)  
  359. {  
  360.     MD5 md5 = MD5(str);  
  361.   
  362.     return md5.hexdigest();  
  363. }  


使用方法:

  1. #include <iostream>  
  2. #include "MD5.h"  
  3.   
  4. int main(const int argc, const char *argv[])  
  5. {  
  6.     std::string str = "grape";  
  7.     MD5 md5 = MD5(str);  
  8.     std::string hashStr = md5.hexdigest();  
  9.     cout << hashStr << endl;  
  10.   
  11.     // 或者  
  12.     //cout << "hashStr:" << MD5(str) << endl;  
  13.   
  14.   
  15.     system("pause");  
  16.     return 0;  
  17. }  
MD5的全称是Message-digest Algorithm 5(信息-摘要算法),用于确保信息传输完整一致。在90年代初由MIT Laboratory for Computer Science和RSA Data Security Inc,的Ronald L. Rivest开发出来,经MD2、MD3和MD4发展而来。它的作用是让大容量信息在用数字签名软件签署私人密钥前被"压缩"成一种保密的格式(就是把一个任意长度的字节串变换成一定长的大整数)。不管是MD2、MD4还是MD5,它们都需要获得一个随机长度的信息并产生一个128位的信息摘要。虽然这些算法的结构或多或少有些相似,但MD2的设计与MD4和MD5完全不同,那是因为MD2是为8位机器做过设计优化的,而MD4和MD5却是面向32位的电脑。这三个算法的描述和c语言源代码在Internet RFC 1321中有详细的描述(http://www.ietf.org/rfc/rfc1321.txt),这是一份最权威的文档,由Ronald L. Rivest在1992年8月向IETF提交。   MD5最广泛被用于各种软件的密码认证和钥匙识别上。通俗的讲就是人们讲的序列号,   Rivest在1989年开发出MD2算法。在这个算法中,首先对信息进行数据补位,使信息的字节长度是16的倍数。然后,以一个16位的检验和追加到信息末尾。并且根据这个新产生的信息计算出散列值。后来,Rogier和Chauvaud发现如果忽略了检验和将产生MD2冲突。MD2算法的加密后结果是唯一的--即没有重复。   为了加强算法的安全性,Rivest在1990年又开发出MD4算法。MD4算法同样需要填补信息以确保信息的字节长度加上448后能被512整除(信息字节长度mod 512 = 448)。然后,一个以64位二进制表示的信息的最初长度被添加进来。信息被处理成512位damg?rd/merkle迭代结构的区块,而且每个区块要通过三个不同步骤的处理。Den boer和Bosselaers以及其他人很快的发现了攻击MD4版本中第一步和第三步的漏洞。Dobbertin向大家演示了如何利用一部普通的个人电脑在几分钟内找到MD4完整版本中的冲突(这个冲突实际上是一种漏洞,它将导致对不同的内容进行加密却可能得到相同的加密后结果)。毫无疑问,MD4就此被淘汰掉了。   尽管MD4算法在安全上有个这么大的漏洞,但它对在其后才被开发出来的好几种信息安全加密算法的出现却有着不可忽视的引导作用。除了MD5以外,其中比较有名的还有sha-1、RIPEMD以及Haval等。   一年以后,即1991年,Rivest开发出技术上更为趋近成熟的md5算法。它在MD4的基础上增加了"安全-带子"(safety-belts)的概念。虽然MD5比MD4稍微慢一些,但却更为安全。这个算法很明显的由四个和MD4设计有少许不同的步骤组成。在MD5算法中,信息-摘要的大小和填充的必要条件与MD5完全相同。Den boer和Bosselaers曾发现MD5算法中的假冲突(pseudo-collisions),但除此之外就没有其他被发现的加密后结果了。   Van oorschot和Wiener曾经考虑过一个在散列中暴力搜寻冲突的函数(brute-force hash function),而且他们猜测一个被设计专门用来搜索MD5冲突的机器(这台机器在1994年的制造成本大约是一百万美元)可以平均每24天就找到一个冲突。但单从1991年到2001年这10年间,竟没有出现替代MD5算法的MD6或被叫做其他什么名字的新算法这一点,我们就可以看出这个瑕疵并没有太多的影响MD5的安全性。上面所有这些都不足以成为MD5的在实际应用中的问题。并且,由于MD5算法的使用不需要支付任何版权费用的,所以在一般的情况下(非绝密应用领域。但即便是应用在绝密领域内,MD5也不失为一种非常优秀的中间技术),MD5怎么都应该算得上是非常安全的了。   2004年8月17日的美国加州圣巴巴拉的国际密码学会议(Crypto’2004)上,来自中国山东大学的王小云教授做了破译MD5、HAVAL-128、 MD4和RIPEMD算法的报告,公布了MD系列算法的破解结果。宣告了固若金汤的世界通行密码标准MD5的堡垒轰然倒塌,引发了密码学界的轩然大波。   令世界顶尖密码学家想象不到的是,破解MD5之后,2005年2月,王小云教授又破解了另一国际密码SHA-1。因为SHA-1在美国等国际社会有更加广泛的应用,密码被破的消息一出,在国际社会的反响可谓石破天惊。换句话说,王小云的研究成果表明了从理论上讲电子签名可以伪造,必须及时添加限制条件,或者重新选用更为安全的密码标准,以保证电子商务的安全。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值