Searched defs:md4Context (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dchpms.c349 MDstruct md4Context; local
359 MDbegin(&md4Context);
360 MDupdate(&md4Context, unicodePassword, secret_len * 2 * 8); /* Unicode is 2 bytes/char, *8 for bit count */
365 MDreverse((u_long *)&md4Context); /* sfb 961105 */
367 MDupdate(&md4Context, NULL, 0); /* Tell MD4 we're done */
369 ChallengeResponse(rchallenge, (char *)md4Context.buffer, response->NTResp);
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dchpms.c312 MDstruct md4Context; local
324 MDbegin(&md4Context);
325 MDupdate(&md4Context, unicodePassword, secret_len * 2 * 8); /* Unicode is 2 bytes/char, *8 for bit count */
332 MDreverse((unsigned int*)&md4Context); /* sfb 961105 */
335 MDupdate(&md4Context, NULL, 0); /* Tell MD4 we're done */
337 ChallengeResponse((u_char*)rchallenge, (u_char*)md4Context.buffer, response->NTResp);

Completed in 43 milliseconds