Home
last modified time | relevance | path

Searched refs:EVP_CIPHER_iv_length (Results 1 – 10 of 10) sorted by relevance

/onnv-gate/usr/src/common/openssl/crypto/evp/
H A Dp5_crpt.c151 OPENSSL_assert(EVP_CIPHER_iv_length(cipher) <= 16); in PKCS5_PBE_keyivgen()
152 memcpy(iv, md_tmp + (16 - EVP_CIPHER_iv_length(cipher)), in PKCS5_PBE_keyivgen()
153 EVP_CIPHER_iv_length(cipher)); in PKCS5_PBE_keyivgen()
H A Devp.h448 #define EVP_CIPHER_iv_length(e) ((e)->iv_len) macro
/onnv-gate/usr/src/common/openssl/crypto/asn1/
H A Dp5_pbev2.c116 if (EVP_CIPHER_iv_length(cipher) &&
117 RAND_pseudo_bytes(iv, EVP_CIPHER_iv_length(cipher)) < 0)
/onnv-gate/usr/src/common/openssl/crypto/pkcs12/
H A Dp12_crpt.c120 iter, EVP_CIPHER_iv_length(cipher), iv, md)) { in PKCS12_PBE_keyivgen()
/onnv-gate/usr/src/common/openssl/ssl/
H A Ds3_enc.c290 k=EVP_CIPHER_iv_length(c); in ssl3_change_cipher_state()
380 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c); in ssl3_setup_key_block()
H A Dt1_enc.c342 k=EVP_CIPHER_iv_length(c); in tls1_change_cipher_state()
468 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c); in tls1_setup_key_block()
H A Ds2_clnt.c639 i=EVP_CIPHER_iv_length(c); in client_master_key()
/onnv-gate/usr/src/common/openssl/doc/crypto/
H A DEVP_SealInit.pod39 example) EVP_CIPHER_iv_length(type).
H A DEVP_EncryptInit.pod13 EVP_CIPHER_block_size, EVP_CIPHER_key_length, EVP_CIPHER_iv_length,
75 #define EVP_CIPHER_iv_length(e) ((e)->iv_len)
190 EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV
263 EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV
/onnv-gate/usr/src/common/openssl/crypto/pkcs7/
H A Dpk7_doit.c218 ivlen=EVP_CIPHER_iv_length(evp_cipher); in PKCS7_dataInit()