Lines Matching refs:inl
56 const unsigned char *in, size_t inl) in des_ecb_cipher() argument
66 const unsigned char *in, size_t inl) in des_ofb_cipher() argument
68 while (inl >= EVP_MAXCHUNK) { in des_ofb_cipher()
74 inl -= EVP_MAXCHUNK; in des_ofb_cipher()
78 if (inl) { in des_ofb_cipher()
80 DES_ofb64_encrypt(in, out, (long)inl, in des_ofb_cipher()
89 const unsigned char *in, size_t inl) in des_cbc_cipher() argument
94 (*dat->stream.cbc) (in, out, inl, &dat->ks.ks, in des_cbc_cipher()
98 while (inl >= EVP_MAXCHUNK) { in des_cbc_cipher()
103 inl -= EVP_MAXCHUNK; in des_cbc_cipher()
107 if (inl) in des_cbc_cipher()
108 DES_ncbc_encrypt(in, out, (long)inl, in des_cbc_cipher()
116 const unsigned char *in, size_t inl) in des_cfb64_cipher() argument
118 while (inl >= EVP_MAXCHUNK) { in des_cfb64_cipher()
125 inl -= EVP_MAXCHUNK; in des_cfb64_cipher()
129 if (inl) { in des_cfb64_cipher()
131 DES_cfb64_encrypt(in, out, (long)inl, in des_cfb64_cipher()
145 const unsigned char *in, size_t inl) in des_cfb1_cipher() argument
150 if (inl < chunk) in des_cfb1_cipher()
151 chunk = inl; in des_cfb1_cipher()
153 while (inl && inl >= chunk) { in des_cfb1_cipher()
163 inl -= chunk; in des_cfb1_cipher()
166 if (inl < chunk) in des_cfb1_cipher()
167 chunk = inl; in des_cfb1_cipher()
174 const unsigned char *in, size_t inl) in des_cfb8_cipher() argument
176 while (inl >= EVP_MAXCHUNK) { in des_cfb8_cipher()
181 inl -= EVP_MAXCHUNK; in des_cfb8_cipher()
185 if (inl) in des_cfb8_cipher()
186 DES_cfb_encrypt(in, out, 8, (long)inl, in des_cfb8_cipher()