Lines Matching refs:out_len
114 int out_len; in AES_Cipher() local
121 &out_len, in AES_Cipher()
138 out_len = 0; in AES_Cipher()
141 &out_len, in AES_Cipher()
147 total += out_len; in AES_Cipher()
148 CHECK_LE(out_len, buf_len); in AES_Cipher()
149 out_len = EVP_CIPHER_CTX_block_size(ctx.get()); in AES_Cipher()
151 ctx.get(), buf.data<unsigned char>() + total, &out_len)) { in AES_Cipher()
154 total += out_len; in AES_Cipher()
244 int out_len = 0; in AES_CTR_Cipher2() local
249 &out_len, in AES_CTR_Cipher2()
255 if (!EVP_CipherFinal_ex(ctx.get(), out + out_len, &final_len)) in AES_CTR_Cipher2()
258 out_len += final_len; in AES_CTR_Cipher2()
259 if (static_cast<unsigned>(out_len) != in.size()) in AES_CTR_Cipher2()