Lines Matching refs:inl
317 const unsigned char *in, size_t inl);
364 if (inl < bl) return 1;\
365 inl -= bl; \
366 for (i=0; i <= inl; i+=bl)
369 … cname##_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
379 … cname##_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
381 while(inl>=EVP_MAXCHUNK) {\
385 inl-=EVP_MAXCHUNK;\
389 if (inl) {\
391 …cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num…
398 … cname##_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
400 while(inl>=EVP_MAXCHUNK) {\
402 inl-=EVP_MAXCHUNK;\
406 if (inl)\
407 …cprefix##_cbc_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, EVP_CIPHER_CT…
412 …cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \
416 if (inl < chunk) chunk = inl;\
417 while (inl && inl >= chunk) {\
426 inl -= chunk;\
429 if (inl < chunk) chunk = inl;\