Searched refs:mdContext (Results 1 – 3 of 3) sorted by relevance
/third_party/flutter/skia/third_party/externals/sdl/src/test/ |
D | SDL_test_md5.c | 110 void SDLTest_Md5Init(SDLTest_Md5Context * mdContext) in SDLTest_Md5Init() argument 112 if (mdContext==NULL) return; in SDLTest_Md5Init() 114 mdContext->i[0] = mdContext->i[1] = (MD5UINT4) 0; in SDLTest_Md5Init() 119 mdContext->buf[0] = (MD5UINT4) 0x67452301; in SDLTest_Md5Init() 120 mdContext->buf[1] = (MD5UINT4) 0xefcdab89; in SDLTest_Md5Init() 121 mdContext->buf[2] = (MD5UINT4) 0x98badcfe; in SDLTest_Md5Init() 122 mdContext->buf[3] = (MD5UINT4) 0x10325476; in SDLTest_Md5Init() 131 void SDLTest_Md5Update(SDLTest_Md5Context * mdContext, unsigned char *inBuf, in SDLTest_Md5Update() argument 138 if (mdContext == NULL) return; in SDLTest_Md5Update() 144 mdi = (int) ((mdContext->i[0] >> 3) & 0x3F); in SDLTest_Md5Update() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/include/ |
D | SDL_test_md5.h | 89 void SDLTest_Md5Init(SDLTest_Md5Context * mdContext); 104 void SDLTest_Md5Update(SDLTest_Md5Context * mdContext, unsigned char *inBuf, 118 void SDLTest_Md5Final(SDLTest_Md5Context * mdContext);
|
/third_party/lwip/src/netif/ppp/ |
D | eap.c | 1317 lwip_md5_context mdContext; in eap_request() local 1446 lwip_md5_init(&mdContext); in eap_request() 1447 lwip_md5_starts(&mdContext); in eap_request() 1449 lwip_md5_update(&mdContext, &typenum, 1); in eap_request() 1450 lwip_md5_update(&mdContext, (u_char *)secret, secret_len); in eap_request() 1452 lwip_md5_update(&mdContext, inp, vallen); in eap_request() 1453 lwip_md5_finish(&mdContext, hash); in eap_request() 1454 lwip_md5_free(&mdContext); in eap_request() 1731 lwip_md5_context mdContext; in eap_response() local 1874 lwip_md5_init(&mdContext); in eap_response() [all …]
|