Lines Matching refs:cipher
47 unsigned long SSL_CIPHER_get_id(const SSL_CIPHER* cipher) { return cipher->id; }
155 // server after receiving ClientHello if there's no common supported cipher.
496 // directly remove a cipher by ID.
503 // appended to the cipher removal |command|.
505 const SSL_CIPHER* cipher = sk_SSL_CIPHER_value(ciphers, i);
506 const uint16 id = SSL_CIPHER_get_id(cipher);
511 bool disable = SSL_CIPHER_get_bits(cipher, NULL) < 80;
518 const char* name = SSL_CIPHER_get_name(cipher);
519 DVLOG(3) << "Found cipher to remove: '" << name << "', ID: " << id
520 << " strength: " << SSL_CIPHER_get_bits(cipher, NULL);
582 const SSL_CIPHER* cipher = SSL_get_current_cipher(ssl_);
583 CHECK(cipher);
584 ssl_info->security_bits = SSL_CIPHER_get_bits(cipher, NULL);
588 SSL_CIPHER_get_id(cipher),
601 DVLOG(3) << "Encoded connection status: cipher suite = "