Lines Matching +full:protocol +full:- +full:id
20 - get SSL_CIPHER properties
60 SSL_CIPHER_get_version() returns string which indicates the SSL/TLS protocol
97 SSL_CIPHER_find() returns a B<SSL_CIPHER> structure which has the cipher ID stored
99 two-byte TLS cipher ID (as allocated by IANA) in network byte order. This parameter
104 SSL_CIPHER_get_id() returns the OpenSSL-specific ID of the given cipher B<c>. That ID is
105 not the same as the IANA-specific ID.
107 SSL_CIPHER_get_protocol_id() returns the two-byte ID used in the TLS protocol of the given
125 =item <protocol version>
127 The minimum protocol version that the ciphersuite supports, such as B<TLSv1.2>.
128 Note that this is not always the same as the protocol version in which the
130 with earlier protocol versions.
153 ECDHE-RSA-AES256-GCM-SHA256 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(256) Mac=AEAD
154 RSA-PSK-AES256-CBC-SHA384 TLSv1.0 Kx=RSAPSK Au=RSA Enc=AES(256) Mac=SHA384
160 value in a NUL-terminated string for a specific cipher or "(NONE)"
178 SSL_CIPHER_get_id() returns a 4-byte integer representing the OpenSSL-specific ID.
180 SSL_CIPHER_get_protocol_id() returns a 2-byte integer representing the TLS
181 protocol-specific ID.
186 L<SSL_get_ciphers(3)>, L<openssl-ciphers(1)>
191 correct protocol string in OpenSSL 1.1.0.
199 Before OpenSSL 1.1.1, tracing (B<enable-ssl-trace> argument to Configure) was
206 Copyright 2000-2024 The OpenSSL Project Authors. All Rights Reserved.