Lines Matching refs:ivlen
119 int ivlen; member
250 size_t nblocks, ivlen; in cipher_do_cipher() local
263 ivlen = EVP_CIPHER_CTX_get_iv_length(ctx); in cipher_do_cipher()
264 if (ivlen > 0) in cipher_do_cipher()
267 assert(inl >= ivlen); in cipher_do_cipher()
269 ivptr = in + inl - ivlen; in cipher_do_cipher()
270 memcpy(saved_iv, ivptr, ivlen); in cipher_do_cipher()
290 if (ivlen > 0) in cipher_do_cipher()
293 assert(inl >= ivlen); in cipher_do_cipher()
295 ivptr = out + inl - ivlen; in cipher_do_cipher()
299 memcpy(iv, ivptr, ivlen); in cipher_do_cipher()
306 ivlen--; in cipher_do_cipher()
307 nblocks += iv[ivlen]; in cipher_do_cipher()
308 iv[ivlen] = (uint8_t) nblocks; in cipher_do_cipher()
310 } while (ivlen); in cipher_do_cipher()
483 cipher_data[i].ivlen) in prepare_cipher_methods()