HomeSort by relevance Sort by last modified time
    Searched defs:MD4Update (Results 1 - 5 of 5) sorted by null

  /external/ppp/pppd/
openssl-hash.h 41 #define MD4Update EVP_DigestUpdate
md4.c 16 ** MD4Update(&MD,X,512)
19 ** MD4Update(&MD,X,n)
195 /* MD4Update(MDp,X,count)
202 ** every MD computation should end with one call to MD4Update with a
209 MD4Update(MDp,X,count)
224 { printf("\nError: MD4Update MD already done."); return; }
242 printf("\nError: MD4Update called with illegal count value %d.",
286 MD4Update(MD, NULL, 0);
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md4.c 34 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len);
45 MD4Update(&ctx, addr[i], len[i]);
66 * MD4Context structure, pass it to MD4Init, call MD4Update as
116 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len)
166 MD4Update(ctx, PADDING, padlen - 8); /* padlen - 8 <= 64 */
167 MD4Update(ctx, count, 8);
199 * reflect the addition of 16 longwords of new data. MD4Update blocks
  /external/wpa_supplicant_8/src/crypto/
md4-internal.c 25 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len);
36 MD4Update(&ctx, addr[i], len[i]);
58 * MD4Context structure, pass it to MD4Init, call MD4Update as
108 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len)
158 MD4Update(ctx, PADDING, padlen - 8); /* padlen - 8 <= 64 */
159 MD4Update(ctx, count, 8);
191 * reflect the addition of 16 longwords of new data. MD4Update blocks
  /external/quake/quake/src/QW/client/
md4.c 58 void MD4Update (MD4_CTX *, unsigned char *, unsigned int);
129 void MD4Update (MD4_CTX *context, unsigned char *input, unsigned int inputLen)
175 MD4Update (context, PADDING, padLen);
178 MD4Update (context, bits, 8);
291 MD4Update (&ctx, (unsigned char *)buffer, length);
304 MD4Update (&ctx, (unsigned char *)buffer, len);

Completed in 85 milliseconds