Lines Matching refs:inl
154 const unsigned char *in,unsigned int inl)
159 if(!inl)
169 cryp.len=inl;
170 assert((inl&(ctx->cipher->block_size-1)) == 0);
188 /* NB: this can only make cinl != inl with stream ciphers */
189 cinl=(inl+3)/4*4;
191 if(((unsigned long)in&3) || cinl != inl)
194 memcpy(cin,in,inl);
198 if(((unsigned long)out&3) || cinl != inl)
216 memcpy(out,cout,inl);