Home
last modified time | relevance | path

Searched defs:ssl_cipher_st (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/openssl/openssl/ssl/
Dssl_local.h469 struct ssl_cipher_st { struct
470 uint32_t valid;
471 const char *name; /* text name */
472 const char *stdname; /* RFC name */
473 uint32_t id; /* id, 4 bytes, first is version */
478 uint32_t algorithm_mkey; /* key exchange algorithm */
479 uint32_t algorithm_auth; /* server authentication */
480 uint32_t algorithm_enc; /* symmetric encryption */
481 uint32_t algorithm_mac; /* symmetric authentication */
482 int min_tls; /* minimum SSL/TLS protocol version */
[all …]
/third_party/openssl/ssl/
Dssl_local.h462 struct ssl_cipher_st { struct
463 uint32_t valid;
464 const char *name; /* text name */
465 const char *stdname; /* RFC name */
466 uint32_t id; /* id, 4 bytes, first is version */
471 uint32_t algorithm_mkey; /* key exchange algorithm */
472 uint32_t algorithm_auth; /* server authentication */
473 uint32_t algorithm_enc; /* symmetric encryption */
474 uint32_t algorithm_mac; /* symmetric authentication */
475 int min_tls; /* minimum SSL/TLS protocol version */
[all …]
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py1164 class ssl_cipher_st(Structure): class