Lines Matching refs:ilen
211 void md5_update( md5_context *ctx, const unsigned char *input, int ilen )
216 if( ilen <= 0 )
222 ctx->total[0] += ilen;
225 if( ctx->total[0] < (unsigned long) ilen )
228 if( left && ilen >= fill )
234 ilen -= fill;
238 while( ilen >= 64 )
242 ilen -= 64;
245 if( ilen > 0 )
248 input, ilen );
291 void md5( unsigned char *input, int ilen, unsigned char output[16] )
296 md5_update( &ctx, input, ilen );