Lines Matching refs:inl
75 const unsigned char *in, size_t inl) in des_ecb_cipher() argument
83 const unsigned char *in, size_t inl) in des_ofb_cipher() argument
85 while(inl>=EVP_MAXCHUNK) in des_ofb_cipher()
89 inl-=EVP_MAXCHUNK; in des_ofb_cipher()
93 if (inl) in des_ofb_cipher()
94 DES_ofb64_encrypt(in, out, (long)inl, ctx->cipher_data, in des_ofb_cipher()
100 const unsigned char *in, size_t inl) in des_cbc_cipher() argument
102 while(inl>=EVP_MAXCHUNK) in des_cbc_cipher()
106 inl-=EVP_MAXCHUNK; in des_cbc_cipher()
110 if (inl) in des_cbc_cipher()
111 DES_ncbc_encrypt(in, out, (long)inl, ctx->cipher_data, in des_cbc_cipher()
117 const unsigned char *in, size_t inl) in des_cfb64_cipher() argument
119 while(inl>=EVP_MAXCHUNK) in des_cfb64_cipher()
123 inl-=EVP_MAXCHUNK; in des_cfb64_cipher()
127 if (inl) in des_cfb64_cipher()
128 DES_cfb64_encrypt(in, out, (long)inl, ctx->cipher_data, in des_cfb64_cipher()
136 const unsigned char *in, size_t inl) in des_cfb1_cipher() argument
141 if (inl<chunk) chunk=inl; in des_cfb1_cipher()
143 while (inl && inl>=chunk) in des_cfb1_cipher()
153 inl-=chunk; in des_cfb1_cipher()
156 if (inl<chunk) chunk=inl; in des_cfb1_cipher()
163 const unsigned char *in, size_t inl) in des_cfb8_cipher() argument
165 while (inl>=EVP_MAXCHUNK) in des_cfb8_cipher()
169 inl-=EVP_MAXCHUNK; in des_cfb8_cipher()
173 if (inl) in des_cfb8_cipher()
174 DES_cfb_encrypt(in,out,8,(long)inl,ctx->cipher_data, in des_cfb8_cipher()