/reactos/modules/rostests/winetests/advapi32/ |
H A D | crypt_md5.c | 34 } MD5_CTX; typedef 36 static VOID (WINAPI *pMD5Init)( MD5_CTX *ctx ); 37 static VOID (WINAPI *pMD5Update)( MD5_CTX *ctx, const unsigned char *src, const int len ); 38 static VOID (WINAPI *pMD5Final)( MD5_CTX *ctx ); 40 #define ctxcmp( a, b ) memcmp( a, b, FIELD_OFFSET( MD5_CTX, in ) ) 53 MD5_CTX ctx; in test_md5_ctx() 54 MD5_CTX ctx_initialized = in test_md5_ctx() 60 MD5_CTX ctx_update1 = in test_md5_ctx() 66 MD5_CTX ctx_update2 = in test_md5_ctx()
|
/reactos/dll/win32/secur32/wine/ |
H A D | hmac_md5.h | 33 } MD5_CTX; typedef 37 MD5_CTX ctx; 41 void WINAPI MD5Init( MD5_CTX *ctx ); 42 void WINAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len ); 43 void WINAPI MD5Final( MD5_CTX *ctx );
|
H A D | util.c | 97 } MD5_CTX; typedef 104 VOID WINAPI MD5Init( MD5_CTX *ctx ); 105 VOID WINAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len ); 106 VOID WINAPI MD5Final( MD5_CTX *ctx ); 146 MD5_CTX ctx; in SECUR32_CalcNTLM2Subkey()
|
H A D | hmac_md5.c | 32 MD5_CTX temp_ctx; in HMACMD5Init() 65 MD5_CTX outer_ctx; in HMACMD5Final()
|
/reactos/sdk/lib/cryptlib/ |
H A D | md5.h | 12 } MD5_CTX; typedef 14 VOID NTAPI MD5Init( MD5_CTX *ctx ); 16 VOID NTAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len ); 18 VOID NTAPI MD5Final( MD5_CTX *ctx );
|
H A D | md5.c | 45 VOID NTAPI MD5Init( MD5_CTX *ctx ) in MD5Init() 59 VOID NTAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len ) in MD5Update() 113 VOID NTAPI MD5Final( MD5_CTX *ctx ) in MD5Final()
|
/reactos/sdk/lib/3rdparty/freetype/src/base/ |
H A D | md5.h | 39 } MD5_CTX; typedef 41 extern void MD5_Init(MD5_CTX *ctx); 42 extern void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size); 43 extern void MD5_Final(unsigned char *result, MD5_CTX *ctx);
|
H A D | md5.c | 100 static const void *body(MD5_CTX *ctx, const void *data, unsigned long size) in body() 207 void MD5_Init(MD5_CTX *ctx) in MD5_Init() 218 void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size) in MD5_Update() 258 void MD5_Final(unsigned char *result, MD5_CTX *ctx) in MD5_Final()
|
H A D | ftobjs.c | 69 #define MD5_CTX FT_MD5_CTX macro 4560 MD5_CTX ctx; in FT_Render_Glyph_Internal()
|
/reactos/modules/rostests/apitests/advapi32/ |
H A D | Hash.c | 25 } MD5_CTX, *PMD5_CTX; typedef 185 DECLSPEC_ALIGN(4) MD5_CTX ctx; in Test_MD5() 205 RTL_FIELD_SIZE(MD5_CTX, State)); in Test_MD5() 206 ok_eq_size(ComparedSize, RTL_FIELD_SIZE(MD5_CTX, State)); in Test_MD5() 216 RTL_FIELD_SIZE(MD5_CTX, State)); in Test_MD5() 217 ok_eq_size(ComparedSize, RTL_FIELD_SIZE(MD5_CTX, State)); in Test_MD5()
|
/reactos/drivers/crypto/ksecdd/ |
H A D | crypt.c | 13 MD5_CTX KsecLoadTimeStartMd5s[2]; 48 MD5_CTX Md5Context; in KsecInitializeEncryptionSupport() 80 MD5_CTX Md5Contexts[2]; in KsecGetKeyData()
|
/reactos/dll/win32/rsaenh/ |
H A D | implglue.h | 45 } MD5_CTX; typedef 59 MD5_CTX md5;
|
H A D | implglue.c | 44 VOID WINAPI MD5Init( MD5_CTX *ctx ); 45 VOID WINAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len ); 46 VOID WINAPI MD5Final( MD5_CTX *ctx );
|
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/ |
H A D | secure.c | 51 MD5_CTX md5; in sec_hash_48() 78 MD5_CTX md5; in sec_hash_16() 174 MD5_CTX md5; in sec_sign() 200 MD5_CTX md5; in sec_update()
|
H A D | rdesktop.c | 996 MD5_CTX md5; in generate_random()
|