OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MD4Update
(Results
1 - 7
of
7
) sorted by null
/external/ppp/pppd/
md4.h
34
/*
MD4Update
(MD,X,count)
39
** If count is not a multiple of 8,
MD4Update
uses high bits of
43
** every MD computation should end with one call to
MD4Update
with a
46
extern void
MD4Update
__P((MD4_CTX *MD, unsigned char *X, unsigned int count));
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);
chap_ms.c
535
MD4Update
(&md4Context, (unsigned char *)secret, mdlen);
/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/libppp/src/
chap_ms.c
139
MD4Update
(&MD4context, key, keylen);
149
MD4Update
(&MD4context, hash, 16);
chap.c
167
MD4Update
(&MD4context, expkey, klen << 1);
Completed in 339 milliseconds