Searched refs:MDC2_BLOCK (Results 1 – 3 of 3) sorted by relevance
| /mirbsd/src/lib/libssl/src/crypto/mdc2/ |
| D | mdc2dgst.c | 82 memset(&(c->h[0]),0x52,MDC2_BLOCK); in MDC2_Init() 83 memset(&(c->hh[0]),0x25,MDC2_BLOCK); in MDC2_Init() 94 if (i+len < MDC2_BLOCK) in MDC2_Update() 104 j=MDC2_BLOCK-i; in MDC2_Update() 109 mdc2_body(c,&(c->data[0]),MDC2_BLOCK); in MDC2_Update() 112 i=(int)(len&(unsigned long)~(MDC2_BLOCK-1)); in MDC2_Update() 171 memset(&(c->data[i]),0,MDC2_BLOCK-i); in MDC2_Final() 172 mdc2_body(c,c->data,MDC2_BLOCK); in MDC2_Final() 174 memcpy(md,(char *)c->h,MDC2_BLOCK); in MDC2_Final() 175 memcpy(&(md[MDC2_BLOCK]),(char *)c->hh,MDC2_BLOCK); in MDC2_Final()
|
| D | mdc2.h | 72 #define MDC2_BLOCK 8 macro 78 unsigned char data[MDC2_BLOCK];
|
| /mirbsd/src/lib/libssl/src/crypto/evp/ |
| D | m_mdc2.c | 89 MDC2_BLOCK,
|