Lines Matching refs:inl
61 const unsigned char *in, size_t inl) in des_ecb_cipher() argument
71 const unsigned char *in, size_t inl) in des_ofb_cipher() argument
73 while (inl >= EVP_MAXCHUNK) { in des_ofb_cipher()
79 inl -= EVP_MAXCHUNK; in des_ofb_cipher()
83 if (inl) { in des_ofb_cipher()
85 DES_ofb64_encrypt(in, out, (long)inl, in des_ofb_cipher()
94 const unsigned char *in, size_t inl) in des_cbc_cipher() argument
99 (*dat->stream.cbc) (in, out, inl, &dat->ks.ks, ctx->iv); in des_cbc_cipher()
102 while (inl >= EVP_MAXCHUNK) { in des_cbc_cipher()
107 inl -= EVP_MAXCHUNK; in des_cbc_cipher()
111 if (inl) in des_cbc_cipher()
112 DES_ncbc_encrypt(in, out, (long)inl, in des_cbc_cipher()
120 const unsigned char *in, size_t inl) in des_cfb64_cipher() argument
122 while (inl >= EVP_MAXCHUNK) { in des_cfb64_cipher()
129 inl -= EVP_MAXCHUNK; in des_cfb64_cipher()
133 if (inl) { in des_cfb64_cipher()
135 DES_cfb64_encrypt(in, out, (long)inl, in des_cfb64_cipher()
149 const unsigned char *in, size_t inl) in des_cfb1_cipher() argument
155 if (inl < chunk) in des_cfb1_cipher()
156 chunk = inl; in des_cfb1_cipher()
158 while (inl && inl >= chunk) { in des_cfb1_cipher()
168 inl -= chunk; in des_cfb1_cipher()
171 if (inl < chunk) in des_cfb1_cipher()
172 chunk = inl; in des_cfb1_cipher()
179 const unsigned char *in, size_t inl) in des_cfb8_cipher() argument
181 while (inl >= EVP_MAXCHUNK) { in des_cfb8_cipher()
186 inl -= EVP_MAXCHUNK; in des_cfb8_cipher()
190 if (inl) in des_cfb8_cipher()
191 DES_cfb_encrypt(in, out, 8, (long)inl, in des_cfb8_cipher()