Home
last modified time | relevance | path

Searched refs:e_ciph (Results 1 – 2 of 2) sorted by relevance

/third_party/openssl/ssl/
Dssl_ciph.c2190 const EVP_CIPHER *e_ciph = EVP_get_cipherbynid(cipher_nid); in ssl_cipher_get_overhead() local
2194 if (e_ciph == NULL || in ssl_cipher_get_overhead()
2195 EVP_CIPHER_get_mode(e_ciph) != EVP_CIPH_CBC_MODE) in ssl_cipher_get_overhead()
2199 out = EVP_CIPHER_get_iv_length(e_ciph); in ssl_cipher_get_overhead()
2200 blk = EVP_CIPHER_get_block_size(e_ciph); in ssl_cipher_get_overhead()
/third_party/libcoap/src/
Dcoap_openssl.c3119 const EVP_CIPHER *e_ciph; in coap_dtls_get_overhead() local
3123 e_ciph = EVP_get_cipherbynid(SSL_CIPHER_get_cipher_nid(s_ciph)); in coap_dtls_get_overhead()
3125 switch (EVP_CIPHER_mode(e_ciph)) { in coap_dtls_get_overhead()
3142 blocksize = EVP_CIPHER_block_size(e_ciph); in coap_dtls_get_overhead()
3143 ivlen = EVP_CIPHER_iv_length(e_ciph); in coap_dtls_get_overhead()