Lines Matching refs:ilen
192 void md4_update( md4_context *ctx, const unsigned char *input, int ilen )
197 if( ilen <= 0 )
203 ctx->total[0] += ilen;
206 if( ctx->total[0] < (unsigned long) ilen )
209 if( left && ilen >= fill )
215 ilen -= fill;
219 while( ilen >= 64 )
223 ilen -= 64;
226 if( ilen > 0 )
229 input, ilen );
272 void md4( unsigned char *input, int ilen, unsigned char output[16] )
277 md4_update( &ctx, input, ilen );