Symbol: EVP_CIPHER_get_iv_length
crypto/openssl/apps/enc.c
609
int ivlen = EVP_CIPHER_get_iv_length(cipher);
crypto/openssl/apps/enc.c
644
int siz = EVP_CIPHER_get_iv_length(cipher);
crypto/openssl/apps/enc.c
654
&& EVP_CIPHER_get_iv_length(cipher) != 0
crypto/openssl/apps/enc.c
729
EVP_CIPHER_get_iv_length(cipher), enc, NULL)) {
crypto/openssl/apps/enc.c
758
if (EVP_CIPHER_get_iv_length(cipher) > 0) {
crypto/openssl/apps/enc.c
760
for (i = 0; i < EVP_CIPHER_get_iv_length(cipher); i++)
crypto/openssl/crypto/asn1/p5_pbev2.c
82
ivlen = EVP_CIPHER_get_iv_length(cipher);
crypto/openssl/crypto/asn1/p5_scrypt.c
86
ivlen = EVP_CIPHER_get_iv_length(cipher);
crypto/openssl/crypto/crmf/crmf_lib.c
823
if ((iv = OPENSSL_malloc(EVP_CIPHER_get_iv_length(cipher))) == NULL)
crypto/openssl/crypto/crmf/crmf_lib.c
826
EVP_CIPHER_get_iv_length(cipher))
crypto/openssl/crypto/crmf/crmf_lib.c
827
!= EVP_CIPHER_get_iv_length(cipher)) {
crypto/openssl/crypto/evp/e_aes.c
1454
ivlen = EVP_CIPHER_get_iv_length(c->cipher);
crypto/openssl/crypto/evp/e_aes.c
2665
gctx->ivlen = EVP_CIPHER_get_iv_length(c->cipher);
crypto/openssl/crypto/evp/e_aes.c
3860
octx->ivlen = EVP_CIPHER_get_iv_length(c->cipher);
crypto/openssl/crypto/evp/e_aria.c
267
gctx->ivlen = EVP_CIPHER_get_iv_length(c->cipher);
crypto/openssl/crypto/evp/evp_key.c
91
niv = EVP_CIPHER_get_iv_length(type);
crypto/openssl/crypto/evp/evp_lib.c
496
int rv, len = EVP_CIPHER_get_iv_length(ctx->cipher);
crypto/openssl/crypto/evp/p5_crpt.c
56
ivl = EVP_CIPHER_get_iv_length(cipher);
crypto/openssl/crypto/pem/pem_info.c
241
|| strlen(objstr) + 23 + 2 * EVP_CIPHER_get_iv_length(enc) + 13
crypto/openssl/crypto/pem/pem_info.c
279
PEM_dek_info(buf, objstr, EVP_CIPHER_get_iv_length(enc),
crypto/openssl/crypto/pem/pem_lib.c
336
if (objstr == NULL || EVP_CIPHER_get_iv_length(enc) == 0
crypto/openssl/crypto/pem/pem_lib.c
337
|| EVP_CIPHER_get_iv_length(enc) > (int)sizeof(iv)
crypto/openssl/crypto/pem/pem_lib.c
342
|| strlen(objstr) + 23 + 2 * EVP_CIPHER_get_iv_length(enc) + 13
crypto/openssl/crypto/pem/pem_lib.c
384
if (RAND_bytes(iv, EVP_CIPHER_get_iv_length(enc)) <= 0)
crypto/openssl/crypto/pem/pem_lib.c
398
PEM_dek_info(buf, objstr, EVP_CIPHER_get_iv_length(enc), (char *)iv);
crypto/openssl/crypto/pem/pem_lib.c
577
ivlen = EVP_CIPHER_get_iv_length(enc);
crypto/openssl/crypto/pem/pem_lib.c
586
if (!load_iv(&header, cipher->iv, EVP_CIPHER_get_iv_length(enc)))
crypto/openssl/crypto/pkcs12/p12_crpt.c
59
if (EVP_CIPHER_get_iv_length(cipher) > 0) {
crypto/openssl/crypto/pkcs12/p12_crpt.c
61
iter, EVP_CIPHER_get_iv_length(cipher),
crypto/openssl/crypto/pkcs7/pk7_doit.c
329
ivlen = EVP_CIPHER_get_iv_length(evp_cipher);
crypto/openssl/include/openssl/evp.h
611
int EVP_CIPHER_get_iv_length(const EVP_CIPHER *cipher);
crypto/openssl/include/openssl/evp.h
612
#define EVP_CIPHER_iv_length EVP_CIPHER_get_iv_length
crypto/openssl/ssl/quic/quic_record_shared.c
169
if (!ossl_assert(iv_len == (size_t)EVP_CIPHER_get_iv_length(cipher))
crypto/openssl/ssl/record/methods/tls1_meth.c
213
ivlen = EVP_CIPHER_get_iv_length(enc);
crypto/openssl/ssl/s3_enc.c
123
iv_len = EVP_CIPHER_get_iv_length(ciph);
crypto/openssl/ssl/s3_enc.c
194
num = EVP_CIPHER_get_key_length(c) + num + EVP_CIPHER_get_iv_length(c);
crypto/openssl/ssl/ssl_ciph.c
2187
out = EVP_CIPHER_get_iv_length(e_ciph);
crypto/openssl/ssl/statem/statem_srvr.c
4107
iv_len = EVP_CIPHER_get_iv_length(cipher);
crypto/openssl/ssl/t1_enc.c
113
return EVP_CIPHER_get_iv_length(c);
crypto/openssl/ssl/tls13_enc.c
423
iivlen = EVP_CIPHER_get_iv_length(ciph);
crypto/openssl/test/evp_extra_test.c
4658
|| !TEST_int_eq(EVP_CIPHER_get_iv_length(cipher), ivlen[idx]))
crypto/openssl/test/evp_libctx_test.c
645
if (EVP_CIPHER_get_iv_length(cipher) != 0)
crypto/openssl/test/evp_libctx_test.c
654
if (EVP_CIPHER_get_iv_length(cipher) != 0)
crypto/openssl/test/evp_test.c
1487
if (!cdat->iv && EVP_CIPHER_get_iv_length(cdat->cipher) > 0) {
crypto/openssl/test/tls13encryptiontest.c
302
ivlen = EVP_CIPHER_get_iv_length(ciph);