Lines Matching refs:MDNAME
23 #define MDNAME(x) CONCAT(MDALGORITHM,x) macro
27 WA(MDNAME(End),CONCAT(_,MDNAME(End))) in WA()
28 WA(MDNAME(File),CONCAT(_,MDNAME(File))) in WA()
29 WA(MDNAME(Data),CONCAT(_,MDNAME(Data))) in WA()
46 MDNAME(End)(MDNAME(_CTX) *ctx, char *buf) in WA()
59 MDNAME(Final)(digest, ctx); in WA()
71 MDNAME(File)(const char *filename, char *buf) in MDNAME() function
74 MDNAME(_CTX) ctx; in MDNAME()
81 MDNAME(Init)(&ctx); in MDNAME()
87 MDNAME(Update)(&ctx, buffer, (unsigned int)i); in MDNAME()
96 return (MDNAME(End)(&ctx, buf)); in MDNAME()
100 MDNAME(Data)(const unsigned char *data, unsigned int len, char *buf) in MDNAME() function
102 MDNAME(_CTX) ctx; in MDNAME()
106 MDNAME(Init)(&ctx); in MDNAME()
107 MDNAME(Update)(&ctx, data, len); in MDNAME()
108 return (MDNAME(End)(&ctx, buf)); in MDNAME()