Lines Matching refs:ilen
225 unsigned int ilen)
230 if (ilen <= 0)
236 ctx->total[0] += ilen;
239 if (ctx->total[0] < (unsigned long) ilen)
242 if (left && ilen >= fill) {
246 ilen -= fill;
250 while (ilen >= 64) {
253 ilen -= 64;
256 if (ilen > 0) {
257 memcpy ((void *) (ctx->buffer + left), (void *) input, ilen);
302 void sha1_csum(const unsigned char *input, unsigned int ilen,
308 sha1_update (&ctx, input, ilen);
552 void sha256_csum(const unsigned char *input, unsigned int ilen,
558 sha256_update(&ctx, input, ilen);