Dr. Stephen Henson | 156a872 | 2015-01-24 17:09:55 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
| 5 | SSL_get_extms_support - extended master secret support |
| 6 | |
| 7 | =head1 SYNOPSIS |
| 8 | |
| 9 | #include <openssl/ssl.h> |
| 10 | |
| 11 | int SSL_get_extms_support(SSL *ssl); |
| 12 | |
| 13 | =head1 DESCRIPTION |
| 14 | |
| 15 | SSL_get_extms_support() indicates whether the current session used extended |
| 16 | master secret. |
| 17 | |
| 18 | This function is implemented as a macro. |
| 19 | |
| 20 | =head1 RETURN VALUES |
| 21 | |
| 22 | SSL_get_extms_support() returns 1 if the current session used extended |
| 23 | master secret, 0 if it did not and -1 if a handshake is currently in |
| 24 | progress i.e. it is not possible to determine if extended master secret |
| 25 | was used. |
| 26 | |
Dr. Stephen Henson | 156a872 | 2015-01-24 17:09:55 +0000 | [diff] [blame] | 27 | =head1 SEE ALSO |
| 28 | |
Richard Levitte | b97fdb5 | 2016-11-11 09:33:09 +0100 | [diff] [blame] | 29 | L<ssl(7)> |
Dr. Stephen Henson | 156a872 | 2015-01-24 17:09:55 +0000 | [diff] [blame] | 30 | |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 31 | =head1 COPYRIGHT |
| 32 | |
| 33 | Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. |
| 34 | |
Richard Levitte | 4746f25 | 2018-12-06 14:04:44 +0100 | [diff] [blame] | 35 | Licensed under the Apache License 2.0 (the "License"). You may not use |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 36 | this file except in compliance with the License. You can obtain a copy |
| 37 | in the file LICENSE in the source distribution or at |
| 38 | L<https://www.openssl.org/source/license.html>. |
| 39 | |
| 40 | =cut |