IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C++Builder Discussion :

[SRC] hach MD5


Sujet :

C++Builder

  1. #1
    Membre à l'essai
    Inscrit en
    Mai 2005
    Messages
    3
    Détails du profil
    Informations forums :
    Inscription : Mai 2005
    Messages : 3
    Par défaut [SRC] hach MD5
    bonjour,
    je suis trés préssé j'ai besoin d'aide,il me faut un code source de la fonction d'hachage MD5 en builder c++ pour finir mon projet d'étude,le plus tot possible.
    merci

    Edition par la rédaction : retrouvez ce code sur la page sources http://c.developpez.com/sources/bcb/?page=mathsalgo#md5

  2. #2
    Membre éclairé

    Homme Profil pro
    Inscrit en
    Septembre 2002
    Messages
    472
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 42
    Localisation : France

    Informations forums :
    Inscription : Septembre 2002
    Messages : 472
    Par défaut yop
    Salut,
    Voici ce que tu cherches :
    MD5.cpp :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
     
    #include "md5.h"
     
    BYTE  m_lpszBuffer[64];
    ULONG m_nCount[2];
    ULONG m_lMD5[4];
     
    static unsigned char PADDING[64] = {
     0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    };
     
    #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
    #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
    #define H(x, y, z) ((x) ^ (y) ^ (z))
    #define I(x, y, z) ((y) ^ ((x) | (~z)))
     
    #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
     
    #define FF(a, b, c, d, x, s, ac) \
     {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
      (a) = ROTATE_LEFT ((a), (s)); \
      (a) += (b); \
     }
    #define GG(a, b, c, d, x, s, ac) \
     {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
      (a) = ROTATE_LEFT ((a), (s)); \
      (a) += (b); \
     }
    #define HH(a, b, c, d, x, s, ac) \
     {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
      (a) = ROTATE_LEFT ((a), (s)); \
      (a) += (b); \
     }
    #define II(a, b, c, d, x, s, ac) \
     {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
      (a) = ROTATE_LEFT ((a), (s)); \
      (a) += (b); \
     }
     
    void ByteToDWord(DWORD* Output, ULONG* Input, UINT nLength){
    UINT i=0;
    UINT j=0;
    for (; j < nLength; i++, j += 4)
    {
     Output[i] = (ULONG)Input[j]   | 
        (ULONG)Input[j+1] << 8 | 
        (ULONG)Input[j+2] << 16 | 
        (ULONG)Input[j+3] << 24;
    }
    }
     
    void DWordToByte(unsigned char* Output, DWORD* Input, UINT nLength ){
    UINT i = 0;
    UINT j = 0;
    for (; j < nLength; i++, j += 4) 
    {
     Output[j] =   (UCHAR)(Input[i] & 0xff);
     Output[j+1] = (UCHAR)((Input[i] >> 8) & 0xff);
     Output[j+2] = (UCHAR)((Input[i] >> 16) & 0xff);
     Output[j+3] = (UCHAR)((Input[i] >> 24) & 0xff);
    }
    }
     
    void MD5Init (void)
    {
     memset(m_lpszBuffer, 0, 64 );
     m_nCount[0] = m_nCount[1] = 0;
     
    m_lMD5[0] = MD5_INIT_STATE_0;
    m_lMD5[1] = MD5_INIT_STATE_1;
    m_lMD5[2] = MD5_INIT_STATE_2;
    m_lMD5[3] = MD5_INIT_STATE_3;
    }
     
    void MD5Update (unsigned char *inBuf, unsigned int inLen)
    {
     register int i, ii;
     int mdi;
     UINT4 in[16];
     
     mdi = (int)((m_nCount[0] >> 3) & 0x3F);
     
     if ((m_nCount[0] + ((UINT4)inLen << 3)) < m_nCount[0])
       m_nCount[1]++;
     m_nCount[0] += ((UINT4)inLen << 3);
     m_nCount[1] += ((UINT4)inLen >> 29);
     
     while (inLen--) {
       m_lpszBuffer[mdi++] = *inBuf++;
     
       if (mdi == 0x40) {
         for (i = 0, ii = 0; i < 16; i++, ii += 4)
           in[i] = (((UINT4)m_lpszBuffer[ii+3]) << 24) |
                   (((UINT4)m_lpszBuffer[ii+2]) << 16) |
                   (((UINT4)m_lpszBuffer[ii+1]) << 8) |
                   ((UINT4)m_lpszBuffer[ii]);
         Transform (m_lMD5, in);
         mdi = 0;
       }
     }
    }
     
    void MD5Final (char* cReturnStr)
    {
    unsigned char bits[8];
    int nIndex;
    unsigned int nPadLen;
    const int nMD5Size = 16;
     unsigned char lpszMD5[16];
    char temp[2];
    int i;
     
    cReturnStr[0]='\0';
     
    DWordToByte( bits, m_nCount, 8 );
     
    nIndex = (int)((m_nCount[0] >> 3) & 0x3f);
    nPadLen = (nIndex < 56) ? (56 - nIndex) : (120 - nIndex);
    MD5Update (PADDING, nPadLen);
     
    MD5Update (bits, 8);
     
    DWordToByte( lpszMD5, m_lMD5, nMD5Size );
     
    for (i=0; i < nMD5Size; i++) 
    {
     
     if (lpszMD5[i] == 0) {
      temp[0] = '0';
      temp[1]='0';
     }
     else if (lpszMD5[i] <= 15)  {
         sprintf(temp,"0%x",lpszMD5[i]);
     }
     else {
         sprintf(temp,"%x",lpszMD5[i]);
     }
       strcat(cReturnStr,temp);
    }
    lpszMD5[0]='\0';
    }
     
    void Transform(register UINT4 *buf,register UINT4 *in)
    {
     register UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];
     
    #define S11 7
    #define S12 12
    #define S13 17
    #define S14 22
     FF ( a, b, c, d, in[ 0], S11, 0xD76AA478L); 
     FF ( d, a, b, c, in[ 1], S12, 0xE8C7B756L); 
     FF ( c, d, a, b, in[ 2], S13, 0x242070DBL); 
     FF ( b, c, d, a, in[ 3], S14, 0xC1BDCEEEL); 
     FF ( a, b, c, d, in[ 4], S11, 0xF57C0FAFL); 
     FF ( d, a, b, c, in[ 5], S12, 0x4787C62AL); 
     FF ( c, d, a, b, in[ 6], S13, 0xA8304613L); 
     FF ( b, c, d, a, in[ 7], S14, 0xFD469501L); 
     FF ( a, b, c, d, in[ 8], S11, 0x698098D8L); 
     FF ( d, a, b, c, in[ 9], S12, 0x8B44F7AFL); 
     FF ( c, d, a, b, in[10], S13, 0xFFFF5BB1L); 
     FF ( b, c, d, a, in[11], S14, 0x895CD7BEL); 
     FF ( a, b, c, d, in[12], S11, 0x6B901122L); 
     FF ( d, a, b, c, in[13], S12, 0xFD987193L); 
     FF ( c, d, a, b, in[14], S13, 0xA679438EL); 
     FF ( b, c, d, a, in[15], S14, 0x49B40821L); 
     
    #define S21 5
    #define S22 9
    #define S23 14
    #define S24 20
     GG ( a, b, c, d, in[ 1], S21, 0xF61E2562L); 
     GG ( d, a, b, c, in[ 6], S22, 0xC040B340L); 
     GG ( c, d, a, b, in[11], S23, 0x265E5A51L); 
     GG ( b, c, d, a, in[ 0], S24, 0xE9B6C7AAL); 
     GG ( a, b, c, d, in[ 5], S21, 0xD62F105DL); 
     GG ( d, a, b, c, in[10], S22, 0x02441453L); 
     GG ( c, d, a, b, in[15], S23, 0xD8A1E681L); 
     GG ( b, c, d, a, in[ 4], S24, 0xE7D3FBC8L); 
     GG ( a, b, c, d, in[ 9], S21, 0x21E1CDE6L); 
     GG ( d, a, b, c, in[14], S22, 0xC33707D6L); 
     GG ( c, d, a, b, in[ 3], S23, 0xF4D50D87L); 
     GG ( b, c, d, a, in[ 8], S24, 0x455A14EDL); 
     GG ( a, b, c, d, in[13], S21, 0xA9E3E905L); 
     GG ( d, a, b, c, in[ 2], S22, 0xFCEFA3F8L); 
     GG ( c, d, a, b, in[ 7], S23, 0x676F02D9L); 
     GG ( b, c, d, a, in[12], S24, 0x8D2A4C8AL); 
     
    #define S31 4
    #define S32 11
    #define S33 16
    #define S34 23
     HH ( a, b, c, d, in[ 5], S31, 0xFFFA3942L); 
     HH ( d, a, b, c, in[ 8], S32, 0x8771F681L); 
     HH ( c, d, a, b, in[11], S33, 0x6D9D6122L); 
     HH ( b, c, d, a, in[14], S34, 0xFDE5380CL); 
     HH ( a, b, c, d, in[ 1], S31, 0xA4BEEA44L);
     HH ( d, a, b, c, in[ 4], S32, 0x4BDECFA9L); 
     HH ( c, d, a, b, in[ 7], S33, 0xF6BB4B60L); 
     HH ( b, c, d, a, in[10], S34, 0xBEBFBC70L); 
     HH ( a, b, c, d, in[13], S31, 0x289B7EC6L); 
     HH ( d, a, b, c, in[ 0], S32, 0xEAA127FAL); 
     HH ( c, d, a, b, in[ 3], S33, 0xD4EF3085L); 
     HH ( b, c, d, a, in[ 6], S34, 0x04881D05L);
     HH ( a, b, c, d, in[ 9], S31, 0xD9D4D039L); 
     HH ( d, a, b, c, in[12], S32, 0xE6DB99E5L); 
     HH ( c, d, a, b, in[15], S33, 0x1FA27CF8L); 
     HH ( b, c, d, a, in[ 2], S34, 0xC4AC5665L); 
     
    #define S41 6
    #define S42 10
    #define S43 15
    #define S44 21
     II ( a, b, c, d, in[ 0], S41, 0xF4292244L); 
     II ( d, a, b, c, in[ 7], S42, 0x432AFF97L); 
     II ( c, d, a, b, in[14], S43, 0xAB9423A7L); 
     II ( b, c, d, a, in[ 5], S44, 0xFC93A039L); 
     II ( a, b, c, d, in[12], S41, 0x655B59C3L); 
     II ( d, a, b, c, in[ 3], S42, 0x8F0CCC92L); 
     II ( c, d, a, b, in[10], S43, 0xFFEFF47DL); 
     II ( b, c, d, a, in[ 1], S44, 0x85845DD1L); 
     II ( a, b, c, d, in[ 8], S41, 0x6FA87E4FL); 
     II ( d, a, b, c, in[15], S42, 0xFE2CE6E0L); 
     II ( c, d, a, b, in[ 6], S43, 0xA3014314L); 
     II ( b, c, d, a, in[13], S44, 0x4E0811A1L); 
     II ( a, b, c, d, in[ 4], S41, 0xF7537E82L); 
     II ( d, a, b, c, in[11], S42, 0xBD3AF235L); 
     II ( c, d, a, b, in[ 2], S43, 0x2AD7D2BBL); 
     II ( b, c, d, a, in[ 9], S44, 0xEB86D391L); 
     
     buf[0] += a;
     buf[1] += b;
     buf[2] += c;
     buf[3] += d;
    }
     
    void GetMD5(char* pBuf, UINT nLength,char* cReturnStr) {
    	MD5Init();
    	MD5Update(pBuf, nLength);
    	MD5Final(cReturnStr);
    	}
     
    AnsiString MD5(AnsiString in) {
    	char out_char[32];
    	GetMD5(in.c_str(),in.Length(),out_char);
    	return AnsiString(out_char);
    	}
    MD5.h :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
     
    #include <system.hpp>
    #include <windef.h>
    #include <stdio.h>
     
    #ifdef __alpha
    typedef unsigned int UINT4;
    #else
    typedef unsigned long int UINT4;
    #endif
     
    #define MD5_INIT_STATE_0 0x67452301
    #define MD5_INIT_STATE_1 0xefcdab89
    #define MD5_INIT_STATE_2 0x98badcfe
    #define MD5_INIT_STATE_3 0x10325476
     
    void MD5Init(void);
    void MD5Update(unsigned char *bug, unsigned int len);
    void MD5Final(char* cReturnStr);
    void Transform(UINT4 *buf, UINT4 *in);
    void GetMD5(char* pBuf, UINT nLength,char* cReturnStr);
    AnsiString MD5(AnsiString in);
    A utiliser comme ça :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    AnsiString TestMD5 = MD5( "MaTHieU" );
    Cordialement,
    MaTHieU_

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Mot de passe chiffré haché avec md5 ne fonctionne pas
    Par san1981 dans le forum Requêtes
    Réponses: 1
    Dernier message: 24/10/2011, 14h04
  2. Mot de passe haché avec MD5 dans la base de données
    Par lelapinrusse dans le forum PHP & Base de données
    Réponses: 9
    Dernier message: 13/06/2009, 21h31
  3. hache MD5 d'un mot.[déplacer dans algo merci]
    Par jack_x4 dans le forum Algorithmes et structures de données
    Réponses: 4
    Dernier message: 17/07/2007, 18h51
  4. Réponses: 4
    Dernier message: 17/07/2007, 18h51
  5. Comparaison de variable haché en MD5
    Par manuaccess10 dans le forum Shell et commandes GNU
    Réponses: 4
    Dernier message: 31/05/2006, 20h56

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo