Existe t'il en C un fonction md5() comme en PHP

Existe t'il en C un fonction md5() comme en PHP - C++ - Programmation

Marsh Posté le 19-06-2003 à 22:02:47    

si oui est-ce que le résultat est pareil si on hash avec PHP ou avec C ?

Reply

Marsh Posté le 19-06-2003 à 22:02:47   

Reply

Marsh Posté le 19-06-2003 à 22:14:27    

Non, pas en C standard, maintenant tu dois pouvoir trouver un librairie qui le fait...

Reply

Marsh Posté le 19-06-2003 à 22:17:41    

et spécifier ton OS

Reply

Marsh Posté le 19-06-2003 à 22:18:30    

winXP

Reply

Marsh Posté le 19-06-2003 à 22:19:44    

arghhhhhhh

Reply

Marsh Posté le 19-06-2003 à 22:21:21    

ben  :sweat:

Reply

Marsh Posté le 19-06-2003 à 22:26:51    

ça doir surement exister  :??:  
le hashage md5 est un des plus courant...


---------------
IVG en france
Reply

Marsh Posté le 19-06-2003 à 22:37:48    

ouais, mais je début vraiment en C en fait, je connais que dalle, je connais assez bien PHP, et je voulais refaire un programme PHP en C.. plus optimisé

Reply

Marsh Posté le 19-06-2003 à 22:39:56    

dans la catégorie "j'ai pas cherché trente secondes sur google"...

Reply

Marsh Posté le 19-06-2003 à 22:41:30    

bah les cours que g trouver son pas très supair.. enfin pas a mon goût  :D  je sais je fais el difficile  :whistle:

Reply

Marsh Posté le 19-06-2003 à 22:41:30   

Reply

Marsh Posté le 19-06-2003 à 22:44:23    

je te parle pas de cours mais de taper "md5 C" dans google [:gizmo]

Reply

Marsh Posté le 19-06-2003 à 22:44:35    

tu te fous de nous :fou:  
 
j'ai trouvé des librairies en C en tapant 2 mots dans google!
 
edit: [:benou_grilled]


Message édité par uriel le 19-06-2003 à 22:45:04

---------------
IVG en france
Reply

Marsh Posté le 19-06-2003 à 23:53:39    

Code :
  1. /*
  2. **********************************************************************
  3. ** md5.h -- Header file for implementation of MD5                   **
  4. ** RSA Data Security, Inc. MD5 Message Digest Algorithm             **
  5. ** Created: 2/17/90 RLR                                             **
  6. ** Revised: 12/27/90 SRD,AJ,BSK,JT Reference C version              **
  7. ** Revised (for MD5): RLR 4/27/91                                   **
  8. **   -- G modified to have y&~z instead of y&z                      **
  9. **   -- FF, GG, HH modified to add in last register done            **
  10. **   -- Access pattern: round 2 works mod 5, round 3 works mod 3    **
  11. **   -- distinct additive constant for each step                    **
  12. **   -- round 4 added, working mod 7                                **
  13. **********************************************************************
  14. */
  15. /*
  16. **********************************************************************
  17. ** Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. **
  18. **                                                                  **
  19. ** License to copy and use this software is granted provided that   **
  20. ** it is identified as the "RSA Data Security, Inc. MD5 Message     **
  21. ** Digest Algorithm" in all material mentioning or referencing this **
  22. ** software or this function.                                       **
  23. **                                                                  **
  24. ** License is also granted to make and use derivative works         **
  25. ** provided that such works are identified as "derived from the RSA **
  26. ** Data Security, Inc. MD5 Message Digest Algorithm" in all         **
  27. ** material mentioning or referencing the derived work.             **
  28. **                                                                  **
  29. ** RSA Data Security, Inc. makes no representations concerning      **
  30. ** either the merchantability of this software or the suitability   **
  31. ** of this software for any particular purpose.  It is provided "as **
  32. ** is" without express or implied warranty of any kind.             **
  33. **                                                                  **
  34. ** These notices must be retained in any copies of any part of this **
  35. ** documentation and/or software.                                   **
  36. **********************************************************************
  37. */
  38. #ifndef __MD5_H
  39. #define __MD5_H
  40. #ifdef __cplusplus
  41. extern "C"
  42. {
  43. #endif
  44. /* typedef a 32 bit type */
  45. typedef unsigned long int UINT4;
  46. /* Data structure for MD5 (Message Digest) computation */
  47. typedef struct
  48. {
  49.  UINT4 i[2];                   /* number of _bits_ handled mod 2^64 */
  50.  UINT4 buf[4];                                    /* scratch buffer */
  51.  unsigned char in[64];                              /* input buffer */
  52.  unsigned char digest[16];     /* actual digest after MD5Final call */
  53. }
  54. MD5_CTX;
  55. void MD5Init (MD5_CTX *);
  56. void MD5Update (MD5_CTX *, unsigned char *, unsigned int);
  57. void MD5Final (MD5_CTX *);
  58. /*
  59.  **********************************************************************
  60.  ** End of md5.h                                                     **
  61.  ******************************* (cut) ********************************
  62.  */
  63. #ifdef __cplusplus
  64. };
  65. #endif
  66. #endif


 

