Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_ssl.c1839 const char *cipher_name, *cipher_protocol; in cipher_to_tuple() local
1855 cipher_protocol = SSL_CIPHER_get_version(cipher); in cipher_to_tuple()
1856 if (cipher_protocol == NULL) { in cipher_to_tuple()
1860 v = PyUnicode_FromString(cipher_protocol); in cipher_to_tuple()
1882 const char *cipher_name, *cipher_protocol; in cipher_to_dict() local
1894 cipher_protocol = SSL_CIPHER_get_version(cipher); in cipher_to_dict()
1923 "protocol", cipher_protocol, in cipher_to_dict()
/external/python/cpython2/Modules/
D_ssl.c1535 char *cipher_protocol; in PySSL_cipher() local
1557 cipher_protocol = (char *) SSL_CIPHER_get_version(current); in PySSL_cipher()
1558 if (cipher_protocol == NULL) { in PySSL_cipher()
1562 v = PyString_FromString(cipher_protocol); in PySSL_cipher()