SSL_get_psk_identity.pod 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. =pod
  2. =head1 NAME
  3. SSL_get_psk_identity, SSL_get_psk_identity_hint - get PSK client identity and hint
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. const char *SSL_get_psk_identity_hint(const SSL *ssl);
  7. const char *SSL_get_psk_identity(const SSL *ssl);
  8. =head1 DESCRIPTION
  9. SSL_get_psk_identity_hint() is used to retrieve the PSK identity hint
  10. used during the connection setup related to SSL object
  11. B<ssl>. Similarly, SSL_get_psk_identity() is used to retrieve the PSK
  12. identity used during the connection setup.
  13. =head1 RETURN VALUES
  14. If non-B<NULL>, SSL_get_psk_identity_hint() returns the PSK identity
  15. hint and SSL_get_psk_identity() returns the PSK identity. Both are
  16. B<NULL>-terminated. SSL_get_psk_identity_hint() may return B<NULL> if
  17. no PSK identity hint was used during the connection setup.
  18. Note that the return value is valid only during the lifetime of the
  19. SSL object B<ssl>.
  20. =head1 COPYRIGHT
  21. Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
  22. Licensed under the Apache License 2.0 (the "License"). You may not use
  23. this file except in compliance with the License. You can obtain a copy
  24. in the file LICENSE in the source distribution or at
  25. L<https://www.openssl.org/source/license.html>.
  26. =cut