Code :
  1. /*
  2. **********************************************************************
  3. ** md5.c                                                            **
  4. ** RSA Data Security, Inc. MD5 Message Digest Algorithm             **
  5. ** Created: 2/17/90 RLR                                             **
  6. ** Revised: 1/91 SRD,AJ,BSK,JT Reference C Version                  **
  7. **********************************************************************
  8. */
  9. /*
  10. **********************************************************************
  11. ** Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. **
  12. **                                                                  **
  13. ** License to copy and use this software is granted provided that   **
  14. ** it is identified as the "RSA Data Security, Inc. MD5 Message     **
  15. ** Digest Algorithm" in all material mentioning or referencing this **
  16. ** software or this function.                                       **
  17. **                                                                  **
  18. ** License is also granted to make and use derivative works         **
  19. ** provided that such works are identified as "derived from the RSA **
  20. ** Data Security, Inc. MD5 Message Digest Algorithm" in all         **
  21. ** material mentioning or referencing the derived work.             **
  22. **                                                                  **
  23. ** RSA Data Security, Inc. makes no representations concerning      **
  24. ** either the merchantability of this software or the suitability   **
  25. ** of this software for any particular purpose.  It is provided "as **
  26. ** is" without express or implied warranty of any kind.             **
  27. **                                                                  **
  28. ** These notices must be retained in any copies of any part of this **
  29. ** documentation and/or software.                                   **
  30. **********************************************************************
  31. */
  32. #include "stdafx.h"
  33. /* -- include the following line if the md5.h header file is separate -- */
  34. #include "md5.h"
  35. /* forward declaration */
  36. static void Transform (UINT4*, UINT4*);
  37. static unsigned char PADDING[64] = {
  38.                                        0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  39.                                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  40.                                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  41.                                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  42.                                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  43.                                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  44.                                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  45.                                        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  46.                                    };
  47. /* F, G and H are basic MD5 functions: selection, majority, parity */
  48. #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
  49. #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
  50. #define H(x, y, z) ((x) ^ (y) ^ (z))
  51. #define I(x, y, z) ((y) ^ ((x) | (~z)))
  52. /* ROTATE_LEFT rotates x left n bits */
  53. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
  54. /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
  55. /* Rotation is separate from addition to prevent recomputation */
  56. #define FF(a, b, c, d, x, s, ac) \
  57.   {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
  58.    (a) = ROTATE_LEFT ((a), (s)); \
  59.    (a) += (b); \
  60.   }
  61. #define GG(a, b, c, d, x, s, ac) \
  62.   {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
  63.    (a) = ROTATE_LEFT ((a), (s)); \
  64.    (a) += (b); \
  65.   }
  66. #define HH(a, b, c, d, x, s, ac) \
  67.   {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
  68.    (a) = ROTATE_LEFT ((a), (s)); \
  69.    (a) += (b); \
  70.   }
  71. #define II(a, b, c, d, x, s, ac) \
  72.   {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
  73.    (a) = ROTATE_LEFT ((a), (s)); \
  74.    (a) += (b); \
  75.   }
  76. void MD5Init (MD5_CTX *mdContext)
  77. {
  78. mdContext->i[0] = mdContext->i[1] = (UINT4)0;
  79. /* Load magic initialization constants.
  80.  */
  81. mdContext->buf[0] = (UINT4)0x67452301;
  82. mdContext->buf[1] = (UINT4)0xefcdab89;
  83. mdContext->buf[2] = (UINT4)0x98badcfe;
  84. mdContext->buf[3] = (UINT4)0x10325476;
  85. }
  86. void MD5Update (MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen)
  87. {
  88. UINT4 in[16];
  89. int mdi;
  90. unsigned int i, ii;
  91. /* compute number of bytes mod 64 */
  92. mdi = (int)((mdContext->i[0] >> 3) & 0x3F);
  93. /* update number of bits */
  94. if ((mdContext->i[0] + ((UINT4)inLen << 3)) < mdContext->i[0])
  95.  mdContext->i[1]++;
  96. mdContext->i[0] += ((UINT4)inLen << 3);
  97. mdContext->i[1] += ((UINT4)inLen >> 29);
  98. while (inLen--)
  99. {
  100.  /* add new character to buffer, increment mdi */
  101.  mdContext->in[mdi++] = *inBuf++;
  102.  /* transform if necessary */
  103.  if (mdi == 0x40)
  104.  {
  105.   for (i = 0, ii = 0; i < 16; i++, ii += 4)
  106.    in[i] = (((UINT4)mdContext->in[ii+3]) << 24) |
  107.            (((UINT4)mdContext->in[ii+2]) << 16) |
  108.            (((UINT4)mdContext->in[ii+1]) << 8) |
  109.            ((UINT4)mdContext->in[ii]);
  110.   Transform (mdContext->buf, in);
  111.   mdi = 0;
  112.  }
  113. }
  114. }
  115. void MD5Final (MD5_CTX *mdContext)
  116. {
  117. UINT4 in[16];
  118. int mdi;
  119. unsigned int i, ii;
  120. unsigned int padLen;
  121. /* save number of bits */
  122. in[14] = mdContext->i[0];
  123. in[15] = mdContext->i[1];
  124. /* compute number of bytes mod 64 */
  125. mdi = (int)((mdContext->i[0] >> 3) & 0x3F);
  126. /* pad out to 56 mod 64 */
  127. padLen = (mdi < 56) ? (56 - mdi) : (120 - mdi);
  128. MD5Update (mdContext, PADDING, padLen);
  129. /* append length in bits and transform */
  130. for (i = 0, ii = 0; i < 14; i++, ii += 4)
  131.  in[i] = (((UINT4)mdContext->in[ii+3]) << 24) |
  132.          (((UINT4)mdContext->in[ii+2]) << 16) |
  133.          (((UINT4)mdContext->in[ii+1]) << 8) |
  134.          ((UINT4)mdContext->in[ii]);
  135. Transform (mdContext->buf, in);
  136. /* store buffer in digest */
  137. for (i = 0, ii = 0; i < 4; i++, ii += 4)
  138. {
  139.  mdContext->digest[ii] = (unsigned char)(mdContext->buf[i] & 0xFF);
  140.  mdContext->digest[ii+1] =
  141.      (unsigned char)((mdContext->buf[i] >> 8) & 0xFF);
  142.  mdContext->digest[ii+2] =
  143.      (unsigned char)((mdContext->buf[i] >> 16) & 0xFF);
  144.  mdContext->digest[ii+3] =
  145.      (unsigned char)((mdContext->buf[i] >> 24) & 0xFF);
  146. }
  147. }
  148. /* Basic MD5 step. Transform buf based on in.
  149. */
  150. static void Transform (UINT4 *buf, UINT4 *in)
  151. {
  152. UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];
  153. /* Round 1 */
  154. #define S11 7
  155. #define S12 12
  156. #define S13 17
  157. #define S14 22
  158. FF ( a, b, c, d, in[ 0], S11, 3614090360U); /* 1 */
  159. FF ( d, a, b, c, in[ 1], S12, 3905402710U); /* 2 */
  160. FF ( c, d, a, b, in[ 2], S13,  606105819U); /* 3 */
  161. FF ( b, c, d, a, in[ 3], S14, 3250441966U); /* 4 */
  162. FF ( a, b, c, d, in[ 4], S11, 4118548399U); /* 5 */
  163. FF ( d, a, b, c, in[ 5], S12, 1200080426U); /* 6 */
  164. FF ( c, d, a, b, in[ 6], S13, 2821735955U); /* 7 */
  165. FF ( b, c, d, a, in[ 7], S14, 4249261313U); /* 8 */
  166. FF ( a, b, c, d, in[ 8], S11, 1770035416U); /* 9 */
  167. FF ( d, a, b, c, in[ 9], S12, 2336552879U); /* 10 */
  168. FF ( c, d, a, b, in[10], S13, 4294925233U); /* 11 */
  169. FF ( b, c, d, a, in[11], S14, 2304563134U); /* 12 */
  170. FF ( a, b, c, d, in[12], S11, 1804603682U); /* 13 */
  171. FF ( d, a, b, c, in[13], S12, 4254626195U); /* 14 */
  172. FF ( c, d, a, b, in[14], S13, 2792965006U); /* 15 */
  173. FF ( b, c, d, a, in[15], S14, 1236535329U); /* 16 */
  174. /* Round 2 */
  175. #define S21 5
  176. #define S22 9
  177. #define S23 14
  178. #define S24 20
  179. GG ( a, b, c, d, in[ 1], S21, 4129170786U); /* 17 */
  180. GG ( d, a, b, c, in[ 6], S22, 3225465664U); /* 18 */
  181. GG ( c, d, a, b, in[11], S23,  643717713U); /* 19 */
  182. GG ( b, c, d, a, in[ 0], S24, 3921069994U); /* 20 */
  183. GG ( a, b, c, d, in[ 5], S21, 3593408605U); /* 21 */
  184. GG ( d, a, b, c, in[10], S22,   38016083U); /* 22 */
  185. GG ( c, d, a, b, in[15], S23, 3634488961U); /* 23 */
  186. GG ( b, c, d, a, in[ 4], S24, 3889429448U); /* 24 */
  187. GG ( a, b, c, d, in[ 9], S21,  568446438U); /* 25 */
  188. GG ( d, a, b, c, in[14], S22, 3275163606U); /* 26 */
  189. GG ( c, d, a, b, in[ 3], S23, 4107603335U); /* 27 */
  190. GG ( b, c, d, a, in[ 8], S24, 1163531501U); /* 28 */
  191. GG ( a, b, c, d, in[13], S21, 2850285829U); /* 29 */
  192. GG ( d, a, b, c, in[ 2], S22, 4243563512U); /* 30 */
  193. GG ( c, d, a, b, in[ 7], S23, 1735328473U); /* 31 */
  194. GG ( b, c, d, a, in[12], S24, 2368359562U); /* 32 */
  195. /* Round 3 */
  196. #define S31 4
  197. #define S32 11
  198. #define S33 16
  199. #define S34 23
  200. HH ( a, b, c, d, in[ 5], S31, 4294588738U); /* 33 */
  201. HH ( d, a, b, c, in[ 8], S32, 2272392833U); /* 34 */
  202. HH ( c, d, a, b, in[11], S33, 1839030562U); /* 35 */
  203. HH ( b, c, d, a, in[14], S34, 4259657740U); /* 36 */
  204. HH ( a, b, c, d, in[ 1], S31, 2763975236U); /* 37 */
  205. HH ( d, a, b, c, in[ 4], S32, 1272893353U); /* 38 */
  206. HH ( c, d, a, b, in[ 7], S33, 4139469664U); /* 39 */
  207. HH ( b, c, d, a, in[10], S34, 3200236656U); /* 40 */
  208. HH ( a, b, c, d, in[13], S31,  681279174U); /* 41 */
  209. HH ( d, a, b, c, in[ 0], S32, 3936430074U); /* 42 */
  210. HH ( c, d, a, b, in[ 3], S33, 3572445317U); /* 43 */
  211. HH ( b, c, d, a, in[ 6], S34,   76029189U); /* 44 */
  212. HH ( a, b, c, d, in[ 9], S31, 3654602809U); /* 45 */
  213. HH ( d, a, b, c, in[12], S32, 3873151461U); /* 46 */
  214. HH ( c, d, a, b, in[15], S33,  530742520U); /* 47 */
  215. HH ( b, c, d, a, in[ 2], S34, 3299628645U); /* 48 */
  216. /* Round 4 */
  217. #define S41 6
  218. #define S42 10
  219. #define S43 15
  220. #define S44 21
  221. II ( a, b, c, d, in[ 0], S41, 4096336452U); /* 49 */
  222. II ( d, a, b, c, in[ 7], S42, 1126891415U); /* 50 */
  223. II ( c, d, a, b, in[14], S43, 2878612391U); /* 51 */
  224. II ( b, c, d, a, in[ 5], S44, 4237533241U); /* 52 */
  225. II ( a, b, c, d, in[12], S41, 1700485571U); /* 53 */
  226. II ( d, a, b, c, in[ 3], S42, 2399980690U); /* 54 */
  227. II ( c, d, a, b, in[10], S43, 4293915773U); /* 55 */
  228. II ( b, c, d, a, in[ 1], S44, 2240044497U); /* 56 */
  229. II ( a, b, c, d, in[ 8], S41, 1873313359U); /* 57 */
  230. II ( d, a, b, c, in[15], S42, 4264355552U); /* 58 */
  231. II ( c, d, a, b, in[ 6], S43, 2734768916U); /* 59 */
  232. II ( b, c, d, a, in[13], S44, 1309151649U); /* 60 */
  233. II ( a, b, c, d, in[ 4], S41, 4149444226U); /* 61 */
  234. II ( d, a, b, c, in[11], S42, 3174756917U); /* 62 */
  235. II ( c, d, a, b, in[ 2], S43,  718787259U); /* 63 */
  236. II ( b, c, d, a, in[ 9], S44, 3951481745U); /* 64 */
  237. buf[0] += a;
  238. buf[1] += b;
  239. buf[2] += c;
  240. buf[3] += d;
  241. }
  242. /*
  243. **********************************************************************
  244. ** End of md5.c                                                     **
  245. ******************************* (cut) ********************************
  246. */


 
Exemple d utilisation (md5 pour mdp sur protocole MSN)

Code :
  1. ...
  2. CString csHash;
  3. csHash.Format("%s%s" ,CString(hash), m_csUserPass);
  4. MD5_CTX mdContext;
  5. MD5Init(&mdContext);
  6. MD5Update(&mdContext, (unsigned char*)csHash.GetBuffer(0), csHash.GetLength());
  7. MD5Final(&mdContext);
  8. CString csFinal;
  9. for(int c=0; c < 16; c++) {
  10.  CString csCar;
  11.  csCar.Format("%02x", mdContext.digest[c]);
  12.  csFinal += csCar;
  13. }
  14. csCommand.Format("USR %d MD5 S %s\r\n", m_uiMainID++, csFinal);
  15. ...

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed