Home | History | Annotate | Download | only in evp

Lines Matching defs:tl

560 	unsigned long tl;
565 tl= ctx->buf_len- OK_BLOCK_BLOCK;
566 ctx->buf[0]=(unsigned char)(tl>>24);
567 ctx->buf[1]=(unsigned char)(tl>>16);
568 ctx->buf[2]=(unsigned char)(tl>>8);
569 ctx->buf[3]=(unsigned char)(tl);
571 (unsigned char*) &(ctx->buf[OK_BLOCK_BLOCK]), tl))
587 unsigned long tl= 0;
593 assert(sizeof(tl)>=OK_BLOCK_BLOCK); /* always true */
594 tl =ctx->buf[0]; tl<<=8;
595 tl|=ctx->buf[1]; tl<<=8;
596 tl|=ctx->buf[2]; tl<<=8;
597 tl|=ctx->buf[3];
599 if (ctx->buf_len < tl+ OK_BLOCK_BLOCK+ md->digest->md_size) return 1;
602 (unsigned char*) &(ctx->buf[OK_BLOCK_BLOCK]), tl))
606 if(memcmp(&(ctx->buf[tl+ OK_BLOCK_BLOCK]), tmp, md->digest->md_size) == 0)
609 ctx->buf_off_save= tl+ OK_BLOCK_BLOCK+ md->digest->md_size;
612 ctx->buf_len= tl+ OK_BLOCK_BLOCK;