HomeSort by: relevance | last modified time | path
    Searched refs:e_ciph (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/
ssl_ciph.c 2179 const EVP_CIPHER *e_ciph = EVP_get_cipherbynid(cipher_nid); local
2183 if (e_ciph == NULL || EVP_CIPHER_get_mode(e_ciph) != EVP_CIPH_CBC_MODE)
2187 out = EVP_CIPHER_get_iv_length(e_ciph);
2190 blk = EVP_CIPHER_get_block_size(e_ciph);
  /src/crypto/external/bsd/openssl/dist/ssl/
ssl_ciph.c 2191 const EVP_CIPHER *e_ciph = EVP_get_cipherbynid(cipher_nid); local
2195 if (e_ciph == NULL ||
2196 EVP_CIPHER_get_mode(e_ciph) != EVP_CIPH_CBC_MODE)
2200 out = EVP_CIPHER_get_iv_length(e_ciph);
2201 blk = EVP_CIPHER_get_block_size(e_ciph);
  /src/crypto/external/bsd/openssl.old/dist/ssl/
ssl_ciph.c 2134 const EVP_CIPHER *e_ciph = EVP_get_cipherbynid(cipher_nid); local
2138 if (e_ciph == NULL ||
2139 EVP_CIPHER_mode(e_ciph) != EVP_CIPH_CBC_MODE)
2143 out = EVP_CIPHER_iv_length(e_ciph);
2144 blk = EVP_CIPHER_block_size(e_ciph);

Completed in 27 milliseconds