]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssl/doc/man3/SSL_CTX_use_psk_identity_hint.pod
MFS: r366176
[FreeBSD/FreeBSD.git] / crypto / openssl / doc / man3 / SSL_CTX_use_psk_identity_hint.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_psk_server_cb_func,
6 SSL_psk_find_session_cb_func,
7 SSL_CTX_use_psk_identity_hint,
8 SSL_use_psk_identity_hint,
9 SSL_CTX_set_psk_server_callback,
10 SSL_set_psk_server_callback,
11 SSL_CTX_set_psk_find_session_callback,
12 SSL_set_psk_find_session_callback
13 - set PSK identity hint to use
14
15 =head1 SYNOPSIS
16
17  #include <openssl/ssl.h>
18
19  typedef int (*SSL_psk_find_session_cb_func)(SSL *ssl,
20                                              const unsigned char *identity,
21                                              size_t identity_len,
22                                              SSL_SESSION **sess);
23
24
25  void SSL_CTX_set_psk_find_session_callback(SSL_CTX *ctx,
26                                             SSL_psk_find_session_cb_func cb);
27  void SSL_set_psk_find_session_callback(SSL *s, SSL_psk_find_session_cb_func cb);
28
29  typedef unsigned int (*SSL_psk_server_cb_func)(SSL *ssl,
30                                                 const char *identity,
31                                                 unsigned char *psk,
32                                                 unsigned int max_psk_len);
33
34  int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *hint);
35  int SSL_use_psk_identity_hint(SSL *ssl, const char *hint);
36
37  void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, SSL_psk_server_cb_func cb);
38  void SSL_set_psk_server_callback(SSL *ssl, SSL_psk_server_cb_func cb);
39
40 =head1 DESCRIPTION
41
42 A server application wishing to use TLSv1.3 PSKs should set a callback
43 using either SSL_CTX_set_psk_find_session_callback() or
44 SSL_set_psk_find_session_callback() as appropriate.
45
46 The callback function is given a pointer to the SSL connection in B<ssl> and
47 an identity in B<identity> of length B<identity_len>. The callback function
48 should identify an SSL_SESSION object that provides the PSK details and store it
49 in B<*sess>. The SSL_SESSION object should, as a minimum, set the master key,
50 the ciphersuite and the protocol version. See
51 L<SSL_CTX_set_psk_use_session_callback(3)> for details.
52
53 It is also possible for the callback to succeed but not supply a PSK. In this
54 case no PSK will be used but the handshake will continue. To do this the
55 callback should return successfully and ensure that B<*sess> is
56 NULL.
57
58 Identity hints are not relevant for TLSv1.3. A server application wishing to use
59 PSK ciphersuites for TLSv1.2 and below may call SSL_CTX_use_psk_identity_hint()
60 to set the given B<NUL>-terminated PSK identity hint B<hint> for SSL context
61 object B<ctx>. SSL_use_psk_identity_hint() sets the given B<NUL>-terminated PSK
62 identity hint B<hint> for the SSL connection object B<ssl>. If B<hint> is
63 B<NULL> the current hint from B<ctx> or B<ssl> is deleted.
64
65 In the case where PSK identity hint is B<NULL>, the server does not send the
66 ServerKeyExchange message to the client.
67
68 A server application wishing to use PSKs for TLSv1.2 and below must provide a
69 callback function which is called when the server receives the
70 ClientKeyExchange message from the client. The purpose of the callback function
71 is to validate the received PSK identity and to fetch the pre-shared key used
72 during the connection setup phase. The callback is set using the functions
73 SSL_CTX_set_psk_server_callback() or SSL_set_psk_server_callback(). The callback
74 function is given the connection in parameter B<ssl>, B<NUL>-terminated PSK
75 identity sent by the client in parameter B<identity>, and a buffer B<psk> of
76 length B<max_psk_len> bytes where the pre-shared key is to be stored.
77
78 The callback for use in TLSv1.2 will also work in TLSv1.3 although it is
79 recommended to use SSL_CTX_set_psk_find_session_callback()
80 or SSL_set_psk_find_session_callback() for this purpose instead. If TLSv1.3 has
81 been negotiated then OpenSSL will first check to see if a callback has been set
82 via SSL_CTX_set_psk_find_session_callback() or SSL_set_psk_find_session_callback()
83 and it will use that in preference. If no such callback is present then it will
84 check to see if a callback has been set via SSL_CTX_set_psk_server_callback() or
85 SSL_set_psk_server_callback() and use that. In this case the handshake digest
86 will default to SHA-256 for any returned PSK. TLSv1.3 early data exchanges are
87 possible in PSK connections only with the B<SSL_psk_find_session_cb_func>
88 callback, and are not possible with the B<SSL_psk_server_cb_func> callback.
89
90 =head1 NOTES
91
92 A connection established via a TLSv1.3 PSK will appear as if session resumption
93 has occurred so that L<SSL_session_reused(3)> will return true.
94
95 =head1 RETURN VALUES
96
97 B<SSL_CTX_use_psk_identity_hint()> and B<SSL_use_psk_identity_hint()> return
98 1 on success, 0 otherwise.
99
100 Return values from the TLSv1.2 and below server callback are interpreted as
101 follows:
102
103 =over 4
104
105 =item Z<>0
106
107 PSK identity was not found. An "unknown_psk_identity" alert message
108 will be sent and the connection setup fails.
109
110 =item E<gt>0
111
112 PSK identity was found and the server callback has provided the PSK
113 successfully in parameter B<psk>. Return value is the length of
114 B<psk> in bytes. It is an error to return a value greater than
115 B<max_psk_len>.
116
117 If the PSK identity was not found but the callback instructs the
118 protocol to continue anyway, the callback must provide some random
119 data to B<psk> and return the length of the random data, so the
120 connection will fail with decryption_error before it will be finished
121 completely.
122
123 =back
124
125 The B<SSL_psk_find_session_cb_func> callback should return 1 on success or 0 on
126 failure. In the event of failure the connection setup fails.
127
128 =head1 NOTES
129
130 There are no known security issues with sharing the same PSK between TLSv1.2 (or
131 below) and TLSv1.3. However, the RFC has this note of caution:
132
133 "While there is no known way in which the same PSK might produce related output
134 in both versions, only limited analysis has been done.  Implementations can
135 ensure safety from cross-protocol related output by not reusing PSKs between
136 TLS 1.3 and TLS 1.2."
137
138 =head1 SEE ALSO
139
140 L<SSL_CTX_set_psk_use_session_callback(3)>,
141 L<SSL_set_psk_use_session_callback(3)>
142
143 =head1 HISTORY
144
145 SSL_CTX_set_psk_find_session_callback() and SSL_set_psk_find_session_callback()
146 were added in OpenSSL 1.1.1.
147
148 =head1 COPYRIGHT
149
150 Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.
151
152 Licensed under the OpenSSL license (the "License").  You may not use
153 this file except in compliance with the License.  You can obtain a copy
154 in the file LICENSE in the source distribution or at
155 L<https://www.openssl.org/source/license.html>.
156
157 =cut