threads_pthread.c: change inline to ossl_inline
[openssl.git] / doc / man3 / SSL_key_update.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_key_update,
6 SSL_get_key_update_type,
7 SSL_renegotiate,
8 SSL_renegotiate_abbreviated,
9 SSL_renegotiate_pending
10 - initiate and obtain information about updating connection keys
11
12 =head1 SYNOPSIS
13
14  #include <openssl/ssl.h>
15
16  int SSL_key_update(SSL *s, int updatetype);
17  int SSL_get_key_update_type(const SSL *s);
18
19  int SSL_renegotiate(SSL *s);
20  int SSL_renegotiate_abbreviated(SSL *s);
21  int SSL_renegotiate_pending(const SSL *s);
22
23 =head1 DESCRIPTION
24
25 SSL_key_update() schedules an update of the keys for the current TLS connection.
26 If the B<updatetype> parameter is set to B<SSL_KEY_UPDATE_NOT_REQUESTED> then
27 the sending keys for this connection will be updated and the peer will be
28 informed of the change. If the B<updatetype> parameter is set to
29 B<SSL_KEY_UPDATE_REQUESTED> then the sending keys for this connection will be
30 updated and the peer will be informed of the change along with a request for the
31 peer to additionally update its sending keys. It is an error if B<updatetype> is
32 set to B<SSL_KEY_UPDATE_NONE>.
33
34 SSL_key_update() must only be called after the initial handshake has been
35 completed and TLSv1.3 has been negotiated, at the same time, the application
36 needs to ensure that the writing of data has been completed. The key update
37 will not take place until the next time an IO operation such as SSL_read_ex()
38 or SSL_write_ex() takes place on the connection. Alternatively SSL_do_handshake()
39 can be called to force the update to take place immediately.
40
41 SSL_get_key_update_type() can be used to determine whether a key update
42 operation has been scheduled but not yet performed. The type of the pending key
43 update operation will be returned if there is one, or SSL_KEY_UPDATE_NONE
44 otherwise.
45
46 SSL_renegotiate() and SSL_renegotiate_abbreviated() should only be called for
47 connections that have negotiated TLSv1.2 or less. Calling them on any other
48 connection will result in an error.
49
50 When called from the client side, SSL_renegotiate() schedules a completely new
51 handshake over an existing SSL/TLS connection. The next time an IO operation
52 such as SSL_read_ex() or SSL_write_ex() takes place on the connection a check
53 will be performed to confirm that it is a suitable time to start a
54 renegotiation. If so, then it will be initiated immediately. OpenSSL will not
55 attempt to resume any session associated with the connection in the new
56 handshake.
57
58 When called from the client side, SSL_renegotiate_abbreviated() works in the
59 same was as SSL_renegotiate() except that OpenSSL will attempt to resume the
60 session associated with the current connection in the new handshake.
61
62 When called from the server side, SSL_renegotiate() and
63 SSL_renegotiate_abbreviated() behave identically. They both schedule a request
64 for a new handshake to be sent to the client. The next time an IO operation is
65 performed then the same checks as on the client side are performed and then, if
66 appropriate, the request is sent. The client may or may not respond with a new
67 handshake and it may or may not attempt to resume an existing session. If
68 a new handshake is started then this will be handled transparently by calling
69 any OpenSSL IO function.
70
71 If an OpenSSL client receives a renegotiation request from a server then again
72 this will be handled transparently through calling any OpenSSL IO function. For
73 a TLS connection the client will attempt to resume the current session in the
74 new handshake. For historical reasons, DTLS clients will not attempt to resume
75 the session in the new handshake.
76
77 The SSL_renegotiate_pending() function returns 1 if a renegotiation or
78 renegotiation request has been scheduled but not yet acted on, or 0 otherwise.
79
80 =head1 RETURN VALUES
81
82 SSL_key_update(), SSL_renegotiate() and SSL_renegotiate_abbreviated() return 1
83 on success or 0 on error.
84
85 SSL_get_key_update_type() returns the update type of the pending key update
86 operation or SSL_KEY_UPDATE_NONE if there is none.
87
88 SSL_renegotiate_pending() returns 1 if a renegotiation or renegotiation request
89 has been scheduled but not yet acted on, or 0 otherwise.
90
91 =head1 SEE ALSO
92
93 L<ssl(7)>, L<SSL_read_ex(3)>,
94 L<SSL_write_ex(3)>,
95 L<SSL_do_handshake(3)>
96
97 =head1 HISTORY
98
99 The SSL_key_update() and SSL_get_key_update_type() functions were added in
100 OpenSSL 1.1.1.
101
102 =head1 COPYRIGHT
103
104 Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
105
106 Licensed under the Apache License 2.0 (the "License").  You may not use
107 this file except in compliance with the License.  You can obtain a copy
108 in the file LICENSE in the source distribution or at
109 L<https://www.openssl.org/source/license.html>.
110
111 =cut