Lines Matching refs:inl
144 const unsigned char *in, size_t inl);
169 if (inl < bl) return 1;\
170 inl -= bl; \
171 for (i=0; i <= inl; i+=bl)
174 … cname##_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
184 … cname##_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
186 while(inl>=EVP_MAXCHUNK) {\
190 inl-=EVP_MAXCHUNK;\
194 if (inl) {\
196 …cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CT…
203 … cname##_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
205 while(inl>=EVP_MAXCHUNK) \
208 inl-=EVP_MAXCHUNK;\
212 if (inl)\
213 …cprefix##_cbc_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_iv_noco…
218 …cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
222 if (inl < chunk) chunk = inl;\
223 while (inl && inl >= chunk)\
233 inl -= chunk;\
236 if (inl < chunk) chunk = inl;\