Symbol: EVP_CIPHER_CTX_iv_length
crypto/libressl/crypto/cms/cms_enc.c
120
ivlen = EVP_CIPHER_CTX_iv_length(ctx);
crypto/libressl/crypto/cms/cms_pwri.c
138
ivlen = EVP_CIPHER_CTX_iv_length(ctx);
crypto/libressl/crypto/evp/e_aes.c
2452
memcpy(ctx->iv, iv, EVP_CIPHER_CTX_iv_length(ctx));
crypto/libressl/crypto/evp/e_rc2.c
345
l = EVP_CIPHER_CTX_iv_length(c);
crypto/libressl/crypto/evp/e_rc2.c
375
j = EVP_CIPHER_CTX_iv_length(c);
crypto/libressl/crypto/evp/evp_enc.c
198
if ((size_t)EVP_CIPHER_CTX_iv_length(ctx) >
crypto/libressl/crypto/evp/evp_enc.c
205
EVP_CIPHER_CTX_iv_length(ctx));
crypto/libressl/crypto/evp/evp_enc.c
207
EVP_CIPHER_CTX_iv_length(ctx));
crypto/libressl/crypto/evp/evp_enc.c
215
EVP_CIPHER_CTX_iv_length(ctx));
crypto/libressl/crypto/evp/evp_lib.c
104
l = EVP_CIPHER_CTX_iv_length(c);
crypto/libressl/crypto/evp/evp_lib.c
125
j = EVP_CIPHER_CTX_iv_length(c);
crypto/libressl/crypto/evp/evp_lib.c
305
if (ctx == NULL || len != EVP_CIPHER_CTX_iv_length(ctx))
crypto/libressl/crypto/evp/evp_lib.c
324
if (ctx == NULL || len != EVP_CIPHER_CTX_iv_length(ctx))
crypto/libressl/include/openssl/evp.h
387
int EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
crypto/libressl/ssl/ssl_srvr.c
2388
if (!HMAC_Update(hctx, iv, EVP_CIPHER_CTX_iv_length(ctx)))
crypto/libressl/ssl/ssl_srvr.c
2410
if (!CBB_add_bytes(&ticket, iv, EVP_CIPHER_CTX_iv_length(ctx)))
crypto/libressl/ssl/t1_lib.c
1035
EVP_CIPHER_CTX_iv_length(cctx)))
crypto/libressl/ssl/tls12_record_layer.c
114
eiv_len = EVP_CIPHER_CTX_iv_length(rp->cipher_ctx);
crypto/openssh/cipher-chachapoly-libcrypto.c
57
if (EVP_CIPHER_CTX_iv_length(ctx->header_evp) != 16)
crypto/openssh/cipher.c
460
evplen = EVP_CIPHER_CTX_iv_length(cc->evp);
crypto/openssh/cipher.c
491
evplen = EVP_CIPHER_CTX_iv_length(cc->evp);