Modify providers that keep track of underlying algorithms
[openssl.git] / doc / man3 / SSL_CTX_set_ex_data.pod
index cb88ea0ca58eed4e19396fecd83a07a7300b96c9..51997c29b1b6a7a29deb1c99e2643b44aeffd1d5 100644 (file)
@@ -3,8 +3,7 @@
 =head1 NAME
 
 SSL_CTX_get_ex_data, SSL_CTX_set_ex_data,
-SSL_get_ex_data, SSL_set_ex_data,
-SSL_SESSION_get_ex_data, SSL_SESSION_set_ex_data
+SSL_get_ex_data, SSL_set_ex_data
 - Store and retrieve extra data from the SSL_CTX, SSL or SSL_SESSION
 
 =head1 SYNOPSIS
@@ -19,14 +18,10 @@ SSL_SESSION_get_ex_data, SSL_SESSION_set_ex_data
 
  int SSL_set_ex_data(SSL *s, int idx, void *arg);
 
- int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg);
-
- void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx);
-
 =head1 DESCRIPTION
 
 SSL*_set_ex_data() functions can be used to store arbitrary user data into the
-B<SSL_CTX>, B<SSL> or B<SSL_SESSION>. The user must supply a unique index
+B<SSL_CTX>, or B<SSL> object. The user must supply a unique index
 which they can subsequently use to retrieve the data using SSL*_get_ex_data().
 
 For more detailed information see L<CRYPTO_get_ex_data(3)> and
@@ -49,7 +44,7 @@ L<CRYPTO_get_ex_new_index(3)>
 
 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
 
-Licensed under the OpenSSL license (the "License").  You may not use
+Licensed under the Apache License 2.0 (the "License").  You may not use
 this file except in compliance with the License.  You can obtain a copy
 in the file LICENSE in the source distribution or at
 L<https://www.openssl.org/source/license.html>.