SSL_get_extms_support.pod 925 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. =pod
  2. =head1 NAME
  3. SSL_get_extms_support - extended master secret support
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. int SSL_get_extms_support(SSL *ssl);
  7. =head1 DESCRIPTION
  8. SSL_get_extms_support() indicates whether the current session used extended
  9. master secret.
  10. This function is implemented as a macro.
  11. =head1 RETURN VALUES
  12. SSL_get_extms_support() returns 1 if the current session used extended
  13. master secret, 0 if it did not and -1 if a handshake is currently in
  14. progress i.e. it is not possible to determine if extended master secret
  15. was used.
  16. =head1 SEE ALSO
  17. L<ssl(7)>
  18. =head1 COPYRIGHT
  19. Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
  20. Licensed under the Apache License 2.0 (the "License"). You may not use
  21. this file except in compliance with the License. You can obtain a copy
  22. in the file LICENSE in the source distribution or at
  23. L<https://www.openssl.org/source/license.html>.
  24. =cut